Schema
Owner
postgres
Descriptions
args: atopology, anedge, anotheredge - Heal two edges by deleting the node connecting them, deleting both edges,and replacing them with an edge whose direction is the same as the firstedge provided.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
c |
Parameters |
toponame varchar e1id integer e2id integer |
Definition
CREATE OR REPLACE FUNCTION topology.st_newedgeheal (
toponame varchar,
e1id integer,
e2id integer
)
RETURNS integer AS
'$libdir/postgis_topology-2.3', 'ST_NewEdgeHeal'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.st_newedgeheal(toponame varchar, e1id integer, e2id integer)
IS 'args: atopology, anedge, anotheredge - Heal two edges by deleting the node connecting them, deleting both edges,and replacing them with an edge whose direction is the same as the firstedge provided.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |