Schema
Owner
postgres
Descriptions
args: toponame, apoint, tolerance - Adds a point to an existing topology using a tolerance and possibly splitting an existing edge.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
c |
Parameters |
atopology varchar apoint public.geometry tolerance double precision = 0 |
Definition
CREATE OR REPLACE FUNCTION topology.topogeo_addpoint (
atopology varchar,
apoint public.geometry,
tolerance double precision = 0
)
RETURNS integer AS
'$libdir/postgis_topology-2.2', 'TopoGeo_AddPoint'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.topogeo_addpoint(atopology varchar, apoint public.geometry, tolerance double precision)
IS 'args: toponame, apoint, tolerance - Adds a point to an existing topology using a tolerance and possibly splitting an existing edge.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |