]> granicus.if.org Git - postgis/commitdiff
oops revert change I guess ST_Box .. is the one that's deprecated. How confusing...
authorRegina Obe <lr@pcorp.us>
Wed, 30 Dec 2009 12:53:55 +0000 (12:53 +0000)
committerRegina Obe <lr@pcorp.us>
Wed, 30 Dec 2009 12:53:55 +0000 (12:53 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@5077 b70326c6-7e19-0410-871a-916f4a2858ee

doc/faq.xml
doc/reference_misc.xml

index 60a527a24a21c91b5a434906cd3b5dc0309669da..1a92394f4dde3425c7264b2871ae6d05c6115e1a 100644 (file)
@@ -289,7 +289,7 @@ WHERE ST_DWithin(geocolumn, 'POINT(1000 1000)', 100.0);</programlisting>
        
        <qandaentry>
       <question>
-        <para>When I do an ST_Intersects, it says my two geometries don't intersect when I KNOW THEY DO</para>
+        <para>When I do an ST_Intersects, it says my two geometries don't intersect when I KNOW THEY DO. What gives?</para>
       </question>
 
       <answer>
index 00fceedcdea416fbc7bc54dfb6b88d3102b430dd..1d8b063de59ef5588e0642680a8e1e92a6ea7457 100644 (file)
@@ -59,9 +59,9 @@ all_em|grabone   | grab_rest
          </refsection>
        </refentry>
 
-       <refentry id="ST_Box2D">
+       <refentry id="Box2D">
          <refnamediv>
-               <refname>ST_Box2D</refname>
+               <refname>Box2D</refname>
 
                <refpurpose>Returns a BOX2D representing the maximum extents of the geometry.</refpurpose>
          </refnamediv>
@@ -86,12 +86,12 @@ all_em|grabone   | grab_rest
          <refsection>
                <title>Examples</title>
 
-               <programlisting>SELECT ST_Box2D(ST_GeomFromText('LINESTRING(1 2, 3 4, 5 6)'));
+               <programlisting>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
          <refsection>
                <title>See Also</title>
 
-               <para><xref linkend="ST_Box3D" />, <xref linkend="ST_GeomFromText" /></para>
+               <para><xref linkend="Box3D" />, <xref linkend="ST_GeomFromText" /></para>
          </refsection>
        </refentry>
 
-       <refentry id="ST_Box3D">
+       <refentry id="Box3D">
          <refnamediv>
-               <refname>ST_Box3D</refname>
+               <refname>Box3D</refname>
 
                <refpurpose>Returns a BOX3D representing the maximum extents of the geometry.</refpurpose>
          </refnamediv>
@@ -116,7 +116,7 @@ all_em|grabone   | grab_rest
          <refsynopsisdiv>
                <funcsynopsis>
                  <funcprototype>
-                       <funcdef>box3d <function>ST_Box3D</function></funcdef>
+                       <funcdef>box3d <function>Box3D</function></funcdef>
                        <paramdef><type>geometry </type> <parameter>geomA</parameter></paramdef>
                  </funcprototype>
                </funcsynopsis>
@@ -134,13 +134,13 @@ all_em|grabone   | grab_rest
          <refsection>
                <title>Examples</title>
 
-               <programlisting>SELECT ST_Box3D(ST_GeomFromEWKT('LINESTRING(1 2 3, 3 4 5, 5 6 5)'));
-       st_box3d
+               <programlisting>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)
        </programlisting>
@@ -150,7 +150,7 @@ all_em|grabone   | grab_rest
          <refsection>
                <title>See Also</title>
 
-               <para><xref linkend="ST_Box2D" />, <xref linkend="ST_GeomFromEWKT" /></para>
+               <para><xref linkend="Box2D" />, <xref linkend="ST_GeomFromEWKT" /></para>
          </refsection>
        </refentry>