[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0rc1-464-g5f4b44e

git at osgeo.org git at osgeo.org
Mon Aug 30 19:14:30 PDT 2021


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  5f4b44edb30c8609d3f812d1f0bc6fd07d750f0f (commit)
      from  25fe3dd0a651caeceb7aa3b10671d0c56e6dac1a (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 5f4b44edb30c8609d3f812d1f0bc6fd07d750f0f
Author: Rindahl <Bruce.Rindahl at ventura.org>
Date:   Mon Aug 30 16:28:47 2021 -0700

    More spelling errors
    
    Also includes PROJ and PostGIS references
    Closes https://github.com/postgis/postgis/pull/633

diff --git a/doc/reference_measure.xml b/doc/reference_measure.xml
index 48f175e..b16b5ca 100644
--- a/doc/reference_measure.xml
+++ b/doc/reference_measure.xml
@@ -39,7 +39,7 @@
 		  To compute the area using the faster but less accurate spherical model use <varname>ST_Area(geog,false)</varname>.
 		  </para>
 			<para>Enhanced: 2.0.0 - support for 2D polyhedral surfaces was introduced.</para>
-			<para>Enhanced: 2.2.0 - measurement on spheroid performed with GeographicLib for improved accuracy and robustness.  Requires Proj >= 4.9.0 to take advantage of the new feature.</para>
+			<para>Enhanced: 2.2.0 - measurement on spheroid performed with GeographicLib for improved accuracy and robustness.  Requires PROJ >= 4.9.0 to take advantage of the new feature.</para>
 			<para>Changed: 3.0.0 - does not depend on SFCGAL anymore.</para>
 			<para>&sfs_compliant;</para>
 			<para>&sqlmm_compliant; SQL-MM 3: 8.1.2, 9.5.3</para>
@@ -151,7 +151,7 @@ from somegeogtable;</programlisting>
 
 			<para>Availability: 1.1.0</para>
 			<para>Enhanced: 2.0.0 support for geography was introduced.</para>
-			<para>Enhanced: 2.2.0 measurement on spheroid performed with GeographicLib for improved accuracy and robustness.  Requires Proj >= 4.9.0 to take advantage of the new feature.</para>
+			<para>Enhanced: 2.2.0 measurement on spheroid performed with GeographicLib for improved accuracy and robustness.  Requires PROJ >= 4.9.0 to take advantage of the new feature.</para>
 		</refsection>
 
 		<refsection>
@@ -524,7 +524,7 @@ SELECT ST_AsEWKT(ST_3DClosestPoint(line,pt)) AS cp3d_line_pt,
 		<para>Availability: 1.5.0 geography support was introduced in 1.5.  Speed improvements for planar to better handle large or many vertex geometries</para>
 		<para>Enhanced: 2.1.0 improved speed for geography. See <ulink url="http://boundlessgeo.com/2012/07/making-geography-faster/">Making Geography faster</ulink> for details.</para>
 		<para>Enhanced: 2.1.0 - support for curved geometries was introduced.</para>
-		<para>Enhanced: 2.2.0 - measurement on spheroid performed with GeographicLib for improved accuracy and robustness. Requires Proj >= 4.9.0 to take advantage of the new feature.</para>
+		<para>Enhanced: 2.2.0 - measurement on spheroid performed with GeographicLib for improved accuracy and robustness. Requires PROJ >= 4.9.0 to take advantage of the new feature.</para>
 		<para>Changed: 3.0.0 - does not depend on SFCGAL anymore.</para>
 	  </refsection>
 
@@ -1106,7 +1106,7 @@ FROM (SELECT ST_GeographyFromText(
 		<title>Description</title>
 
 		<para>Returns the 3-dimensional or 2-dimensional length of the geometry if it is a
-			linestring or multi-linestring. For 2-d lines it will just return the 2-d length (same as ST_Length and ST_Length2D)</para>
+			LineString or MultiLineString. For 2-d lines it will just return the 2-d length (same as ST_Length and ST_Length2D)</para>
 		<para>&Z_support;</para>
 		<para>Changed: 2.0.0 In prior versions this used to be called ST_Length3D</para>
 	  </refsection>
@@ -1416,7 +1416,7 @@ SELECT ST_AsEWKT(ST_3DLongestLine(line,pt)) AS lol3d_line_pt,
 							  </para></entry>
 						  </row>
 						  <row>
-						  <entry><para>Multilinestring and polygon both 3d and 2d longest line
+						  <entry><para>MultiLineString and Polygon both 3d and 2d longest line
 					<programlisting>SELECT ST_AsEWKT(ST_3DLongestLine(poly, mline)) As lol3d,
     ST_AsEWKT(ST_LongestLine(poly, mline)) As lol2d
         FROM (SELECT  ST_GeomFromEWKT('POLYGON((175 150 5, 20 40 5, 35 45 5, 50 60 5, 100 100 5, 175 150 5))') As poly,
@@ -1617,7 +1617,7 @@ SELECT ST_3DMaxDistance(
 		</para>
 
 		<para>
-		If no minimum clearance exists for a geometry (e.g. a single point, or a multipoint whose points are identical),
+		If no minimum clearance exists for a geometry (e.g. a single point, or a MultiPoint whose points are identical),
         the return value is <varname>Infinity</varname>.
 		</para>
 
@@ -2126,7 +2126,7 @@ SELECT ST_AsEWKT(ST_3DShortestLine(line,pt)) AS shl3d_line_pt,
 							  </para></entry>
 						  </row>
 						  <row>
-						  <entry><para>Multilinestring and polygon both 3d and 2d shortest line
+						  <entry><para>MultiLineString and polygon both 3d and 2d shortest line
 					<programlisting>SELECT ST_AsEWKT(ST_3DShortestLine(poly, mline)) As shl3d,
     ST_AsEWKT(ST_ShortestLine(poly, mline)) As shl2d
         FROM (SELECT  ST_GeomFromEWKT('POLYGON((175 150 5, 20 40 5, 35 45 5, 50 60 5, 100 100 5, 175 150 5))') As poly,
diff --git a/doc/reference_operator.xml b/doc/reference_operator.xml
index 1e51d40..1d29387 100644
--- a/doc/reference_operator.xml
+++ b/doc/reference_operator.xml
@@ -2042,7 +2042,7 @@ Returns the distance between A and B trajectories at their closest point of appr
 The <varname>|=|</varname> operator returns the 3D distance between
 two trajectories (See <xref linkend="ST_IsValidTrajectory" />).
 This is the same as <xref linkend="ST_DistanceCPA" /> but as an operator
-it can be used for doing nearest neightbor searches using an N-dimensional
+it can be used for doing nearest neighbor searches using an N-dimensional
 index (requires PostgreSQL 9.5.0 or higher).
       </para>
 
diff --git a/doc/reference_overlay.xml b/doc/reference_overlay.xml
index 85f4b2d..9d51f65 100644
--- a/doc/reference_overlay.xml
+++ b/doc/reference_overlay.xml
@@ -258,7 +258,7 @@ SELECT ST_AsText(ST_Intersection('POINT(0 0)'::geometry, 'LINESTRING ( 0 0, 0 2
 ---------------
 POINT(0 0)</programlisting>
 <para>
-Clip all lines (trails) by country. Hhere we assume country geom are POLYGON or MULTIPOLYGONS.
+Clip all lines (trails) by country. Here we assume country geom are POLYGON or MULTIPOLYGONS.
 NOTE: we are only keeping intersections that result in a LINESTRING or MULTILINESTRING because we don't
 care about trails that just share a point. The dump is needed to expand a geometry collection into individual single MULT* parts.
 The below is fairly generic and will work for polys, etc. by just changing the where clause.</para>
@@ -398,7 +398,7 @@ The resulting linework is dissolved (duplicate lines are removed).
 
         <para>
 Changed: 2.4.0 this function uses GEOSNode internally instead of GEOSUnaryUnion.
-This may cause the resulting linestrings to have a different order and direction compared to Postgis < 2.4.
+This may cause the resulting linestrings to have a different order and direction compared to PostGIS < 2.4.
         </para>
       </refsection>
       <refsection>
diff --git a/doc/reference_processing.xml b/doc/reference_processing.xml
index ab5eb59..6a942f0 100644
--- a/doc/reference_processing.xml
+++ b/doc/reference_processing.xml
@@ -501,7 +501,7 @@ FROM (SELECT
       If an empty geometry is supplied, an empty <varname>GEOMETRYCOLLECTION</varname> is returned.
       If <varname>NULL</varname> is supplied, <varname>NULL</varname> is returned.
       If <varname>CIRCULARSTRING</varname> or <varname>COMPOUNDCURVE</varname>
-      are supplied, they are converted to linestring wtih CurveToLine first,
+      are supplied, they are converted to linestring with CurveToLine first,
       then same than for  <varname>LINESTRING</varname>
       </para>
       <para>For mixed-dimension input, the result is equal to the centroid of the component
@@ -1311,7 +1311,7 @@ FROM test;
             Lines are not joined across intersections of 3-way or greater degree.
             </para>
 
-			<note><para>Only use with MultiLineString/LineStrings. If you pass a Plygon or GeometryCollection into this function, it
+			<note><para>Only use with MultiLineString/LineStrings. If you pass a Polygon or GeometryCollection into this function, it
 			returns an empty GeometryCollection</para></note>
 			<para>Performed by the GEOS module.</para>
 			<para>Availability: 1.1.0</para>
@@ -1550,7 +1550,7 @@ POLYGON((135.59714732062 115,134.384753327498 102.690357210921,130.79416296937 9
         <refsection>
             <title>Description</title>
             <para>
-                Returns the mimimum-area rotated rectangle enclosing a geometry.
+                Returns the minimum-area rotated rectangle enclosing a geometry.
                 Note that more than one such rectangle may exist.
                 May return a Point or LineString in the case of degenerate inputs.
             </para>
diff --git a/doc/reference_relationship.xml b/doc/reference_relationship.xml
index efef1ed..b845fa5 100644
--- a/doc/reference_relationship.xml
+++ b/doc/reference_relationship.xml
@@ -1067,7 +1067,7 @@ SELECT ST_Equals(ST_Reverse(ST_GeomFromText('LINESTRING(0 0, 10 10)')),
 
       <note><para>&index_aware;</para></note>
 
-      <para>Changed: 3.0.0 SFCGAL version removed and native suppport for 2D TINS added.</para>
+      <para>Changed: 3.0.0 SFCGAL version removed and native support for 2D TINS added.</para>
       <para>Enhanced: 2.5.0 Supports GEOMETRYCOLLECTION.</para>
       <para>Enhanced: 2.3.0 Enhancement to PIP short-circuit extended to support MultiPoints with few points. Prior versions only supported point in polygon.</para>
       <para>Performed by the GEOS module (for geometry), geography is native</para>
diff --git a/doc/reference_sfcgal.xml b/doc/reference_sfcgal.xml
index f4e5557..b4a0afd 100644
--- a/doc/reference_sfcgal.xml
+++ b/doc/reference_sfcgal.xml
@@ -900,7 +900,7 @@ FROM ( SELECT ST_Extrude(ST_Buffer(ST_GeomFromText('POINT(100 90)'),
 
 	  <refsection>
 		<title>Description</title>
-		<para>Takes as input a surface such a  MULTI(POLYGON) or POLYHEDRALSURFACE and returns a TIN representation via the process of tesselation using triangles.</para>
+		<para>Takes as input a surface such a  MULTI(POLYGON) or POLYHEDRALSURFACE and returns a TIN representation via the process of tessellation using triangles.</para>
 		<para>Availability: 2.1.0</para>
 		<para>&sfcgal_required;</para>
 		<para>&Z_support;</para>
diff --git a/doc/reference_srs.xml b/doc/reference_srs.xml
index 15122ed..01adc73 100644
--- a/doc/reference_srs.xml
+++ b/doc/reference_srs.xml
@@ -172,7 +172,7 @@ SRID=3785;POINT(-13732990.8753491 6178458.96425423)
 		the geometry.</para>
 
 		<note>
-		  <para>Requires PostGIS be compiled with Proj support.  Use <xref linkend="PostGIS_Full_Version" /> to confirm you have proj support compiled in.</para>
+		  <para>Requires PostGIS be compiled with PROJ support.  Use <xref linkend="PostGIS_Full_Version" /> to confirm you have PROJ support compiled in.</para>
 		</note>
 
 		<note>

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

Summary of changes:
 doc/reference_measure.xml      | 14 +++++++-------
 doc/reference_operator.xml     |  2 +-
 doc/reference_overlay.xml      |  4 ++--
 doc/reference_processing.xml   |  6 +++---
 doc/reference_relationship.xml |  2 +-
 doc/reference_sfcgal.xml       |  2 +-
 doc/reference_srs.xml          |  2 +-
 7 files changed, 16 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list