[SCM] PostGIS branch master updated. 3.6.0rc2-139-g8a5acc9a1

git at osgeo.org git at osgeo.org
Fri Oct 17 09:57:22 PDT 2025


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  8a5acc9a1b5945db2d50f7126479e74eb2b6eb71 (commit)
      from  74d24bc78383f8e021cd6300b5aec1d7278b5487 (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 8a5acc9a1b5945db2d50f7126479e74eb2b6eb71
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Fri Oct 17 09:57:10 2025 -0700

    Break up examples in ST_LineMerge, closes #5842

diff --git a/doc/reference_processing.xml b/doc/reference_processing.xml
index 80c16af3f..8f5fd34b9 100644
--- a/doc/reference_processing.xml
+++ b/doc/reference_processing.xml
@@ -1468,6 +1468,8 @@ FROM test;
 
 		<refsection>
 			<title>Examples</title>
+      <refsect1>
+        <title>Cardinality 2</title>
       <para>
           <informalfigure>
               <mediaobject>
@@ -1476,7 +1478,7 @@ FROM test;
                     </imageobject>
 
                     <caption>
-                        <para>Merging lines with different orientation.
+                        <para>Nodes with cardinality 2 are merged away.
                         </para>
                     </caption>
               </mediaobject>
@@ -1488,7 +1490,9 @@ FROM test;
 --------------------------------------------
  LINESTRING(10 160,60 120,120 140,180 120)
 </programlisting>
-
+</refsect1>
+<refsect1>
+<title>Cardinality 3 or More</title>
       <para>
           <informalfigure>
               <mediaobject>
@@ -1509,7 +1513,10 @@ FROM test;
 --------------------------------------------
  MULTILINESTRING((10 160,60 120,120 140),(100 180,120 140),(120 140,180 120))
 </programlisting>
+</refsect1>
 
+<refsect1>
+  <title>Non-Touching Lines</title>
 <para>If merging is not possible due to non-touching lines,
 the original MultiLineString is returned.</para>
 <programlisting>
@@ -1519,7 +1526,10 @@ SELECT ST_AsText(ST_LineMerge(
 ----------------
 MULTILINESTRING((-45.2 -33.2,-46 -32),(-29 -27,-30 -29.7,-36 -31,-45 -33))
 </programlisting>
+</refsect1>
 
+<refsect1>
+  <title>Directed Parameter</title>
 <para>
 	<informalfigure>
 		<mediaobject>
@@ -1539,15 +1549,18 @@ TRUE));
 -------------------------------------------------------
  MULTILINESTRING((120 50,60 30,10 70),(120 50,180 30))
 </programlisting>
+</refsect1>
 
-<para>Example showing Z-dimension handling.</para>
+<refsect1>
+<title>Z-dimension Handling</title>
 <programlisting>
 SELECT ST_AsText(ST_LineMerge(
       'MULTILINESTRING((-29 -27 11,-30 -29.7 10,-36 -31 5,-45 -33 6), (-29 -27 12,-30 -29.7 5), (-45 -33 1,-46 -32 11))'
         ));
---------------------------------------------------------------------------------------------------
+---------------------------------------------------------------------------------
 LINESTRING Z (-30 -29.7 5,-29 -27 11,-30 -29.7 10,-36 -31 5,-45 -33 1,-46 -32 11)
 </programlisting>
+</refsect1>
 		</refsection>
 		<refsection>
 			<title>See Also</title>

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list