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