aboutsummaryrefslogtreecommitdiff
path: root/data/sql/proj_db_table_defs.sql
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2020-01-30 11:08:49 +0100
committerGitHub <noreply@github.com>2020-01-30 11:08:49 +0100
commit91c40b654bb2b07ae79367a683e45c86d29ba0a4 (patch)
tree69a55fe57d65fdd604b9c03aab0b9003489a5e3c /data/sql/proj_db_table_defs.sql
parent3ab34eb940302bb564968309a3dfc4c3050e9c3e (diff)
parent6f6c53c8553541690a16775ab2c92f7703196e59 (diff)
downloadPROJ-91c40b654bb2b07ae79367a683e45c86d29ba0a4.tar.gz
PROJ-91c40b654bb2b07ae79367a683e45c86d29ba0a4.zip
Merge pull request #1897 from rouault/map_geocentric_translation_method
Add EPSG records for 'Geocentric translation by Grid Interpolation (IGN)' (gr3df97a.txt) and map them to new +proj=xyzgridshift
Diffstat (limited to 'data/sql/proj_db_table_defs.sql')
-rw-r--r--data/sql/proj_db_table_defs.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/sql/proj_db_table_defs.sql b/data/sql/proj_db_table_defs.sql
index 8de27a48..b820b207 100644
--- a/data/sql/proj_db_table_defs.sql
+++ b/data/sql/proj_db_table_defs.sql
@@ -1103,7 +1103,7 @@ CREATE TABLE grid_alternatives(
CONSTRAINT fk_grid_alternatives_grid_packages FOREIGN KEY (package_name) REFERENCES grid_packages(package_name),
CONSTRAINT check_grid_alternatives_grid_fromat CHECK (proj_grid_format IN ('GTiff', 'GTX', 'NTv2')),
- CONSTRAINT check_grid_alternatives_proj_method CHECK (proj_method IN ('hgridshift', 'vgridshift', 'geoid_like')),
+ CONSTRAINT check_grid_alternatives_proj_method CHECK (proj_method IN ('hgridshift', 'vgridshift', 'geoid_like', 'geocentricoffset')),
CONSTRAINT check_grid_alternatives_inverse_direction CHECK (NOT(proj_method = 'geoid_like' AND inverse_direction = 1)),
CONSTRAINT check_grid_alternatives_package_name CHECK (package_name IS NULL),
CONSTRAINT check_grid_alternatives_direct_download_url CHECK (NOT(direct_download IS NULL AND url IS NOT NULL)),