Schema
public
Owner
albenard
Descriptions
args: geom, max_vertices=256 - Returns a set of geometry where no geometry in the set has more than the specified number of vertices.
Options
Option | Value |
---|---|
Returns |
Set of public.geometry |
Language |
c |
Parameters |
geom public.geometry maxvertices integer = 256 |
Definition
CREATE OR REPLACE FUNCTION public.st_subdivide (
geom public.geometry,
maxvertices integer = 256
)
RETURNS SETOF public.geometry AS
'$libdir/postgis-2.3', 'ST_Subdivide'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100 ROWS 1000;
COMMENT ON FUNCTION public.st_subdivide(geom public.geometry, maxvertices integer)
IS 'args: geom, max_vertices=256 - Returns a set of geometry where no geometry in the set has more than the specified number of vertices.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |