Schema
Owner
postgres
Descriptions
args: g, npoints - Converts a polygon or multi-polygon into a multi-point composed of randomly location points within the original areas.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
area public.geometry npoints numeric |
Definition
CREATE OR REPLACE FUNCTION public.st_generatepoints (
area public.geometry,
npoints numeric
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'ST_GeneratePoints'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_generatepoints(area public.geometry, npoints numeric)
IS 'args: g, npoints - Converts a polygon or multi-polygon into a multi-point composed of randomly location points within the original areas.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |