From: Regina Obe Date: Sun, 7 Dec 2008 00:40:47 +0000 (+0000) Subject: Move over ST_Box2D and ST_Box3D and flag ST_Accum as working with circular strings X-Git-Tag: 1.4.0b1~452 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e252027601645c200bd9f3eefcfba9eeff6035f;p=postgis Move over ST_Box2D and ST_Box3D and flag ST_Accum as working with circular strings git-svn-id: http://svn.osgeo.org/postgis/trunk@3366 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference.xml b/doc/reference.xml index 524fd7241..cab2947af 100644 --- a/doc/reference.xml +++ b/doc/reference.xml @@ -412,24 +412,6 @@ Misc - - ST_box2d(geometry) - - - Returns a BOX2D representing the maximum extents of the - geometry. - - - - - ST_box3d(geometry) - - - Returns a BOX3D representing the maximum extents of the - geometry. - - - ST_zmflag(geometry) diff --git a/doc/reference_new.xml b/doc/reference_new.xml index a52e43ba5..e8857bf8b 100644 --- a/doc/reference_new.xml +++ b/doc/reference_new.xml @@ -11548,6 +11548,13 @@ LockRow This function supports 3d and will not drop the z-index. + + + + + + + This method supports Circular Strings and curves @@ -11582,6 +11589,119 @@ all_em|grabone | grab_rest + + + + ST_Box2D + + Returns a BOX2D representing the maximum extents of the geometry. + + + + + + box2d ST_Box2D + geometry geomA + + + + + + Description + + Returns a BOX2D representing the maximum extents of the geometry. + + + + + + + This method supports Circular Strings and curves + + + + + Examples + + SELECT ST_Box2D(ST_GeomFromText('LINESTRING(1 2, 3 4, 5 6)')); + st_box2d + --------- + BOX(1 2,5 6) + + SELECT ST_Box2D(ST_GeomFromText('CIRCULARSTRING(220268 150415,220227 150505,220227 150406)')); + st_box2d + -------- + BOX(220186.984375 150406,220288.25 150506.140625) + + + + + + See Also + + , + + + + + + ST_Box3D + + Returns a BOX3D representing the maximum extents of the geometry. + + + + + + box3d ST_Box3D + geometry geomA + + + + + + Description + + Returns a BOX3D representing the maximum extents of the geometry. + + + + + + + This function supports 3d and will not drop the z-index. + + + + + + + This method supports Circular Strings and curves + + + + + Examples + + SELECT ST_Box3D(ST_GeomFromEWKT('LINESTRING(1 2 3, 3 4 5, 5 6 5)')); + st_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 + -------- + BOX3D(220227 150406 1,220268 150415 1) + + + + + + See Also + + , + +