aboutsummaryrefslogtreecommitdiff
path: root/data/sql
diff options
context:
space:
mode:
authorPedro Venancio <pedrongvenancio@gmail.com>2019-09-01 12:35:51 +0100
committerKristian Evers <kristianevers@gmail.com>2019-09-01 14:35:51 +0300
commit8417e703bf38237fdb9314e8101dca4e2664dcea (patch)
tree9431862a6a905e5b8bc16aa7c9e126c2e526c9d6 /data/sql
parent57ec0c2a8638b329847a7c0c76add8c8ec6e00d5 (diff)
downloadPROJ-8417e703bf38237fdb9314e8101dca4e2664dcea.tar.gz
PROJ-8417e703bf38237fdb9314e8101dca4e2664dcea.zip
Update grid_alternatives.sql (#1571)
grid_alternatives.sql: Add DLX_ETRS89_geo.gsb and D73_ETRS89_geo.gsb grids in grid_alternatives (added in proj-datumgrid-europe package per https://github.com/OSGeo/proj-datumgrid/pull/54)
Diffstat (limited to 'data/sql')
-rw-r--r--data/sql/grid_alternatives.sql32
1 files changed, 32 insertions, 0 deletions
diff --git a/data/sql/grid_alternatives.sql b/data/sql/grid_alternatives.sql
index 17701d30..ad3febed 100644
--- a/data/sql/grid_alternatives.sql
+++ b/data/sql/grid_alternatives.sql
@@ -885,3 +885,35 @@ INSERT INTO grid_alternatives(original_grid_name,
0,
'proj-datumgrid-europe',
NULL, NULL, NULL, NULL);
+
+-- Portugal
+
+INSERT INTO grid_alternatives(original_grid_name,
+ proj_grid_name,
+ proj_grid_format,
+ proj_method,
+ inverse_direction,
+ package_name,
+ url, direct_download, open_license, directory)
+ VALUES ('DLx_ETRS89_geo.gsb',
+ 'DLx_ETRS89_geo.gsb',
+ 'NTv2',
+ 'hgridshift',
+ 0,
+ 'proj-datumgrid-europe',
+ NULL, NULL, NULL, NULL);
+
+INSERT INTO grid_alternatives(original_grid_name,
+ proj_grid_name,
+ proj_grid_format,
+ proj_method,
+ inverse_direction,
+ package_name,
+ url, direct_download, open_license, directory)
+ VALUES ('D73_ETRS89_geo.gsb',
+ 'D73_ETRS89_geo.gsb',
+ 'NTv2',
+ 'hgridshift',
+ 0,
+ 'proj-datumgrid-europe',
+ NULL, NULL, NULL, NULL);