Schema
Owner
postgres
Descriptions
args: atopology, anedge, apoint - Split an edge by creating a new node along an existing edge, deleting the original edge and replacing it with two new edges. Returns the id of the new node created that joins the new edges.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
c |
Parameters |
atopology varchar anedge integer apoint public.geometry |
Definition
CREATE OR REPLACE FUNCTION topology.st_newedgessplit (
atopology varchar,
anedge integer,
apoint public.geometry
)
RETURNS integer AS
'$libdir/postgis_topology-2.3', 'ST_NewEdgesSplit'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.st_newedgessplit(atopology varchar, anedge integer, apoint public.geometry)
IS 'args: atopology, anedge, apoint - Split an edge by creating a new node along an existing edge, deleting the original edge and replacing it with two new edges. Returns the id of the new node created that joins the new edges.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |