EPSG:5713

CGVD28 height

Attributes

MapTiler banner

Definition: OGC Well Known Text

VERT_CS["CGVD28 height",
    VERT_DATUM["Canadian Geodetic Vertical Datum of 1928",2005,
        AUTHORITY["EPSG","5114"]],
    UNIT["metre",1,
        AUTHORITY["EPSG","9001"]],
    AXIS["Gravity-related height",UP],
    AUTHORITY["EPSG","5713"]]

Definition: OGC Well Known Text 2 (2019)

VERTCRS["CGVD28 height",
    VDATUM["Canadian Geodetic Vertical Datum of 1928"],
    CS[vertical,1],
        AXIS["gravity-related height (H)",up,
            LENGTHUNIT["metre",1]],
    USAGE[
        SCOPE["Geodesy, engineering survey."],
        AREA["Canada - onshore - Alberta; British Columbia; Manitoba south of 59°N; New Brunswick; Newfoundland, Labrador between 52°50’N and 54°30’N; Northwest Territories south west of a line between 60°40’N, 110°W and the coast at 132°W; Nova Scotia; Ontario south of 52°20'N; Prince Edward Island; Quebec - mainland south of 55°N and west of 64°W, north of 55°N between 70°W and 66°W, coastal area between 66°W and 64°W, and Anticosta island; Saskatchewan south of 58°30’N; Yukon."],
        BBOX[41.67,-141.01,69.81,-52.54]],
    ID["EPSG",5713]]

Definition: ESRI Well Known Text

VERTCS["CGVD_1928",
    VDATUM["Canadian_Geodetic_Vertical_Datum_of_1928"],
    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:5713","+vunits=m +no_defs +type=crs");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "VerticalCRS",
    "name": "CGVD28 height",
    "datum": {
        "type": "VerticalReferenceFrame",
        "name": "Canadian Geodetic Vertical Datum of 1928"
    },
    "coordinate_system": {
        "subtype": "vertical",
        "axis": [
            {
                "name": "Gravity-related height",
                "abbreviation": "H",
                "direction": "up",
                "unit": "metre"
            }
        ]
    },
    "scope": "Geodesy, engineering survey.",
    "area": "Canada - onshore - Alberta; British Columbia; Manitoba south of 59°N; New Brunswick; Newfoundland, Labrador between 52°50’N and 54°30’N; Northwest Territories south west of a line between 60°40’N, 110°W and the coast at 132°W; Nova Scotia; Ontario south of 52°20'N; Prince Edward Island; Quebec - mainland south of 55°N and west of 64°W, north of 55°N between 70°W and 66°W, coastal area between 66°W and 64°W, and Anticosta island; Saskatchewan south of 58°30’N; Yukon.",
    "bbox": {
        "south_latitude": 41.67,
        "west_longitude": -141.01,
        "north_latitude": 69.81,
        "east_longitude": -52.54
    },
    "id": {
        "authority": "EPSG",
        "code": 5713
    }
}

Definition: GeoServer

5713=VERT_CS["CGVD28 height",VERT_DATUM["Canadian Geodetic Vertical Datum of 1928",2005,AUTHORITY["EPSG","5114"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5713"]]

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 ( 5713, 'EPSG', 5713, '+vunits=m +no_defs +type=crs', 'VERT_CS["CGVD28 height",VERT_DATUM["Canadian Geodetic Vertical Datum of 1928",2005,AUTHORITY["EPSG","5114"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5713"]]');