[SCM] PostGIS branch stable-3.4 updated. 3.4.0-74-gca035b901

git at osgeo.org git at osgeo.org
Sun Nov 19 23:26:24 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, stable-3.4 has been updated
       via  ca035b9017295a7e67bd68465e90e2b3c2b84709 (commit)
       via  f248d88df3058c3fa612cdfd9196a0435fbca165 (commit)
       via  48e4e2792759b5dabd8eb63cccf00aa8d2f7513f (commit)
       via  9ee1b1bfc0f037df9321233a7f3a9d2a6d31378e (commit)
      from  7d99993edaf832f611217a4a11c28647750003dc (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 ca035b9017295a7e67bd68465e90e2b3c2b84709
Author: Regina Obe <lr at pcorp.us>
Date:   Mon Nov 20 02:26:14 2023 -0500

    More Prep 3.4.1

diff --git a/NEWS b/NEWS
index 5e509f53b..089f3faeb 100644
--- a/NEWS
+++ b/NEWS
@@ -42,6 +42,8 @@ To take advantage of all SFCGAL featurs, SFCGAL 1.4.1+ is needed.
  - #5603, [postgis_tiger_geocoder] Change to load 2023 Census Tiger/Line (Regina Obe)
  - #5525, [postgis_tiger_geocoder],[postgis_topology] Regression failure
           when installed by non-superuser (Regina Obe, Sandro Santilli)
+ - #5581, ST_Project(geometry, float, float) is using
+          longitudes as latitudes (Regina obe)
 
 * Enhancements *
 
diff --git a/doc/release_notes.xml b/doc/release_notes.xml
index 82c0f85e5..5dac486e5 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -47,6 +47,8 @@
                 <para><ulink url="https://trac.osgeo.org/postgis/ticket/5603">5603</ulink>, [postgis_tiger_geocoder] Change to load 2023 Census Tiger/Line (Regina Obe)</para>
                 <para><ulink url="https://trac.osgeo.org/postgis/ticket/5525">5525</ulink>, [postgis_tiger_geocoder],[postgis_topology] Regression failure
                         when installed by non-superuser (Regina Obe, Sandro Santilli)</para>
+                <para><ulink url="https://trac.osgeo.org/postgis/ticket/5581">5581</ulink>, ST_Project(geometry, float, float) is using
+          longitudes as latitudes (Regina obe)</para>
              </simplesect>
 
             <simplesect>

commit f248d88df3058c3fa612cdfd9196a0435fbca165
Author: Regina Obe <lr at pcorp.us>
Date:   Mon Nov 20 02:22:41 2023 -0500

    Remove invalid doc note on ST_SetBandPath.  Closes #5609 for PostGIS 3.4.1

diff --git a/doc/reference_raster.xml b/doc/reference_raster.xml
index ff8cd669a..be1d15b8a 100644
--- a/doc/reference_raster.xml
+++ b/doc/reference_raster.xml
@@ -7698,12 +7698,6 @@ select st_bandisnodata(rast, 1) from dummy_rast where rid = 1; -- Expected true
                     </para>
                 </note>
 
-                <note>
-                    <para>
-                        Internally, this method replaces the PostGIS raster's band at index <varname>band</varname> with a new band instead of updating the existing path information.
-                    </para>
-                </note>
-
                 <para role="availability" conformance="2.5.0">Availability: 2.5.0</para>
             </refsection>
 

commit 48e4e2792759b5dabd8eb63cccf00aa8d2f7513f
Author: Regina Obe <lr at pcorp.us>
Date:   Mon Nov 20 02:11:03 2023 -0500

    Fix ST_Project lon,lon issue. Closes #5581 for PostGIS 3.4.1

diff --git a/liblwgeom/measures.c b/liblwgeom/measures.c
index 3469d29d7..3e255f9ec 100644
--- a/liblwgeom/measures.c
+++ b/liblwgeom/measures.c
@@ -2487,7 +2487,7 @@ project_pt(const POINT2D *P, double distance, double azimuth, POINT2D *R)
 	double dx = cos(slope) * distance;
 	double dy = sin(slope) * distance;
 	R->x = P->x + dx;
-	R->y = P->x + dy;
+	R->y = P->y + dy;
 	return LW_TRUE;
 }
 

commit 9ee1b1bfc0f037df9321233a7f3a9d2a6d31378e
Author: Regina Obe <lr at pcorp.us>
Date:   Mon Nov 20 01:12:23 2023 -0500

    Fix ST_LineExtend example references #5594 for PostGIS 3.4.1

diff --git a/doc/reference_editor.xml b/doc/reference_editor.xml
index b67916a71..1b6edf173 100644
--- a/doc/reference_editor.xml
+++ b/doc/reference_editor.xml
@@ -1278,9 +1278,9 @@ SELECT ST_AsText(ST_Multi('POLYGON ((10 30, 30 30, 30 10, 10 10, 10 30))'));
             <title>Example: Projected point at 100,000 meters and bearing 45 degrees </title>
 
 <programlisting>
-SELECT ST_AsText(ST_Project('POINT(0 0)'::geography, 100000, radians(45.0)));
+SELECT ST_AsText(ST_LineExtend('LINESTRING(0 0, 0 10)'::geometry, 5, 6));
 --------------------------------------------
- POINT(0.635231029125537 0.639472334729198)
+LINESTRING(0 -5,0 0,0 10,0 15)
 </programlisting>
           </refsection>
 

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

Summary of changes:
 NEWS                     | 2 ++
 doc/reference_editor.xml | 4 ++--
 doc/reference_raster.xml | 6 ------
 doc/release_notes.xml    | 2 ++
 liblwgeom/measures.c     | 2 +-
 5 files changed, 7 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list