From: Regina Obe Date: Mon, 22 Dec 2008 17:48:45 +0000 (+0000) Subject: More typos X-Git-Tag: 1.4.0b1~364 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a51d9938ab1e50045a89239dc5f2054742c3ab09;p=postgis More typos git-svn-id: http://svn.osgeo.org/postgis/trunk@3469 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_new.xml b/doc/reference_new.xml index 61674dec9..a807309c3 100644 --- a/doc/reference_new.xml +++ b/doc/reference_new.xml @@ -7626,7 +7626,7 @@ WHERE ST_Crosses(roads.the_geom, highways.the_geom); Availability: 1.4 - This function does not use indexes. Include && And ST_CrossingDirection >< 0 or ST_Crosses + This function does not use indexes. Include && And ST_CrossingDirection != 0 or ST_Crosses if you want to throw out linestrings that do not cross. This function is under development and the name and constants may change. @@ -7646,7 +7646,7 @@ ST_GeomFromText('LINESTRING(744753 2924117,744563 2923902)') As line2) As foo; -1 | 1 SELECT s1.gid, s2.gid, ST_CrossingDirection(s1.the_geom, s2.the_geom) - FROM streets s1 CROSS JOIN streets s2 ON (s1 >< s2 AND s1 && s2 ) + FROM streets s1 CROSS JOIN streets s2 ON (s1 != s2 AND s1 && s2 ) WHERE ST_CrossingDirection(s1.the_geom, s2.the_geom) > 0;