[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 3.0.1-2-g2c8d543

git at osgeo.org git at osgeo.org
Mon Feb 24 03:07:24 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, stable-3.0 has been updated
       via  2c8d543a2fc217eb79374df3df2691bdcbf364bb (commit)
      from  7c84b2c0e352fae697c916f54f9e39395829a5fc (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 2c8d543a2fc217eb79374df3df2691bdcbf364bb
Author: Raúl Marín <git at rmr.ninja>
Date:   Mon Feb 24 11:54:27 2020 +0100

    regress_proj: Avoid testing with points out of the srs boundaries
    
    The behaviour has changed in PROJ 7 and it now returns an error
    (before it returned 'Infinity Infinity').
    
    Closes #4642

diff --git a/regress/core/regress_proj.sql b/regress/core/regress_proj.sql
index 411d1b9..70ea5ed 100644
--- a/regress/core/regress_proj.sql
+++ b/regress/core/regress_proj.sql
@@ -63,5 +63,5 @@ SELECT 13, count(*) FROM
 (
     SELECT ST_Transform('SRID=4326; POINT(0 0)'::geometry, srid) AS g
     FROM
-        ( SELECT srid FROM spatial_ref_sys LIMIT 150 ) _a
+        ( Select srid from spatial_ref_sys where srid IN (3819,  3821,  3824,  3889,  3906,  4001,  4002,  4003,  4004,  4005,  4006,  4007,  4008,  4009,  4010,  4011,  4012,  4013,  4014,  4015,  4016,  4018,  4019,  4020,  4021,  4022,  4023,  4024,  4025,  4027,  4028,  4029,  4030,  4031,  4032,  4033,  4034,  4035,  4036,  4041,  4042,  4043,  4044,  4045,  4046,  4047,  4052,  4053,  4054,  4055,  4075,  4081,  4120,  4121,  4122,  4123,  4124,  4125,  4126,  4127,  4128,  4129,  4130,  4131,  4132,  4133,  4134,  4135,  4139,  4140,  4141,  4142,  4143,  4144,  4145,  4146,  4147,  4148,  4149,  4150,  4151,  4152,  4153,  4154,  4155,  4156,  4157,  4158,  4159,  4160,  4161,  4162,  4163,  4164,  4165,  4166,  4167,  4168,  4169,  4170,  4171,  4172,  4173,  4174,  4175,  4176,  4178,  4179,  4180,  4181,  4182,  4183,  4184,  4185,  4188,  4189,  4190,  4191,  4192,  4193,  4194,  4195,  4196,  4197,  4198,  4199,  4200,  4201,  4202,  4203,  4204,  4205,  4206,  4207,  4
 208,  4209,  4210,  4211,  4212,  4213,  4214,  4215,  4216,  4218,  4219,  4220,  4221)) _a
 ) _b WHERE g IS NOT NULL;
diff --git a/regress/core/regress_proj_expected b/regress/core/regress_proj_expected
index b8b5160..73058e6 100644
--- a/regress/core/regress_proj_expected
+++ b/regress/core/regress_proj_expected
@@ -11,4 +11,4 @@ ERROR:  ST_Transform: Input geometry has unknown (0) SRID
 10|POINT(574600 5316780)
 11|SRID=100001;POINT(574600 5316780)
 ERROR:  could not parse proj string 'invalid projection'
-13|150
+13|147

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

Summary of changes:
 regress/core/regress_proj.sql      | 2 +-
 regress/core/regress_proj_expected | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list