Schema
Owner
postgres
Descriptions
args: atopology, apoint, tol - Find the face-id of a face that intersects a given point
Options
Option | Value |
---|---|
Returns |
integer |
Language |
c |
Parameters |
atopology varchar apoint public.geometry tol1 double precision |
Definition
CREATE OR REPLACE FUNCTION topology.getfacebypoint (
atopology varchar,
apoint public.geometry,
tol1 double precision
)
RETURNS integer AS
'$libdir/postgis_topology-2.3', 'GetFaceByPoint'
LANGUAGE 'c'
STABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.getfacebypoint(atopology varchar, apoint public.geometry, tol1 double precision)
IS 'args: atopology, apoint, tol - Find the face-id of a face that intersects a given point';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |