EPSG:CODE

EPSG:7410 PSHD93

Compound · Oman - onshore

Export Formats

OGC WKT
COMPD_CS[
    "PSHD93",
    GEOGCS[
        "PSD93",
        DATUM[
            "PDO_Survey_Datum_1993",
            SPHEROID["Clarke 1880 (RGS)",6378249.145,293.465,AUTHORITY["EPSG","7012"]],
            AUTHORITY["EPSG","6134"]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4134"]
    ],
    VERT_CS[
        "PHD93 height",
        VERT_DATUM["PDO Height Datum 1993",2005,AUTHORITY["EPSG","5123"]],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Gravity-related height",UP],
        AUTHORITY["EPSG","5724"]
    ],
    AUTHORITY["EPSG","7410"]
]

Frequently Asked Questions

How do I add EPSG:7410 to GeoServer?

Add the following definition to your GeoServer configuration:

7410=COMPD_CS["PSHD93",GEOGCS["PSD93",DATUM["PDO_Survey_Datum_1993",SPHEROID["Clarke 1880 (RGS)",6378249.145,293.465,AUTHORITY["EPSG","7012"]],AUTHORITY["EPSG","6134"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4134"]],VERT_CS["PHD93 height",VERT_DATUM["PDO Height Datum 1993",2005,AUTHORITY["EPSG","5123"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5724"]],AUTHORITY["EPSG","7410"]]
Read the full GeoServer guide →

How do I add EPSG:7410 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (7410, 'EPSG', 7410, '+proj=longlat +a=6378249.145 +rf=293.465 +vunits=m +no_defs +type=crs', 'COMPD_CS["PSHD93",GEOGCS["PSD93",DATUM["PDO_Survey_Datum_1993",SPHEROID["Clarke 1880 (RGS)",6378249.145,293.465,AUTHORITY["EPSG","7012"]],AUTHORITY["EPSG","6134"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4134"]],VERT_CS["PHD93 height",VERT_DATUM["PDO Height Datum 1993",2005,AUTHORITY["EPSG","5123"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5724"]],AUTHORITY["EPSG","7410"]]');
Read the full PostGIS guide →

How do I add EPSG:7410 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+a=6378249.145"
  "+rf=293.465"
  "+vunits=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:7410 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:7410", "+proj=longlat +a=6378249.145 +rf=293.465 +vunits=m +no_defs +type=crs");
Read the full Proj4js guide →