aboutsummaryrefslogtreecommitdiff
path: root/data/sql/proj_db_table_defs.sql
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-05-25 15:59:19 +0200
committerGitHub <noreply@github.com>2020-05-25 15:59:19 +0200
commitcfdd474dd8aef197297c488c6133f7484fe421fd (patch)
tree8105eeac022527c7c35a209f78af8683833c0f58 /data/sql/proj_db_table_defs.sql
parent5d502d356e16ef81f481eb82dcdeba0ea3ab1f9e (diff)
parentbf50f76e1d1e45d65b79229c060fe66df8ef289c (diff)
downloadPROJ-cfdd474dd8aef197297c488c6133f7484fe421fd.tar.gz
PROJ-cfdd474dd8aef197297c488c6133f7484fe421fd.zip
Merge pull request #2238 from rouault/update_to_epsg_9_8_11
Update to EPSG 9.8.11, ESRI 10.8.1 and import scope and remarks for conversion
Diffstat (limited to 'data/sql/proj_db_table_defs.sql')
-rw-r--r--data/sql/proj_db_table_defs.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/data/sql/proj_db_table_defs.sql b/data/sql/proj_db_table_defs.sql
index 2d820d20..3c70b384 100644
--- a/data/sql/proj_db_table_defs.sql
+++ b/data/sql/proj_db_table_defs.sql
@@ -1367,7 +1367,8 @@ CREATE TABLE supersession(
'helmert_transformation', 'other_transformation', 'concatenated_operation')),
replacement_auth_name TEXT NOT NULL,
replacement_code TEXT NOT NULL,
- source TEXT
+ source TEXT,
+ same_source_target_crs BOOLEAN NOT NULL CHECK (same_source_target_crs IN (0, 1)) -- for transformations, whether the (source_crs, target_crs) of the replacement transfrm is the same as the superseded one
);
CREATE INDEX idx_supersession ON supersession(superseded_table_name, superseded_auth_name, superseded_code);