[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0alpha1-32-gbb1bf6462

git at osgeo.org git at osgeo.org
Sat Jun 11 17:15:43 PDT 2022


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  bb1bf64621b75107c8e5e2946761c3e13b09e93b (commit)
      from  eab253b3822dd600d70b51e7988431440f24026b (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 bb1bf64621b75107c8e5e2946761c3e13b09e93b
Author: Martin Davis <mtnclimb at gmail.com>
Date:   Sat Jun 11 17:15:39 2022 -0700

    Improve doc for ST_SimplifyPolygonHull

diff --git a/doc/reference_processing.xml b/doc/reference_processing.xml
index 425ffac09..ea7c61bf9 100644
--- a/doc/reference_processing.xml
+++ b/doc/reference_processing.xml
@@ -2392,7 +2392,7 @@ FROM (SELECT ST_Buffer('POINT(1 3)', 10,12) As geom) As foo;
     <refentry id="ST_SimplifyPolygonHull">
       <refnamediv>
         <refname>ST_SimplifyPolygonHull</refname>
-        <refpurpose>Computes a boundary-respecting fully exterior or fully interior hull of a polygonal geometry.</refpurpose>
+        <refpurpose>Computes a simplifed topology-preserving outer or inner hull of a polygonal geometry.</refpurpose>
       </refnamediv>
 
       <refsynopsisdiv>
@@ -2409,8 +2409,9 @@ FROM (SELECT ST_Buffer('POINT(1 3)', 10,12) As geom) As foo;
       <refsection>
         <title>Description</title>
 
-        <para>Computes a boundary-respecting simplified hull of a polygonal geometry.
-        An "outer" hull completely covers the input geometry. An "inner" hull is completely contained by the input geometry.
+        <para>Computes a simplified topology-preserving outer or inner hull of a polygonal geometry.
+        An outer hull completely covers the input geometry.
+        An inner hull is completely covered by the input geometry.
         The result is a polygonal geometry formed by a subset of the input vertices.
         MultiPolygons and holes are handled and produce a result with the same structure as the input.
         </para>
@@ -2424,7 +2425,7 @@ FROM (SELECT ST_Buffer('POINT(1 3)', 10,12) As geom) As foo;
 
         <para>
         The simplification process operates by progressively removing concave corners that contain the least amount of area, until the vertex count target is reached.
-        It prevents result edges from crossing, so the result is always a valid polygonal geometry.
+        It prevents edges from crossing, so the result is always a valid polygonal geometry.
         </para>
 
         <para>To get better results with geometries that contain relatively long line segments, it might be necessary to "segmentize" the input, as shown below.</para>

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

Summary of changes:
 doc/reference_processing.xml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list