[postgis-commits] svn - r3549 - trunk/doc
postgis-commits at postgis.refractions.net
postgis-commits at postgis.refractions.net
Wed Jan 21 16:16:22 PST 2009
Author: kneufeld
Date: 2009-01-21 16:16:21 -0800 (Wed, 21 Jan 2009)
New Revision: 3549
Modified:
trunk/doc/reference.xml
trunk/doc/reference_new.xml
Log:
moved over &> from reference.xml to reference_new.xml in the documentation
Modified: trunk/doc/reference.xml
===================================================================
--- trunk/doc/reference.xml 2009-01-21 23:26:29 UTC (rev 3548)
+++ trunk/doc/reference.xml 2009-01-22 00:16:21 UTC (rev 3549)
@@ -157,17 +157,8 @@
<sect2>
<title>Operators</title>
- <variablelist>
+ <variablelist>
<varlistentry>
- <term>A &> B</term>
-
- <listitem>
- <para>The "&>" operator returns true if A's bounding box
- overlaps or is to the right of B's bounding box.</para>
- </listitem>
- </varlistentry>
-
- <varlistentry>
<term>A << B</term>
<listitem>
Modified: trunk/doc/reference_new.xml
===================================================================
--- trunk/doc/reference_new.xml 2009-01-21 23:26:29 UTC (rev 3548)
+++ trunk/doc/reference_new.xml 2009-01-22 00:16:21 UTC (rev 3549)
@@ -7700,7 +7700,7 @@
<refsection>
<title>See Also</title>
- <para><xref linkend="ST_Geometry_Overleft" /></para>
+ <para><xref linkend="ST_Geometry_Overleft" />, <xref linkend="ST_Geometry_Overright" /></para>
</refsection>
</refentry>
@@ -7738,7 +7738,8 @@
<title>Description</title>
<para>The <varname>&<</varname> operator returns <varname>TRUE</varname> if the bounding box of geometry A
- overlaps or is to the left of the bounding box of geometry B.</para>
+ overlaps or is to the left of the bounding box of geometry B, or more accurately, overlaps or is NOT to the right
+ of the bounding box of geometry B.</para>
</refsection>
<refsection>
@@ -7755,7 +7756,7 @@
column1 | column1 | overlaps
---------+---------+----------
- 1 | 2 | f <---- FIXME: this looks like a bug.
+ 1 | 2 | f
1 | 3 | f
1 | 4 | t
(3 rows)</programlisting>
@@ -7764,10 +7765,75 @@
<refsection>
<title>See Also</title>
- <para><xref linkend="ST_Geometry_Overlaps" /></para>
+ <para><xref linkend="ST_Geometry_Overlaps" />, <xref linkend="ST_Geometry_Overright" /></para>
</refsection>
</refentry>
-
+
+ <refentry id="ST_Geometry_Overright">
+ <refnamediv>
+ <refname>&></refname>
+
+ <refpurpose>Returns <varname>TRUE</varname> if A overlaps or is to the right of B.</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <funcsynopsis>
+ <funcprototype>
+ <!-- TODO: Ideally, it would be nice if this coule be reordered to
+ "boolean (geometry A &> geometry B)" instead of
+ "boolean &&( geometry A, geometry B)" -->
+ <funcdef>boolean <function>&></function></funcdef>
+
+ <paramdef>
+ <type>geometry </type>
+
+ <parameter>A</parameter>
+ </paramdef>
+
+ <paramdef>
+ <type>geometry </type>
+
+ <parameter>B</parameter>
+ </paramdef>
+ </funcprototype>
+ </funcsynopsis>
+ </refsynopsisdiv>
+
+ <refsection>
+ <title>Description</title>
+
+ <para>The <varname>&></varname> operator returns <varname>TRUE</varname> if the bounding box of geometry A
+ overlaps or is to the right of the bounding box of geometry B, or more accurately, overlaps or is NOT to the left
+ of the bounding box of geometry B.</para>
+ </refsection>
+
+ <refsection>
+ <title>Examples</title>
+
+ <programlisting>SELECT tbl1.column1, tbl2.column1, tbl1.column2 &> tbl2.column2 AS overlaps
+FROM
+ ( VALUES
+ (1, 'LINESTRING(1 2, 4 6)'::geometry)) AS tbl1,
+ ( VALUES
+ (2, 'LINESTRING(0 0, 3 3)'::geometry),
+ (3, 'LINESTRING(0 1, 0 5)'::geometry),
+ (4, 'LINESTRING(6 0, 6 1)'::geometry)) AS tbl2;
+
+ column1 | column1 | overlaps
+---------+---------+----------
+ 1 | 2 | t
+ 1 | 3 | t
+ 1 | 4 | f
+(3 rows)</programlisting>
+ </refsection>
+
+ <refsection>
+ <title>See Also</title>
+
+ <para><xref linkend="ST_Geometry_Overlaps" />, <xref linkend="ST_Geometry_Overleft" /></para>
+ </refsection>
+ </refentry>
+
<refentry id="ST_Geometry_EQ">
<refnamediv>
<refname>=</refname>
More information about the postgis-commits
mailing list