EPSG:CODE

EPSG:6893 WGS 84 / World Mercator + EGM2008 height

Compound · World - between 80°S and 84°N

Export Formats

OGC WKT
COMPD_CS[
    "WGS 84 / World Mercator + EGM2008 height",
    PROJCS[
        "WGS 84 / World Mercator",
        GEOGCS[
            "WGS 84",
            DATUM[
                "WGS_1984",
                SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],
                AUTHORITY["EPSG","6326"]
            ],
            PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
            UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
            AUTHORITY["EPSG","4326"]
        ],
        PROJECTION["Mercator_1SP"],
        PARAMETER["central_meridian",0],
        PARAMETER["scale_factor",1],
        PARAMETER["false_easting",0],
        PARAMETER["false_northing",0],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Easting",EAST],
        AXIS["Northing",NORTH],
        AUTHORITY["EPSG","3395"]
    ],
    VERT_CS[
        "EGM2008 height",
        VERT_DATUM["EGM2008 geoid",2005,AUTHORITY["EPSG","1027"]],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Gravity-related height",UP],
        AUTHORITY["EPSG","3855"]
    ],
    AUTHORITY["EPSG","6893"]
]

Frequently Asked Questions

How do I add EPSG:6893 to GeoServer?

Add the following definition to your GeoServer configuration:

6893=COMPD_CS["WGS 84 / World Mercator + EGM2008 height",PROJCS["WGS 84 / World Mercator",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Mercator_1SP"],PARAMETER["central_meridian",0],PARAMETER["scale_factor",1],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","3395"]],VERT_CS["EGM2008 height",VERT_DATUM["EGM2008 geoid",2005,AUTHORITY["EPSG","1027"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","3855"]],AUTHORITY["EPSG","6893"]]
Read the full GeoServer guide →

How do I add EPSG:6893 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (6893, 'EPSG', 6893, '+proj=merc +lon_0=0 +k=1 +x_0=0 +y_0=0 +datum=WGS84 +units=m +vunits=m +no_defs +type=crs', 'COMPD_CS["WGS 84 / World Mercator + EGM2008 height",PROJCS["WGS 84 / World Mercator",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Mercator_1SP"],PARAMETER["central_meridian",0],PARAMETER["scale_factor",1],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","3395"]],VERT_CS["EGM2008 height",VERT_DATUM["EGM2008 geoid",2005,AUTHORITY["EPSG","1027"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","3855"]],AUTHORITY["EPSG","6893"]]');
Read the full PostGIS guide →

How do I add EPSG:6893 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=merc"
  "+lon_0=0"
  "+k=1"
  "+x_0=0"
  "+y_0=0"
  "+datum=WGS84"
  "+units=m"
  "+vunits=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:6893 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:6893", "+proj=merc +lon_0=0 +k=1 +x_0=0 +y_0=0 +datum=WGS84 +units=m +vunits=m +no_defs +type=crs");
Read the full Proj4js guide →