Schema
Owner
postgres
Descriptions
args: atopology, aface, apoint - Adds an isolated node to a face in a topology and returns the nodeid of the new node. If face is null, the node is still created.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
c |
Parameters |
atopology varchar aface integer apoint public.geometry |
Definition
CREATE OR REPLACE FUNCTION topology.st_addisonode (
atopology varchar,
aface integer,
apoint public.geometry
)
RETURNS integer AS
'$libdir/postgis_topology-2.2', 'ST_AddIsoNode'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.st_addisonode(atopology varchar, aface integer, apoint public.geometry)
IS 'args: atopology, aface, apoint - Adds an isolated node to a face in a topology and returns the nodeid of the new node. If face is null, the node is still created.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |