From: Sandro Santilli Date: Tue, 18 Aug 2015 12:58:32 +0000 (+0000) Subject: Correct exception info about GetFaceByPoint and GetEdgeByPoint (#3241) X-Git-Tag: 2.2.0rc1~153 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=48c035b7a8236ca428bf47a5afb623b459370e45;p=postgis Correct exception info about GetFaceByPoint and GetEdgeByPoint (#3241) git-svn-id: http://svn.osgeo.org/postgis/trunk@13929 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/extras_topology.xml b/doc/extras_topology.xml index f6170c401..178ba1fa8 100644 --- a/doc/extras_topology.xml +++ b/doc/extras_topology.xml @@ -1740,7 +1740,6 @@ SELECT topology.ST_RemoveIsoNode('ma_topo', 7 ) As result; Retrieve the id of an edge that intersects a Point The function returns an integer (id-edge) given a topology, a POINT and a tolerance. If tolerance = 0 then the point has to intersect the edge. - If the point is the location of a node, then an exception is thrown. To avoid this run the GetNodeByPoint function. If the point doesn't intersect an edge, returns 0 (zero). If use tolerance > 0 and there is more than one edge near the point then an exception is thrown. @@ -1801,7 +1800,6 @@ ERROR: Two or more edges found Description Retrieve the id of a face that intersects a Point. The function returns an integer (id-face) given a topology, a POINT and a tolerance. If tolerance = 0 then the point has to intersect the face. - If the point is the location of a node, then an exception is thrown. To avoid this run the GetNodeByPoint function. If the point doesn't intersect a face, returns 0 (zero). If use tolerance > 0 and there is more than one face near the point then an exception is thrown.