Move over ST_HasBBox

git-svn-id: http://svn.osgeo.org/postgis/trunk@3347 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Regina Obe 2008-12-01 06:32:33 +00:00
parent 2ad8715480
commit b55840cc3b
2 changed files with 47 additions and 9 deletions

View file

@ -440,15 +440,6 @@
</listitem>
</varlistentry>
<varlistentry id="hasbbox">
<term>ST_HasBBOX(geometry)</term>
<listitem>
<para>Returns TRUE if the bbox of this geometry is cached, FALSE
otherwise. Use <link linkend="addbbox">addBBOX()</link> and <link
linkend="dropbbox">dropBBOX()</link> to control caching.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>ST_nrings(geometry)</term>

View file

@ -2919,6 +2919,53 @@ WHERE n &gt;= ST_NumGeometries(the_geom);</programlisting>
<para><xref linkend="GeometryType" /></para>
</refsection>
</refentry>
<refentry id="ST_HasBBOX">
<refnamediv>
<refname>ST_HasBBOX</refname>
<refpurpose>Returns TRUE if the bbox of this geometry is cached, FALSE otherwise.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
<funcdef>boolean <function>ST_HasBBOX</function></funcdef>
<paramdef><type>geometry </type> <parameter>geomA</parameter></paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsection>
<title>Description</title>
<para>Returns TRUE if the bbox of this geometry is cached, FALSE
otherwise. Use <xref linkend="ST_AddBBox" /> and <xref linkend="ST_DropBBox" /> to control caching.</para>
<!-- Optionally mention Circular String Support -->
<para><inlinemediaobject>
<imageobject>
<imagedata fileref="images/check.png" />
</imageobject>
</inlinemediaobject> This method supports Circular Strings and curves </para>
</refsection>
<refsection>
<title>Examples</title>
<programlisting>SELECT the_geom
FROM sometable WHERE ST_HasBBox(the_geom) = false;</programlisting>
</refsection>
<!-- Optionally add a "See Also" section -->
<refsection>
<title>See Also</title>
<para><xref linkend="ST_AddBBox" />, <xref linkend="ST_DropBBox" /></para>
</refsection>
</refentry>
<refentry id="ST_InteriorRingN">
<refnamediv>