EPSG:8897

EPSG example wellbore local vertical CRS (ft)

Attributes

Unit: foot

Geodetic CRS: EPSG example wellbore local vertical CRS (ft)

Datum: EPSG example wellbore vertical datum

Data source: EPSG

Information source: IOGP

Revision date: 2019-02-17

Scope: Wellbore survey.

Remarks: Vertical component of wellbore cubic CRS (CRS code 8821). Depth is relative to the zero depth point used during wellbore survey (e.g. derrick floor).

Area of use: Description of the extent of the CRS.

Coordinate system: Vertical CS. Axis: local depth (d). Orientation: down. UoM: ft.

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

Description of the extent of the CRS.
MapTiler banner

Definition: OGC Well Known Text

VERT_CS["EPSG example wellbore local vertical CRS (ft)",
    VERT_DATUM["EPSG example wellbore vertical datum",2005,
        AUTHORITY["EPSG","1205"]],
    UNIT["foot",0.3048,
        AUTHORITY["EPSG","9002"]],
    AXIS["Local depth",DOWN],
    AUTHORITY["EPSG","8897"]]

Definition: OGC Well Known Text 2 (2019)

VERTCRS["EPSG example wellbore local vertical CRS (ft)",
    VDATUM["EPSG example wellbore vertical datum"],
    CS[vertical,1],
        AXIS["local depth (d)",down,
            LENGTHUNIT["foot",0.3048]],
    USAGE[
        SCOPE["Wellbore survey."],
        AREA["Description of the extent of the CRS."],
        BBOX[-90,-180,90,180]],
    ID["EPSG",8897]]

Definition: ESRI Well Known Text

VERTCS["EPSG_example_wellbore_local_vertical_CRS_ft",
    VDATUM["EPSG_example_wellbore_vertical_datum"],
    PARAMETER["Vertical_Shift",0.0],
    PARAMETER["Direction",-1.0],
    UNIT["foot",0.3048]]

Definition: PROJ.4

+vunits=ft +no_defs +type=crs

Definition: JavaScript (Proj4js)

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

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "VerticalCRS",
    "name": "EPSG example wellbore local vertical CRS (ft)",
    "datum": {
        "type": "VerticalReferenceFrame",
        "name": "EPSG example wellbore vertical datum"
    },
    "coordinate_system": {
        "subtype": "vertical",
        "axis": [
            {
                "name": "Local depth",
                "abbreviation": "d",
                "direction": "down",
                "unit": {
                    "type": "LinearUnit",
                    "name": "foot",
                    "conversion_factor": 0.3048
                }
            }
        ]
    },
    "scope": "Wellbore survey.",
    "area": "Description of the extent of the CRS.",
    "bbox": {
        "south_latitude": -90,
        "west_longitude": -180,
        "north_latitude": 90,
        "east_longitude": 180
    },
    "id": {
        "authority": "EPSG",
        "code": 8897
    }
}

Definition: GeoServer

8897=VERT_CS["EPSG example wellbore local vertical CRS (ft)",VERT_DATUM["EPSG example wellbore vertical datum",2005,AUTHORITY["EPSG","1205"]],UNIT["foot",0.3048,AUTHORITY["EPSG","9002"]],AXIS["Local depth",DOWN],AUTHORITY["EPSG","8897"]]

Definition: MapServer - MAPfile

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

Definition: Mapnik

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

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 8897, 'EPSG', 8897, '+vunits=ft +no_defs +type=crs', 'VERT_CS["EPSG example wellbore local vertical CRS (ft)",VERT_DATUM["EPSG example wellbore vertical datum",2005,AUTHORITY["EPSG","1205"]],UNIT["foot",0.3048,AUTHORITY["EPSG","9002"]],AXIS["Local depth",DOWN],AUTHORITY["EPSG","8897"]]');