pggeodb.nancy.inra.fr/db_robot - db_robot on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Function: st_modedgesplit

 

 

Schema

topology

 

Owner

albenard

 

Descriptions

args: atopology, anedge, apoint - Split an edge by creating a new node along an existing edge, modifying the original edge and adding a new edge.

 

Options

Option

Value

Returns

integer

Language

c

Parameters

atopology varchar

anedge integer

apoint public.geometry

 

Definition

CREATE OR REPLACE FUNCTION topology.st_modedgesplit (
 atopology varchar,
 anedge integer,
 apoint public.geometry
)
RETURNS integer AS
'$libdir/postgis_topology-2.3', 'ST_ModEdgeSplit'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
1;

COMMENT ON FUNCTION topology.st_modedgesplit(atopology varchar, anedge integer, apoint public.geometry)
IS 'args: atopology, anedge, apoint - Split an edge by creating a new node along an existing edge, modifying the original edge and adding a new edge.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic