[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-458-gf72272c7e

git at osgeo.org git at osgeo.org
Wed Feb 2 10:31:59 PST 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  f72272c7e0cac42fe28aad1bd4abb2c91ee7363d (commit)
      from  972fce5a06445e8422e07f34ad16e1c01d387005 (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 f72272c7e0cac42fe28aad1bd4abb2c91ee7363d
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Wed Feb 2 10:31:55 2022 -0800

    Match doc param names to SQL param names

diff --git a/doc/reference_processing.xml b/doc/reference_processing.xml
index bc84cf142..01a87f85c 100644
--- a/doc/reference_processing.xml
+++ b/doc/reference_processing.xml
@@ -619,9 +619,9 @@ POINT(0.5 1)
         <funcsynopsis>
          <funcprototype>
             <funcdef>geometry <function>ST_ConcaveHull</function></funcdef>
-            <paramdef><type>geometry </type> <parameter>geom</parameter></paramdef>
-            <paramdef><type>float </type> <parameter>target_percent</parameter></paramdef>
-            <paramdef choice="opt"><type>boolean </type> <parameter>allow_holes = false</parameter></paramdef>
+            <paramdef><type>geometry </type> <parameter>param_geom</parameter></paramdef>
+            <paramdef><type>float </type> <parameter>param_pctconvex</parameter></paramdef>
+            <paramdef choice="opt"><type>boolean </type> <parameter>param_allow_holes = false</parameter></paramdef>
           </funcprototype>
         </funcsynopsis>
       </refsynopsisdiv>
@@ -632,7 +632,7 @@ POINT(0.5 1)
         <para>A concave hull of a geometry is a possibly concave
         geometry that encloses the vertices of the input geometry.
         In the general case the concave hull is a Polygon.
-        The polygon will not contain holes unless the optional <varname>allow_holes</varname>
+        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.
@@ -646,7 +646,7 @@ POINT(0.5 1)
         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>The <varname>target_percent</varname> controls the concaveness of the computed hull.
+        <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.

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list