[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha3-19-g99128ad

git at osgeo.org git at osgeo.org
Mon Nov 30 10:06:54 PST 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  99128ad0195da994e0cc82648008103adab75f61 (commit)
      from  4cc9d7adb122726047646648bd75e2972cd6c7b4 (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 99128ad0195da994e0cc82648008103adab75f61
Author: Martin Davis <mtnclimb at gmail.com>
Date:   Mon Nov 30 10:06:35 2020 -0800

    Make Doc Ref Overlay functions gridsize optionality clear
    
    Signed-off-by: Martin Davis <mtnclimb at gmail.com>

diff --git a/doc/reference_overlay.xml b/doc/reference_overlay.xml
index 6175aa9..4c9f637 100644
--- a/doc/reference_overlay.xml
+++ b/doc/reference_overlay.xml
@@ -88,7 +88,7 @@ SELECT ST_ClipByBox2D(the_geom, ST_MakeEnvelope(0,0,10,10)) FROM mytab;
         <note><para>Order matters. B - A will always return a portion of B</para></note>
 
             <para>
-If a gridSize argument is provided, the inputs are
+If the optional <code>gridSize</code> argument is provided, the inputs are
 snapped to a grid of the given size and all intersections are computed
 on that same grid. This method requires GEOS-3.9.0 or higher.
             </para>
@@ -190,7 +190,7 @@ Returns a geometry that represents the shared portion of geomA and geomB.
                     </paramdef>
                     <paramdef choice="opt">
                         <type>float8</type>
-                        <parameter>gridSize</parameter>
+                        <parameter>gridSize = -1</parameter>
                     </paramdef>
                 </funcprototype>
                 <funcprototype>
@@ -219,7 +219,7 @@ Returns a geometry that represents the shared portion of geomA and geomB.
                 queries where you only want to return that portion of a geometry that sits in a country or region of interest.</para>
 
             <para>
-If a gridSize argument is provided, the inputs are
+If the optional <code>gridSize</code> argument is provided, the inputs are
 snapped to a grid of the given size and all intersections are computed
 on that same grid. This method requires GEOS-3.9.0 or higher.
             </para>
@@ -596,7 +596,7 @@ GEOMETRYCOLLECTION(
                 <funcdef>setof geometry <function>ST_Subdivide</function></funcdef>
                 <paramdef><type>geometry</type> <parameter>geom</parameter></paramdef>
                 <paramdef><type>integer</type> <parameter>max_vertices=256</parameter></paramdef>
-                <paramdef choice="opt"><type>float8</type> <parameter>gridSize</parameter></paramdef>
+                <paramdef choice="opt"><type>float8</type> <parameter>gridSize = -1</parameter></paramdef>
             </funcprototype>
         </funcsynopsis>
     </refsynopsisdiv>
@@ -711,7 +711,7 @@ LINESTRING(44.7994523421035 82.5156766227011,85 85)</screen>
             <funcdef>geometry <function>ST_SymDifference</function></funcdef>
             <paramdef><type>geometry </type> <parameter>geomA</parameter></paramdef>
             <paramdef><type>geometry </type> <parameter>geomB</parameter></paramdef>
-            <paramdef choice="opt"><type>float8 </type> <parameter>gridSize</parameter></paramdef>
+            <paramdef choice="opt"><type>float8 </type> <parameter>gridSize = -1</parameter></paramdef>
           </funcprototype>
         </funcsynopsis>
       </refsynopsisdiv>
@@ -725,7 +725,7 @@ LINESTRING(44.7994523421035 82.5156766227011,85 85)</screen>
             </para>
 
             <para>
-If a gridSize argument is provided, the inputs are
+If the optional <code>gridSize</code> argument is provided, the inputs are
 snapped to a grid of the given size and all intersections are computed
 on that same grid. This method requires GEOS-3.9.0 or higher.
             </para>
@@ -975,7 +975,7 @@ MULTILINESTRING((3 4,4 5),(1 2,3 4))
           <funcprototype>
             <funcdef>geometry <function>ST_UnaryUnion</function></funcdef>
             <paramdef><type>geometry </type> <parameter>geom</parameter></paramdef>
-            <paramdef choice="opt"><type>float8 </type> <parameter>gridSize</parameter></paramdef>
+            <paramdef choice="opt"><type>float8 </type> <parameter>gridSize = -1</parameter></paramdef>
           </funcprototype>
 
         </funcsynopsis>
@@ -1003,7 +1003,7 @@ MULTILINESTRING((3 4,4 5),(1 2,3 4))
         </para>
 
         <para>
-If a gridSize argument is provided, the inputs are
+If the optional <code>gridSize</code> argument is provided, the inputs are
 snapped to a grid of the given size and all intersections are computed
 on that same grid. This method requires GEOS-3.9.0 or higher.
         </para>
diff --git a/doc/reference_processing.xml b/doc/reference_processing.xml
index 7d6f3b7..7343169 100644
--- a/doc/reference_processing.xml
+++ b/doc/reference_processing.xml
@@ -27,7 +27,7 @@ from a geometry.
                     <funcdef>geometry <function>ST_Buffer</function></funcdef>
                     <paramdef><type>geometry </type> <parameter>g1</parameter></paramdef>
                     <paramdef><type>float </type> <parameter>radius_of_buffer</parameter></paramdef>
-                    <paramdef choice="opt"><type>text </type> <parameter>buffer_style_parameters=''</parameter></paramdef>
+                    <paramdef choice="opt"><type>text </type> <parameter>buffer_style_parameters = ''</parameter></paramdef>
                   </funcprototype>
 
                   <funcprototype>

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

Summary of changes:
 doc/reference_overlay.xml    | 16 ++++++++--------
 doc/reference_processing.xml |  2 +-
 2 files changed, 9 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list