Schema
Owner
postgres
Descriptions
args: atopology, anedge, apoint - Moves an isolated node in a topology from one point to another. If new apoint geometry exists as a node an error is thrown. REturns description of move.
Options
Option | Value |
---|---|
Returns |
text |
Language |
c |
Parameters |
atopology varchar anode integer apoint public.geometry |
Definition
CREATE OR REPLACE FUNCTION topology.st_moveisonode (
atopology varchar,
anode integer,
apoint public.geometry
)
RETURNS text AS
'$libdir/postgis_topology-2.3', 'ST_MoveIsoNode'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.st_moveisonode(atopology varchar, anode integer, apoint public.geometry)
IS 'args: atopology, anedge, apoint - Moves an isolated node in a topology from one point to another. If new apoint geometry exists as a node an error is thrown. REturns description of move.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |