diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-10-24 17:14:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-24 17:14:35 +0200 |
| commit | eb1eee51abed30f2b87fea03a19116960fd2e887 (patch) | |
| tree | 224cbdfb1e49c2fc85b9591c086679609f97f866 /data/sql/grid_transformation_custom.sql | |
| parent | f27c3d3c2eb261732b4b3b0257564164339f0150 (diff) | |
| parent | 3fc4b3d4a9a1a0fac51846b1b688ebede4f677fd (diff) | |
| download | PROJ-eb1eee51abed30f2b87fea03a19116960fd2e887.tar.gz PROJ-eb1eee51abed30f2b87fea03a19116960fd2e887.zip | |
Merge pull request #2393 from hernando/japanese-geoid
Added transformation from JGD2011 Geographic 3D to JGD2011 height using GSIGEO2011
Diffstat (limited to 'data/sql/grid_transformation_custom.sql')
| -rw-r--r-- | data/sql/grid_transformation_custom.sql | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/data/sql/grid_transformation_custom.sql b/data/sql/grid_transformation_custom.sql index cb8c757a..cd72fada 100644 --- a/data/sql/grid_transformation_custom.sql +++ b/data/sql/grid_transformation_custom.sql @@ -147,3 +147,25 @@ INSERT INTO "usage" VALUES( 'EPSG','1120', -- area of use: Iceland - onshore and offshore 'EPSG','1024' -- unknown ); + +-- Japan + +INSERT INTO "grid_transformation" VALUES( + 'PROJ','EPSG_6667_TO_EPSG_6695','JDG2011 to JGD2011 height', + NULL, + 'EPSG','9665','Geographic3D to GravityRelatedHeight (gtx)', + 'EPSG','6667', -- source CRS (JDG2011) + 'EPSG','6695', -- target CRS (JDG2011 (vertical) height) + NULL, + 'EPSG','8666','Geoid (height correction) model file','jp_gsi_gsigeo2011_mainland.tif', + NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); + +INSERT INTO "usage" VALUES( + 'PROJ', + 'EPSG_6667_TO_EPSG_6695_USAGE', + 'grid_transformation', + 'PROJ', + 'EPSG_6667_TO_EPSG_6695', + 'EPSG','3263', -- area of use: Japan - onshore mainland + 'EPSG','1024' -- unknown +); |
