Schema
topology
Owner
albenard
Descriptions
args: atopology, point, tol - Find the id of a node at a point location
Options
Option | Value |
---|---|
Returns |
integer |
Language |
c |
Parameters |
atopology varchar apoint public.geometry tol1 double precision |
Definition
CREATE OR REPLACE FUNCTION topology.getnodebypoint (
atopology varchar,
apoint public.geometry,
tol1 double precision
)
RETURNS integer AS
'$libdir/postgis_topology-2.3', 'GetNodeByPoint'
LANGUAGE 'c'
STABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.getnodebypoint(atopology varchar, apoint public.geometry, tol1 double precision)
IS 'args: atopology, point, tol - Find the id of a node at a point location';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |