diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-06-25 21:02:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-25 21:02:00 +0200 |
| commit | 847c09cccf04c9592ed6271d09b846a152c1587c (patch) | |
| tree | a5366dcaf52accbc2f5a8179f1d5f9a3d6e930f4 /data/sql | |
| parent | 68005307f46b635148992b9720d9344147ca6e5f (diff) | |
| parent | 7a131de134e40c73795c7d2c1834bee1e45b16a6 (diff) | |
| download | PROJ-847c09cccf04c9592ed6271d09b846a152c1587c.tar.gz PROJ-847c09cccf04c9592ed6271d09b846a152c1587c.zip | |
grid_alternatives.sql: add the two Swisstopo grids (refs https:… (#1531)
grid_alternatives.sql: add the two Swisstopo grids (refs https://github.com/OSGeo/proj-datumgrid/pull/53)
Diffstat (limited to 'data/sql')
| -rw-r--r-- | data/sql/grid_alternatives.sql | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/data/sql/grid_alternatives.sql b/data/sql/grid_alternatives.sql index cf1e559d..17701d30 100644 --- a/data/sql/grid_alternatives.sql +++ b/data/sql/grid_alternatives.sql @@ -853,3 +853,35 @@ INSERT INTO grid_alternatives(original_grid_name, 0, 'proj-datumgrid-europe', NULL, NULL, NULL, NULL); + +-- Switzerland + +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 ('CHENyx06a.gsb', + 'CHENyx06a.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 ('CHENyx06_ETRS.gsb', + 'CHENyx06_ETRS.gsb', + 'NTv2', + 'hgridshift', + 0, + 'proj-datumgrid-europe', + NULL, NULL, NULL, NULL); |
