From: Paul Ramsey Date: Fri, 6 Nov 2009 17:30:20 +0000 (+0000) Subject: Update documentation for those functions affected by RFC3. They are all internal... X-Git-Tag: 1.5.0b1~283 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=896abf5650825302771788c6c0fdb4a3b2bac1b3;p=postgis Update documentation for those functions affected by RFC3. They are all internal functions that are going to disappear in 2.0, might be better to simply remove them, but for now... git-svn-id: http://svn.osgeo.org/postgis/trunk@4755 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference.xml b/doc/reference.xml index 9b9d75400..d1c73943b 100644 --- a/doc/reference.xml +++ b/doc/reference.xml @@ -14817,9 +14817,9 @@ all_em|grabone | grab_rest - + - ST_Box2D + Box2D Returns a BOX2D representing the maximum extents of the geometry. @@ -14827,7 +14827,7 @@ all_em|grabone | grab_rest - box2d ST_Box2D + box2d Box2D geometry geomA @@ -14850,13 +14850,13 @@ all_em|grabone | grab_rest Examples - SELECT ST_Box2D(ST_GeomFromText('LINESTRING(1 2, 3 4, 5 6)')); - st_box2d + 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)')); - st_box2d + SELECT Box2D(ST_GeomFromText('CIRCULARSTRING(220268 150415,220227 150505,220227 150406)')); + box2d -------- BOX(220186.984375 150406,220288.25 150506.140625) @@ -14866,13 +14866,13 @@ all_em|grabone | grab_rest See Also - , + , - + - ST_Box3D + Box3D Returns a BOX3D representing the maximum extents of the geometry. @@ -14880,7 +14880,7 @@ all_em|grabone | grab_rest - box3d ST_Box3D + box3d Box3D geometry geomA @@ -14910,13 +14910,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) @@ -14926,7 +14926,7 @@ all_em|grabone | grab_rest See Also - , + , @@ -15885,9 +15885,9 @@ st_zmin These functions are rarely used functions that should only be used if your data is corrupted in someway. They are used for troubleshooting corruption and also fixing things that should under normal circumstances, never happen. - + - ST_AddBBox + PostGIS_AddBBox Add bounding box to the geometry. @@ -15895,7 +15895,7 @@ st_zmin - geometry ST_AddBBox + geometry PostGIS_AddBBox geometry geomA @@ -15934,13 +15934,13 @@ st_zmin See Also - , + , - + - ST_DropBBox + PostGIS_DropBBox Drop the bounding box cache from the geometry. @@ -15948,7 +15948,7 @@ st_zmin - geometry ST_DropBBox + geometry PostGIS_DropBBox geometry geomA @@ -15981,15 +15981,15 @@ st_zmin Examples --This example drops bounding boxes where the cached box is not correct - --The force to ST_AsBinary before applying ST_box2D forces a recalculation of the box, and ST_Box2D applied to the table geometry always + --The force to ST_AsBinary before applying Box2D forces a recalculation of the box, and Box2D applied to the table geometry always -- returns the cached bounding box. UPDATE sometable - SET the_geom = ST_DropBBox(the_geom) - WHERE Not (ST_Box2D(ST_AsBinary(the_geom)) = ST_Box2D(the_geom)); + SET the_geom = PostGIS_DropBBox(the_geom) + WHERE Not (Box2D(ST_AsBinary(the_geom)) = Box2D(the_geom)); UPDATE sometable - SET the_geom = ST_AddBBox(the_geom) - WHERE Not ST_HasBBOX(the_geom); + SET the_geom = PostGIS_AddBBox(the_geom) + WHERE Not PostGIS_HasBBOX(the_geom); @@ -15999,14 +15999,14 @@ st_zmin See Also - , , + , , - + - ST_HasBBox + PostGIS_HasBBox Returns TRUE if the bbox of this geometry is cached, FALSE otherwise. @@ -16014,7 +16014,7 @@ st_zmin - boolean ST_HasBBox + boolean PostGIS_HasBBox geometry geomA @@ -16024,7 +16024,7 @@ st_zmin Description Returns TRUE if the bbox of this geometry is cached, FALSE - otherwise. Use and to control caching. + otherwise. Use and to control caching. @@ -16040,14 +16040,14 @@ st_zmin Examples SELECT the_geom -FROM sometable WHERE ST_HasBBox(the_geom) = false; +FROM sometable WHERE PostGIS_HasBBox(the_geom) = false; See Also - , + ,