diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-06-05 22:03:00 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-06-06 15:02:58 +0200 |
| commit | cd28089a9984698b5557be1d9b868d30eaa3a893 (patch) | |
| tree | 9d113dca2e00d8d8704adc6123d30c00593956de /data/sql | |
| parent | 0383f7829792f896d233acc1676377d2fffc3cdc (diff) | |
| download | PROJ-cd28089a9984698b5557be1d9b868d30eaa3a893.tar.gz PROJ-cd28089a9984698b5557be1d9b868d30eaa3a893.zip | |
createFromUserInput(): support OGC URN to create projectedCRS, for example to instanciate a projected 3D CRS
Diffstat (limited to 'data/sql')
| -rw-r--r-- | data/sql/customizations.sql | 6 |
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'); |
