[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha2-103-g88d70f6

git at osgeo.org git at osgeo.org
Wed Oct 28 14:34:32 PDT 2020


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  88d70f63fdfc250d5cf64b41c5705e0b0c3ef747 (commit)
       via  63a3c143c03fdd21b0967ff49a1bbee94a954ea2 (commit)
      from  47e75c49349ad1b89a9b93605cfe98211744180f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 88d70f63fdfc250d5cf64b41c5705e0b0c3ef747
Merge: 63a3c14 47e75c4
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Oct 28 17:34:24 2020 -0400

    Merge branch 'master' of https://git.osgeo.org/gitea/postgis/postgis


commit 63a3c143c03fdd21b0967ff49a1bbee94a954ea2
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Oct 28 17:34:00 2020 -0400

    Add cross reference for &&, ST_Intersects, ST_Extent to each other.  Closes #4593 for PostGIS 3.1.0

diff --git a/doc/reference_bbox.xml b/doc/reference_bbox.xml
index aa4f0b3..6b01777 100644
--- a/doc/reference_bbox.xml
+++ b/doc/reference_bbox.xml
@@ -395,7 +395,7 @@ SELECT ST_SetSRID(ST_Extent(the_geom),2249) as bextent FROM sometable;
 
 	  <refsection>
 		<title>See Also</title>
-		<para><xref linkend="ST_AsEWKT" />, <xref linkend="ST_3DExtent" />, <xref linkend="ST_SetSRID" />, <xref linkend="ST_SRID" /></para>
+		<para><xref linkend="geometry_overlaps" />, <xref linkend="ST_AsEWKT" />, <xref linkend="ST_3DExtent" />, <xref linkend="ST_SetSRID" />, <xref linkend="ST_SRID" /></para>
 	  </refsection>
 	</refentry>
 
diff --git a/doc/reference_operator.xml b/doc/reference_operator.xml
index 6b0499b..0ae2539 100644
--- a/doc/reference_operator.xml
+++ b/doc/reference_operator.xml
@@ -50,21 +50,21 @@
 			</funcsynopsis>
 		  </refsynopsisdiv>
 
-		  <refsection>
-			<title>Description</title>
+        <refsection>
+            <title>Description</title>
 
-			<para>The <varname>&&</varname> operator returns <varname>TRUE</varname> if the 2D bounding box of geometry A intersects the 2D bounding box of geometry B.</para>
+            <para>The <varname>&&</varname> operator returns <varname>TRUE</varname> if the 2D bounding box of geometry A intersects the 2D bounding box of geometry B.</para>
 
-			<note><para>This operand will make use of any indexes that may be available on the
-				geometries.</para></note>
+            <note><para>This operand will make use of any indexes that may be available on the
+                geometries.</para></note>
 
-			<para>Enhanced: 2.0.0 support for Polyhedral surfaces was introduced.</para>
-			<para>Availability: 1.5.0 support for geography was introduced.</para>
-			<para>&curve_support;</para>
-			<para>&P_support;</para>
-		  </refsection>
+            <para>Enhanced: 2.0.0 support for Polyhedral surfaces was introduced.</para>
+            <para>Availability: 1.5.0 support for geography was introduced.</para>
+            <para>&curve_support;</para>
+            <para>&P_support;</para>
+        </refsection>
 
-		  <refsection>
+		<refsection>
 			<title>Examples</title>
 
 			<programlisting>SELECT tbl1.column1, tbl2.column1, tbl1.column2 && tbl2.column2 AS overlaps
@@ -86,12 +86,15 @@ FROM ( VALUES
 			<title>See Also</title>
 
 			<para>
+                <xref linkend="ST_Intersects" />,
+                <xref linkend="ST_Extent" />,
 				<xref linkend="ST_Geometry_Overabove" />,
 				<xref linkend="ST_Geometry_Overright" />,
 				<xref linkend="ST_Geometry_Overbelow" />,
 				<xref linkend="ST_Geometry_Overleft" />,
 				<xref linkend="ST_Geometry_Contain" />,
-				<xref linkend="ST_Geometry_Contained" /></para>
+				<xref linkend="ST_Geometry_Contained" />
+            </para>
 		  </refsection>
 		</refentry>
 
diff --git a/doc/reference_relationship.xml b/doc/reference_relationship.xml
index 160e76c..7c75052 100644
--- a/doc/reference_relationship.xml
+++ b/doc/reference_relationship.xml
@@ -1041,7 +1041,7 @@ SELECT ST_Equals(ST_Reverse(ST_GeomFromText('LINESTRING(0 0, 10 10)')),
 			<refname>ST_Intersects</refname>
 
 			<refpurpose>Returns TRUE if the Geometries/Geography "spatially
-			intersect in 2D" - (share any portion of space) and FALSE if they don't (they are Disjoint).
+			intersects in 2D" - (share any portion of space) and FALSE if they don't (they are Disjoint).
 			For geography tolerance is 0.00001 meters (so any points that close are considered to intersect)
 			</refpurpose>
 		</refnamediv>
@@ -1141,7 +1141,7 @@ t
 		</refsection>
 		<refsection>
 			<title>See Also</title>
-			<para> <xref linkend="ST_3DIntersects" />, <xref linkend="ST_Disjoint"/></para>
+			<para><xref linkend="geometry_overlaps" />, <xref linkend="ST_3DIntersects" />, <xref linkend="ST_Disjoint"/></para>
 		</refsection>
 	</refentry>
 
@@ -1205,7 +1205,7 @@ SELECT ST_OrderingEquals(ST_Reverse(ST_GeomFromText('LINESTRING(0 0, 10 10)')),
 		  </refsection>
 		  <refsection>
 			<title>See Also</title>
-			<para><xref linkend="ST_Equals"/>, <xref linkend="ST_Reverse"/></para>
+			<para><xref linkend="geometry_overlaps" />, <xref linkend="ST_Equals"/>, <xref linkend="ST_Reverse"/></para>
 		  </refsection>
 	</refentry>
 

-----------------------------------------------------------------------

Summary of changes:
 doc/reference_bbox.xml         |  2 +-
 doc/reference_operator.xml     | 27 +++++++++++++++------------
 doc/reference_relationship.xml |  6 +++---
 3 files changed, 19 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list