Schema
Owner
postgres
Descriptions
args: atopology, anode, anothernode, alinestring - Adds an isolated edge defined by geometry alinestring to a topology connecting two existing isolated nodes anode and anothernode and returns the edge id of the new edge.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
c |
Parameters |
atopology varchar anode integer anothernode integer acurve public.geometry |
Definition
CREATE OR REPLACE FUNCTION topology.st_addisoedge (
atopology varchar,
anode integer,
anothernode integer,
acurve public.geometry
)
RETURNS integer AS
'$libdir/postgis_topology-2.3', 'ST_AddIsoEdge'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.st_addisoedge(atopology varchar, anode integer, anothernode integer, acurve public.geometry)
IS 'args: atopology, anode, anothernode, alinestring - Adds an isolated edge defined by geometry alinestring to a topology connecting two existing isolated nodes anode and anothernode and returns the edge id of the new edge.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |