Schema
Owner
postgres
Descriptions
args: geom, tolerance - Returns a version of the given geometry with duplicated points removed.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
geom public.geometry tolerance double precision = 0.0 |
Definition
CREATE OR REPLACE FUNCTION public.st_removerepeatedpoints (
geom public.geometry,
tolerance double precision = 0.0
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'ST_RemoveRepeatedPoints'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_removerepeatedpoints(geom public.geometry, tolerance double precision)
IS 'args: geom, tolerance - Returns a version of the given geometry with duplicated points removed.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |