diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-09-09 22:41:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-09 22:41:00 +0200 |
| commit | ca7f41d0c4605a3b07899eb7b5c9826f2c18aefc (patch) | |
| tree | ffa4b0a56d311da280eea023201133924d38b615 /data/sql | |
| parent | 7c2718623dd6607f49b557cd065aece9a4a00255 (diff) | |
| parent | eb2705fb9381ba3ce8a9791b1812c1c9e32545b5 (diff) | |
| download | PROJ-ca7f41d0c4605a3b07899eb7b5c9826f2c18aefc.tar.gz PROJ-ca7f41d0c4605a3b07899eb7b5c9826f2c18aefc.zip | |
Merge pull request #2350 from rouault/ogc_crs27_crs83
Database: add OGC:CRS27 and OGC:CRS83 CRS entries for NAD27 and NAD83 in longitude, latitude order
Diffstat (limited to 'data/sql')
| -rw-r--r-- | data/sql/customizations.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/data/sql/customizations.sql b/data/sql/customizations.sql index fde530da..0a299367 100644 --- a/data/sql/customizations.sql +++ b/data/sql/customizations.sql @@ -20,10 +20,15 @@ INSERT INTO grid_alternatives(original_grid_name, 'https://cdn.proj.org/au_ga_AUSGeoid98.tif', 1, 1, NULL FROM grid_transformation WHERE grid_name LIKE '%DAT.htm' AND name LIKE 'GDA94 to AHD height%'; +-- OGC CRS84, CRS27 and CRS83 longitude/latitude ordered CRS INSERT INTO "geodetic_crs" VALUES('OGC','CRS84','WGS 84 (CRS84)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6326','EPSG','1262',NULL,0); +INSERT INTO "geodetic_crs" VALUES('OGC','CRS27','NAD27 (CRS27)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6267','EPSG','1349',NULL,0); +INSERT INTO "geodetic_crs" VALUES('OGC','CRS83','NAD83 (CRS83)',NULL,NULL,'geographic 2D','EPSG','6424','EPSG','6269','EPSG','1350',NULL,0); INSERT INTO "other_transformation" VALUES('PROJ','CRS84_TO_EPSG_4326','OGC:CRS84 to WGS 84',NULL,NULL,'EPSG','9843','Axis Order Reversal (2D)','OGC','CRS84','EPSG','4326','EPSG','1262',0.0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); +INSERT INTO "other_transformation" VALUES('PROJ','CRS27_TO_EPSG_4267','OGC:CRS27 to NAD27',NULL,NULL,'EPSG','9843','Axis Order Reversal (2D)','OGC','CRS27','EPSG','4267','EPSG','1262',0.0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); +INSERT INTO "other_transformation" VALUES('PROJ','CRS83_TO_EPSG_4269','OGC:CRS83 to NAD83',NULL,NULL,'EPSG','9843','Axis Order Reversal (2D)','OGC','CRS83','EPSG','4269','EPSG','1262',0.0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0); -- Temporary entry for NZGD2000 deformation model INSERT INTO other_transformation VALUES( |
