aboutsummaryrefslogtreecommitdiff
path: root/data/sql/commit.sql
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2021-02-11 11:06:49 +0100
committerEven Rouault <even.rouault@spatialys.com>2021-02-11 11:06:49 +0100
commitd3a6ca45adc0b3303a599612070535e4cb600662 (patch)
tree9f26f7e915bc2c1da54b1537170b6b7b31532500 /data/sql/commit.sql
parent93d2571d56d63bd0d2904ad7d0c7c51dc702ca33 (diff)
downloadPROJ-d3a6ca45adc0b3303a599612070535e4cb600662.tar.gz
PROJ-d3a6ca45adc0b3303a599612070535e4cb600662.zip
Database: update to EPSG v10.014
Diffstat (limited to 'data/sql/commit.sql')
-rw-r--r--data/sql/commit.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/sql/commit.sql b/data/sql/commit.sql
index f3fcc69a..48dc4150 100644
--- a/data/sql/commit.sql
+++ b/data/sql/commit.sql
@@ -184,13 +184,13 @@ FOR EACH ROW BEGIN
SELECT RAISE(ABORT, 'missing au_ga_AUSGeoid98.tif')
WHERE NOT EXISTS(SELECT 1 FROM grid_alternatives WHERE proj_grid_name = 'au_ga_AUSGeoid98.tif');
- -- clause because of buggy entries in EPSG 10.013
+ -- clause because of buggy entries in EPSG 10.014
SELECT RAISE(ABORT, 'invalid Geog3D to Geog2D + GravityRelatedHeight (foo) entries: target CRS is not a compound CRS')
WHERE EXISTS (SELECT 1 FROM grid_transformation gt WHERE
method_auth_name = 'EPSG' AND method_code IN ('1088', '1089', '1090', '1091', '1092', '1093', '1094', '1095', '1096', '1097', '1098', '1103') AND
gt.deprecated = 0 AND
NOT EXISTS (SELECT 1 FROM compound_crs c WHERE gt.target_crs_code = c.code AND gt.target_crs_auth_name = c.auth_name) AND
- NOT (gt.auth_name = 'EPSG' AND gt.code IN ('9610', '9613', '9619', '9633'))
+ NOT (gt.auth_name = 'EPSG' AND gt.code IN ('9627'))
);
END;