Schema
public
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 geomin public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_intersection (
rast public.raster,
geomin public.geometry
)
RETURNS SETOF public.geomval AS
$span$
SELECT st_intersection($2, $1, 1)
$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 26/02/2014 11:51 |