Schema
Owner
postgres
Descriptions
args: geom, box - Returns the portion of a geometry falling within a rectangle.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
geom public.geometry box public.box2d |
Definition
CREATE OR REPLACE FUNCTION public.st_clipbybox2d (
geom public.geometry,
box public.box2d
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'ST_ClipByBox2d'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 50;
COMMENT ON FUNCTION public.st_clipbybox2d(geom public.geometry, box public.box2d)
IS 'args: geom, box - Returns the portion of a geometry falling within a rectangle.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |