diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-02-21 00:40:08 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-02-21 11:48:29 +0100 |
| commit | 6d6ee7fa7d35bf57d1781136102f971cb0ac33d2 (patch) | |
| tree | 922867e57905d51cc8ebaf91c8e1c3c12842ec83 /data/sql | |
| parent | 2620701a4bb51a20d49e869acddce2167ba791d0 (diff) | |
| download | PROJ-6d6ee7fa7d35bf57d1781136102f971cb0ac33d2.tar.gz PROJ-6d6ee7fa7d35bf57d1781136102f971cb0ac33d2.zip | |
proj.db: add entries in grid_alternatives table for Oceania grids
Diffstat (limited to 'data/sql')
| -rw-r--r-- | data/sql/grid_alternatives.sql | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/data/sql/grid_alternatives.sql b/data/sql/grid_alternatives.sql index 6cee2aca..dfeb1251 100644 --- a/data/sql/grid_alternatives.sql +++ b/data/sql/grid_alternatives.sql @@ -26,6 +26,12 @@ INSERT INTO grid_packages VALUES ('proj-datumgrid-europe', 1, 1); +INSERT INTO grid_packages VALUES ('proj-datumgrid-oceania', + 'Package with grids of interest for Oceania', + 'https://download.osgeo.org/proj/proj-datumgrid-oceania-latest.zip', + 1, + 1); + -- not released yet at the time of writing INSERT INTO grid_packages VALUES ('proj-datumgrid-world', 'Package with grids of global extent (too large to be included in proj-datumgrid)', @@ -661,3 +667,68 @@ INSERT INTO grid_alternatives(original_grid_name, 1, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); + + +---------------------------- +-- Australian grids +---------------------------- + +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 ('A66 National (13.09.01).gsb', + 'A66_National_13_09_01.gsb', + 'NTv2', + 'hgridshift', + 0, + 'proj-datumgrid-oceania', + 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 ('National 84 (02.07.01).gsb', + 'National_84_02_07_01.gsb', + 'NTv2', + 'hgridshift', + 0, + 'proj-datumgrid-oceania', + 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 ('GDA94_GDA2020_conformal.gsb', + 'GDA94_GDA2020_conformal.gsb', + 'NTv2', + 'hgridshift', + 0, + 'proj-datumgrid-oceania', + 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 ('GDA94_GDA2020_conformal_and_distortion.gsb', + 'GDA94_GDA2020_conformal_and_distortion.gsb', + 'NTv2', + 'hgridshift', + 0, + 'proj-datumgrid-oceania', + NULL, NULL, NULL, NULL); |
