EPSG:5714

MSL height

Attributes

Unit: metre

Geodetic CRS: MSL height

Datum: Mean Sea Level

Data source: EPSG

Information source: OGP

Revision date: 2022-11-29

Scope: Hydrography, drilling.

Remarks: Approximate because not specific to any location or epoch. Users are advised to not use this generic CRS but instead use one with a specific datum origin (e.g. "Mean Sea Level at xxx during yyyy-yyyy") or defined through a specified geoid/hydroid model.

Area of use: World.

Coordinate system: Vertical CS. Axis: height (H). Orientation: up. UoM: m.

Center coordinates
0.0 0.0

Projected bounds:
-90.0 -180.0
90.0 180.0

WGS84 bounds:
-180.0 -90.0
180.0 90.0

World.
MapTiler banner

Definition: OGC Well Known Text

VERT_CS["MSL height",
    VERT_DATUM["Mean Sea Level",2005,
        AUTHORITY["EPSG","5100"]],
    UNIT["metre",1,
        AUTHORITY["EPSG","9001"]],
    AXIS["Gravity-related height",UP],
    AUTHORITY["EPSG","5714"]]

Definition: OGC Well Known Text 2 (2019)

VERTCRS["MSL height",
    VDATUM["Mean Sea Level"],
    CS[vertical,1],
        AXIS["gravity-related height (H)",up,
            LENGTHUNIT["metre",1]],
    USAGE[
        SCOPE["Hydrography, drilling."],
        AREA["World."],
        BBOX[-90,-180,90,180]],
    ID["EPSG",5714]]

Definition: ESRI Well Known Text

VERTCS["MSL_Height",
    VDATUM["Mean_Sea_Level"],
    PARAMETER["Vertical_Shift",0.0],
    PARAMETER["Direction",1.0],
    UNIT["Meter",1.0]]

Definition: PROJ.4

+vunits=m +no_defs +type=crs

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:5714","+vunits=m +no_defs +type=crs");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "VerticalCRS",
    "name": "MSL height",
    "datum": {
        "type": "VerticalReferenceFrame",
        "name": "Mean Sea Level"
    },
    "coordinate_system": {
        "subtype": "vertical",
        "axis": [
            {
                "name": "Gravity-related height",
                "abbreviation": "H",
                "direction": "up",
                "unit": "metre"
            }
        ]
    },
    "scope": "Hydrography, drilling.",
    "area": "World.",
    "bbox": {
        "south_latitude": -90,
        "west_longitude": -180,
        "north_latitude": 90,
        "east_longitude": 180
    },
    "id": {
        "authority": "EPSG",
        "code": 5714
    }
}

Definition: GeoServer

5714=VERT_CS["MSL height",VERT_DATUM["Mean Sea Level",2005,AUTHORITY["EPSG","5100"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5714"]]

Definition: MapServer - MAPfile

PROJECTION
	"vunits=m"
	"no_defs"
	"type=crs"
END

Definition: Mapnik

<?xml version="1.0" encoding="utf-8"?>
<Map srs="+vunits=m +no_defs +type=crs">
	<Layer srs="+vunits=m +no_defs +type=crs">
	</Layer>
</Map>

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 5714, 'EPSG', 5714, '+vunits=m +no_defs +type=crs', 'VERT_CS["MSL height",VERT_DATUM["Mean Sea Level",2005,AUTHORITY["EPSG","5100"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5714"]]');