Schema
Owner
postgres
Descriptions
There is no description for function st_intersection
Options
Option | Value |
---|---|
Returns |
Set of public.geomval |
Language |
sql |
Parameters |
rast public.raster band integer geomin public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_intersection (
rast public.raster,
band integer,
geomin public.geometry
)
RETURNS SETOF public.geomval AS
$span$
SELECT st_intersection($3, $1, $2)
$span$
LANGUAGE 'sql'
STABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100 ROWS 1000;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |