[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-581-g28e30feae

git at osgeo.org git at osgeo.org
Wed Feb 1 16:04:50 PST 2023


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  28e30feae61ec3af070c41b8a568e73db813e899 (commit)
      from  dfb471df8db21fd115a38bedabd2911f4dc4e324 (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 28e30feae61ec3af070c41b8a568e73db813e899
Author: Martin Davis <mtnclimb at gmail.com>
Date:   Wed Feb 1 16:09:19 2023 -0800

    Improve doc for ST_ConcaveHull, ST_AlphaShape

diff --git a/doc/reference_processing.xml b/doc/reference_processing.xml
index 387075721..860d33513 100644
--- a/doc/reference_processing.xml
+++ b/doc/reference_processing.xml
@@ -665,7 +665,7 @@ FROM (SELECT  'POLYGON((0 0, 8 8, 0 16, 0 0))'::geometry geom) As foo;
     <refentry id="ST_ConcaveHull">
       <refnamediv>
         <refname>ST_ConcaveHull</refname>
-        <refpurpose>Computes a possibly concave geometry that encloses all input geometry vertices</refpurpose>
+        <refpurpose>Computes a possibly concave geometry that contains all input geometry vertices</refpurpose>
       </refnamediv>
 
       <refsynopsisdiv>
@@ -682,38 +682,40 @@ FROM (SELECT  'POLYGON((0 0, 8 8, 0 16, 0 0))'::geometry geom) As foo;
       <refsection>
         <title>Description</title>
 
-        <para>A concave hull of a geometry is a possibly concave
-        geometry that encloses the vertices of the input geometry.
+        <para>A concave hull is a (usually) concave geometry which contains the input,
+        and whose vertices are a subset of the input vertices.
         In the general case the concave hull is a Polygon.
-        The polygon will not contain holes unless the optional <varname>param_allow_holes</varname>
-        argument is specified as true.
         The concave hull of two or more collinear points is a two-point LineString.
         The concave hull of one or more identical points is a Point.
+        The polygon will not contain holes unless the optional <varname>param_allow_holes</varname>
+        argument is specified as true.
         </para>
 
         <para>One can think of a concave hull as "shrink-wrapping" a set of points.
         This is different to the <link linkend="ST_ConvexHull">convex hull</link>,
         which is more like wrapping a rubber band around the points.
-        The concave hull generally has a smaller area
+        A concave hull generally has a smaller area
         and represents a more natural boundary for the input points.
-        Like the convex hull, the vertices of a concave hull are a subset of the input points,
-        and all other input points are contained within it.</para>
+        </para>
 
         <para>The <varname>param_pctconvex</varname> controls the concaveness of the computed hull.
         A value of 1 produces the convex hull.
-        A value of 0 produces a hull of maximum concaveness (but still a single polygon).
         Values between 1 and 0 produce hulls of increasing concaveness.
+        A value of 0 produces a hull with maximum concaveness (but still a single polygon).
         Choosing a suitable value depends on the nature of the input data,
         but often values between 0.3 and 0.1 produce reasonable results.
         </para>
 
-        <para>Technically, the <varname>param_pctconvex</varname> determines a length as a fraction of the difference between
+        <note><para>
+        Technically, the <varname>param_pctconvex</varname> determines a length as a fraction of the difference between
         the longest and shortest edges in the Delaunay Triangulation of the input points.
         Edges longer than this length are "eroded" from the triangulation.
         The triangles remaining form the concave hull.
-        </para>
+        </para></note>
 
-        <para>For point and linear inputs, the hull will enclose all the points of the inputs. For polygonal inputs, the hull will enclose all the points of the input <emphasis>and also</emphasis> all the areas covered by the input. If you want a point-wise hull of a polygonal input, convert it to points first, using <xref linkend="ST_Points" />.</para>
+        <para>For point and linear inputs, the hull will enclose all the points of the inputs.
+        For polygonal inputs, the hull will enclose all the points of the input <emphasis>and also</emphasis> all the areas covered by the input.
+        If you want a point-wise hull of a polygonal input, convert it to points first using <xref linkend="ST_Points" />.</para>
 
        <para>This is not an aggregate function.
         To compute the concave hull of a set of geometries use <xref linkend="ST_Collect" />
diff --git a/doc/reference_sfcgal.xml b/doc/reference_sfcgal.xml
index 08c9d3735..75bda308a 100644
--- a/doc/reference_sfcgal.xml
+++ b/doc/reference_sfcgal.xml
@@ -503,8 +503,14 @@ FROM ( SELECT ST_Extrude(ST_Buffer(ST_GeomFromText('POINT(100 90)'),
         <para>Computes the
         <ulink url="https://en.wikipedia.org/wiki/Alpha_shape">Alpha-Shape</ulink>
             of the points in a geometry.
-        An alpha-shape is a polygonal geometry enclosing all the points in the input.
-        The "closeness of fit" of the result is controlled by the <varname>alpha</varname> parameter,
+        An alpha-shape is a (usually) concave polygonal geometry which contains all the vertices of the input,
+        and whose vertices are a subset of the input vertices.
+        An alpha-shape provides a closer fit to the shape of the input
+        than the shape produced by the <link linkend="ST_ConvexHull">convex hull</link>.
+        </para>
+
+        <para>
+        The "closeness of fit" is controlled by the <varname>alpha</varname> parameter,
         which can have values from 0 to infinity.
         Smaller alpha values produce more concave results.
         Alpha values greater than some data-dependent value produce the convex hull of the input.

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

Summary of changes:
 doc/reference_processing.xml | 26 ++++++++++++++------------
 doc/reference_sfcgal.xml     | 10 ++++++++--
 2 files changed, 22 insertions(+), 14 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list