From: Regina Obe Date: Wed, 30 Dec 2009 12:53:55 +0000 (+0000) Subject: oops revert change I guess ST_Box .. is the one that's deprecated. How confusing... X-Git-Tag: 1.5.0b1~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=653fdff601e6888575ed983ed598d7288d72b2f4;p=postgis oops revert change I guess ST_Box .. is the one that's deprecated. How confusing :) PRobably should remove from docs at some point. git-svn-id: http://svn.osgeo.org/postgis/trunk@5077 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/faq.xml b/doc/faq.xml index 60a527a24..1a92394f4 100644 --- a/doc/faq.xml +++ b/doc/faq.xml @@ -289,7 +289,7 @@ WHERE ST_DWithin(geocolumn, 'POINT(1000 1000)', 100.0); - When I do an ST_Intersects, it says my two geometries don't intersect when I KNOW THEY DO + When I do an ST_Intersects, it says my two geometries don't intersect when I KNOW THEY DO. What gives? diff --git a/doc/reference_misc.xml b/doc/reference_misc.xml index 00fceedcd..1d8b063de 100644 --- a/doc/reference_misc.xml +++ b/doc/reference_misc.xml @@ -59,9 +59,9 @@ all_em|grabone | grab_rest - + - ST_Box2D + Box2D Returns a BOX2D representing the maximum extents of the geometry. @@ -86,12 +86,12 @@ all_em|grabone | grab_rest Examples - SELECT ST_Box2D(ST_GeomFromText('LINESTRING(1 2, 3 4, 5 6)')); + SELECT Box2D(ST_GeomFromText('LINESTRING(1 2, 3 4, 5 6)')); box2d --------- BOX(1 2,5 6) - SELECT ST_Box2D(ST_GeomFromText('CIRCULARSTRING(220268 150415,220227 150505,220227 150406)')); + SELECT Box2D(ST_GeomFromText('CIRCULARSTRING(220268 150415,220227 150505,220227 150406)')); box2d -------- BOX(220186.984375 150406,220288.25 150506.140625) @@ -102,13 +102,13 @@ all_em|grabone | grab_rest See Also - , + , - + - ST_Box3D + Box3D Returns a BOX3D representing the maximum extents of the geometry. @@ -116,7 +116,7 @@ all_em|grabone | grab_rest - box3d ST_Box3D + box3d Box3D geometry geomA @@ -134,13 +134,13 @@ all_em|grabone | grab_rest Examples - SELECT ST_Box3D(ST_GeomFromEWKT('LINESTRING(1 2 3, 3 4 5, 5 6 5)')); - st_box3d + SELECT Box3D(ST_GeomFromEWKT('LINESTRING(1 2 3, 3 4 5, 5 6 5)')); + Box3d --------- BOX3D(1 2 3,5 6 5) - SELECT ST_Box3D(ST_GeomFromEWKT('CIRCULARSTRING(220268 150415 1,220227 150505 1,220227 150406 1)')); - st_box3d + SELECT Box3D(ST_GeomFromEWKT('CIRCULARSTRING(220268 150415 1,220227 150505 1,220227 150406 1)')); + Box3d -------- BOX3D(220227 150406 1,220268 150415 1) @@ -150,7 +150,7 @@ all_em|grabone | grab_rest See Also - , + ,