EPSG:CODE

EPSG:5702 NGVD29 height (ftUS)

Vertical · USA - CONUS - onshore

Export Formats

OGC WKT
VERT_CS[
    "NGVD29 height (ftUS)",
    VERT_DATUM[
        "National Geodetic Vertical Datum 1929",
        2005,
        AUTHORITY["EPSG","5102"]
    ],
    UNIT["US survey foot",0.304800609601219,AUTHORITY["EPSG","9003"]],
    AXIS["Gravity-related height",UP],
    AUTHORITY["EPSG","5702"]
]

Related Coordinate Systems

Available Transformations (6)

Other CRS using National Geodetic Vertical Datum 1929

Frequently Asked Questions

How do I add EPSG:5702 to GeoServer?

Add the following definition to your GeoServer configuration:

5702=VERT_CS["NGVD29 height (ftUS)",VERT_DATUM["National Geodetic Vertical Datum 1929",2005,AUTHORITY["EPSG","5102"]],UNIT["US survey foot",0.304800609601219,AUTHORITY["EPSG","9003"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5702"]]
Read the full GeoServer guide →

How do I add EPSG:5702 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (5702, 'EPSG', 5702, '+vunits=us-ft +no_defs +type=crs', 'VERT_CS["NGVD29 height (ftUS)",VERT_DATUM["National Geodetic Vertical Datum 1929",2005,AUTHORITY["EPSG","5102"]],UNIT["US survey foot",0.304800609601219,AUTHORITY["EPSG","9003"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5702"]]');
Read the full PostGIS guide →

How do I add EPSG:5702 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+vunits=us-ft"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:5702 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:5702", "+vunits=us-ft +no_defs +type=crs");
Read the full Proj4js guide →