EPSG:7990 DEPRECATED

NAVD88 height (ftUS) to NAVD88 depth (ftUS)

MapTiler banner

Definition: OGC Well Known Text

PROJECTION["Height_Depth_Reversal"]

Definition: OGC Well Known Text 2 (2019)

CONVERSION["NAVD88 height (ftUS) to NAVD88 depth (ftUS)",
    METHOD["Height Depth Reversal",
        ID["EPSG",1068]],
    ID["EPSG",7990]]

Definition: ESRI Well Known Text

PROJECTION["Height_Depth_Reversal"]

Definition: PROJ.4

+proj=axisswap +order=1,2,-3

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:7990","+proj=axisswap +order=1,2,-3");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "Conversion",
    "name": "NAVD88 height (ftUS) to NAVD88 depth (ftUS)",
    "method": {
        "name": "Height Depth Reversal",
        "id": {
            "authority": "EPSG",
            "code": 1068
        }
    },
    "id": {
        "authority": "EPSG",
        "code": 7990
    }
}

Definition: GeoServer

7990=PROJECTION["Height_Depth_Reversal"]

Definition: MapServer - MAPfile

PROJECTION
	"proj=axisswap"
	"order=1,2,-3"
END

Definition: Mapnik

<?xml version="1.0" encoding="utf-8"?>
<Map srs="+proj=axisswap +order=1,2,-3">
	<Layer srs="+proj=axisswap +order=1,2,-3">
	</Layer>
</Map>

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 7990, 'EPSG', 7990, '+proj=axisswap +order=1,2,-3', 'PROJECTION["Height_Depth_Reversal"]');