aboutsummaryrefslogtreecommitdiff
path: root/data/sql/customizations.sql
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-06-06 21:34:49 +0200
committerGitHub <noreply@github.com>2019-06-06 21:34:49 +0200
commit6aab9a71395ca05ccf109ae979611eeff265cfaf (patch)
tree8dd723f95b1d54648d01212d97637c572aa2ac1d /data/sql/customizations.sql
parent489ac4b2f4918b36185e01ec5c07e5251f92d11e (diff)
parentcd28089a9984698b5557be1d9b868d30eaa3a893 (diff)
downloadPROJ-6aab9a71395ca05ccf109ae979611eeff265cfaf.tar.gz
PROJ-6aab9a71395ca05ccf109ae979611eeff265cfaf.zip
Merge pull request #1505 from rouault/ogc_urn_projectedCRS
createFromUserInput(): support OGC URN to create projectedCRS, for example to instanciate a projected 3D CRS
Diffstat (limited to 'data/sql/customizations.sql')
-rw-r--r--data/sql/customizations.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/data/sql/customizations.sql b/data/sql/customizations.sql
index b9fcac31..5e038de4 100644
--- a/data/sql/customizations.sql
+++ b/data/sql/customizations.sql
@@ -59,3 +59,9 @@ INSERT INTO "ellipsoid" VALUES('PROJ','WGS60','WGS 60',NULL,'PROJ','EARTH',63781
-- Extra ellipsoids from IAU2000 dictionary (see https://github.com/USGS-Astrogeology/GDAL_scripts/blob/master/OGC_IAU2000_WKT_v2/naifcodes_radii_m_wAsteroids_IAU2000.csv)
INSERT INTO "ellipsoid" VALUES('PROJ','EARTH2000','Earth2000',NULL,'PROJ','EARTH',6378140.0,'EPSG','9001',NULL,6356750.0,0);
+
+-- Coordinate system ENh for ProjectedCRS 3D. Should be removed once EPSG has such a coordinate system
+INSERT INTO "coordinate_system" VALUES('PROJ','ENh','Cartesian',3);
+INSERT INTO "axis" VALUES('PROJ','1','Easting','E','east','PROJ','ENh',1,'EPSG','9001');
+INSERT INTO "axis" VALUES('PROJ','2','Northing','N','north','PROJ','ENh',2,'EPSG','9001');
+INSERT INTO "axis" VALUES('PROJ','3','Ellipsoidal height','h','up','PROJ','ENh',2,'EPSG','9001');