EPSG:4984

WGS 72

Center coordinates
6378135.0 -17.13

Projected bounds:
-6378135.0 -0.0
0.0 17.13

WGS84 bounds:
-180.0 -90.0
180.0 90.0

World.
MapTiler banner

Definition: OGC Well Known Text

GEOCCS["WGS 72",
    DATUM["World_Geodetic_System_1972",
        SPHEROID["WGS 72",6378135,298.26,
            AUTHORITY["EPSG","7043"]],
        AUTHORITY["EPSG","6322"]],
    PRIMEM["Greenwich",0,
        AUTHORITY["EPSG","8901"]],
    UNIT["metre",1,
        AUTHORITY["EPSG","9001"]],
    AXIS["Geocentric X",OTHER],
    AXIS["Geocentric Y",OTHER],
    AXIS["Geocentric Z",NORTH],
    AUTHORITY["EPSG","4984"]]

Definition: OGC Well Known Text 2 (2019)

GEODCRS["WGS 72",
    DYNAMIC[
        FRAMEEPOCH[1972]],
    DATUM["World Geodetic System 1972",
        ELLIPSOID["WGS 72",6378135,298.26,
            LENGTHUNIT["metre",1]]],
    PRIMEM["Greenwich",0,
        ANGLEUNIT["degree",0.0174532925199433]],
    CS[Cartesian,3],
        AXIS["(X)",geocentricX,
            ORDER[1],
            LENGTHUNIT["metre",1]],
        AXIS["(Y)",geocentricY,
            ORDER[2],
            LENGTHUNIT["metre",1]],
        AXIS["(Z)",geocentricZ,
            ORDER[3],
            LENGTHUNIT["metre",1]],
    USAGE[
        SCOPE["Geodesy."],
        AREA["World."],
        BBOX[-90,-180,90,180]],
    ID["EPSG",4984]]

Definition: PROJ.4

+proj=geocent +ellps=WGS72 +units=m +no_defs +type=crs

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:4984","+proj=geocent +ellps=WGS72 +units=m +no_defs +type=crs");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "GeodeticCRS",
    "name": "WGS 72",
    "datum": {
        "type": "DynamicGeodeticReferenceFrame",
        "name": "World Geodetic System 1972",
        "frame_reference_epoch": 1972,
        "ellipsoid": {
            "name": "WGS 72",
            "semi_major_axis": 6378135,
            "inverse_flattening": 298.26
        }
    },
    "coordinate_system": {
        "subtype": "Cartesian",
        "axis": [
            {
                "name": "Geocentric X",
                "abbreviation": "X",
                "direction": "geocentricX",
                "unit": "metre"
            },
            {
                "name": "Geocentric Y",
                "abbreviation": "Y",
                "direction": "geocentricY",
                "unit": "metre"
            },
            {
                "name": "Geocentric Z",
                "abbreviation": "Z",
                "direction": "geocentricZ",
                "unit": "metre"
            }
        ]
    },
    "scope": "Geodesy.",
    "area": "World.",
    "bbox": {
        "south_latitude": -90,
        "west_longitude": -180,
        "north_latitude": 90,
        "east_longitude": 180
    },
    "id": {
        "authority": "EPSG",
        "code": 4984
    }
}

Definition: GeoServer

4984=GEOCCS["WGS 72",DATUM["World_Geodetic_System_1972",SPHEROID["WGS 72",6378135,298.26,AUTHORITY["EPSG","7043"]],AUTHORITY["EPSG","6322"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Geocentric X",OTHER],AXIS["Geocentric Y",OTHER],AXIS["Geocentric Z",NORTH],AUTHORITY["EPSG","4984"]]

Definition: MapServer - MAPfile

PROJECTION
	"proj=geocent"
	"ellps=WGS72"
	"units=m"
	"no_defs"
	"type=crs"
END

Definition: Mapnik

<?xml version="1.0" encoding="utf-8"?>
<Map srs="+proj=geocent +ellps=WGS72 +units=m +no_defs +type=crs">
	<Layer srs="+proj=geocent +ellps=WGS72 +units=m +no_defs +type=crs">
	</Layer>
</Map>

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 4984, 'EPSG', 4984, '+proj=geocent +ellps=WGS72 +units=m +no_defs +type=crs', 'GEOCCS["WGS 72",DATUM["World_Geodetic_System_1972",SPHEROID["WGS 72",6378135,298.26,AUTHORITY["EPSG","7043"]],AUTHORITY["EPSG","6322"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Geocentric X",OTHER],AXIS["Geocentric Y",OTHER],AXIS["Geocentric Z",NORTH],AUTHORITY["EPSG","4984"]]');