[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-582-g9e14b1d65

git at osgeo.org git at osgeo.org
Fri Feb 18 11:32:26 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  9e14b1d6556caaad41f9326f75a887c427137403 (commit)
      from  9cf58181c69f961edd6976594bbecae55d8f6e80 (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 9e14b1d6556caaad41f9326f75a887c427137403
Author: Martin Davis <mtnclimb at gmail.com>
Date:   Fri Feb 18 11:32:22 2022 -0800

    Fix doc typos

diff --git a/doc/reference_measure.xml b/doc/reference_measure.xml
index 577115939..47d15b05a 100644
--- a/doc/reference_measure.xml
+++ b/doc/reference_measure.xml
@@ -926,13 +926,14 @@ The smaller densifyFrac we specify, the more acurate Fréchet distance we get. B
             <imageobject>
                 <imagedata fileref="images/st_hausdorffdistance01.png" />
             </imageobject>
-            <caption><para>Hausdorff distance (red) and closest distance yellow)
+            <caption><para>Hausdorff distance (red) and distance (yellow)
             between two lines </para></caption>
             </mediaobject>
         </informalfigure>
 
 <programlisting>
-SELECT ST_HausdorffDistance(geomA, geomB), ST_Distance(geomA, geomB)
+SELECT ST_HausdorffDistance(geomA, geomB),
+       ST_Distance(geomA, geomB)
     FROM (SELECT 'LINESTRING (20 70, 70 60, 110 70, 170 70)'::geometry AS geomA,
                  'LINESTRING (20 90, 130 90, 60 100, 190 100)'::geometry AS geomB) AS t;
  st_hausdorffdistance | st_distance

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

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


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list