Schema
topology
Owner
albenard
Descriptions
args: atopology, anode, anothernode, acurve - Add a new edge and, if in doing so it splits a face, delete the original face and replace it with two new faces.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
c |
Parameters |
atopology varchar anode integer anothernode integer acurve public.geometry |
Definition
CREATE OR REPLACE FUNCTION topology.st_addedgenewfaces (
atopology varchar,
anode integer,
anothernode integer,
acurve public.geometry
)
RETURNS integer AS
'$libdir/postgis_topology-2.3', 'ST_AddEdgeNewFaces'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.st_addedgenewfaces(atopology varchar, anode integer, anothernode integer, acurve public.geometry)
IS 'args: atopology, anode, anothernode, acurve - Add a new edge and, if in doing so it splits a face, delete the original face and replace it with two new faces.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |