EPSG:4176

Australian Antarctic

Attributes

Unit: degree (supplier to define representation)

Geodetic CRS: Australian Antarctic

Datum: Australian Antarctic Datum 1998

Ellipsoid: GRS 1980

Prime meridian: Greenwich

Data source: EPSG

Information source: EPSG. See 3D CRS for original information source.

Revision date: 2007-08-27

Center coordinates
102.5 -72.5

WGS84 bounds:
45.0 -90.0
160.0 -60.0

Antarctica between 45°E and 136°E and between 142°E and 160°E - Australian sector.
MapTiler banner

Definition: OGC Well Known Text

GEOGCS["Australian Antarctic",
    DATUM["Australian_Antarctic_Datum_1998",
        SPHEROID["GRS 1980",6378137,298.257222101,
            AUTHORITY["EPSG","7019"]],
        AUTHORITY["EPSG","6176"]],
    PRIMEM["Greenwich",0,
        AUTHORITY["EPSG","8901"]],
    UNIT["degree",0.0174532925199433,
        AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4176"]]

Definition: OGC Well Known Text 2 (2019)

GEOGCRS["Australian Antarctic",
    DATUM["Australian Antarctic Datum 1998",
        ELLIPSOID["GRS 1980",6378137,298.257222101,
            LENGTHUNIT["metre",1]]],
    PRIMEM["Greenwich",0,
        ANGLEUNIT["degree",0.0174532925199433]],
    CS[ellipsoidal,2],
        AXIS["geodetic latitude (Lat)",north,
            ORDER[1],
            ANGLEUNIT["degree",0.0174532925199433]],
        AXIS["geodetic longitude (Lon)",east,
            ORDER[2],
            ANGLEUNIT["degree",0.0174532925199433]],
    USAGE[
        SCOPE["Horizontal component of 3D system."],
        AREA["Antarctica between 45°E and 136°E and between 142°E and 160°E - Australian sector."],
        BBOX[-90,45,-60,160]],
    ID["EPSG",4176]]

Definition: ESRI Well Known Text

GEOGCS["GCS_Australian_Antarctic_1998",
    DATUM["D_Australian_Antarctic_1998",
        SPHEROID["GRS_1980",6378137.0,298.257222101]],
    PRIMEM["Greenwich",0.0],
    UNIT["Degree",0.0174532925199433]]

Definition: PROJ.4

+proj=longlat +ellps=GRS80 +no_defs +type=crs

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:4176","+proj=longlat +ellps=GRS80 +no_defs +type=crs");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "GeographicCRS",
    "name": "Australian Antarctic",
    "datum": {
        "type": "GeodeticReferenceFrame",
        "name": "Australian Antarctic Datum 1998",
        "ellipsoid": {
            "name": "GRS 1980",
            "semi_major_axis": 6378137,
            "inverse_flattening": 298.257222101
        }
    },
    "coordinate_system": {
        "subtype": "ellipsoidal",
        "axis": [
            {
                "name": "Geodetic latitude",
                "abbreviation": "Lat",
                "direction": "north",
                "unit": "degree"
            },
            {
                "name": "Geodetic longitude",
                "abbreviation": "Lon",
                "direction": "east",
                "unit": "degree"
            }
        ]
    },
    "scope": "Horizontal component of 3D system.",
    "area": "Antarctica between 45°E and 136°E and between 142°E and 160°E - Australian sector.",
    "bbox": {
        "south_latitude": -90,
        "west_longitude": 45,
        "north_latitude": -60,
        "east_longitude": 160
    },
    "id": {
        "authority": "EPSG",
        "code": 4176
    }
}

Definition: GeoServer

4176=GEOGCS["Australian Antarctic",DATUM["Australian_Antarctic_Datum_1998",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6176"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4176"]]

Definition: MapServer - MAPfile

PROJECTION
	"proj=longlat"
	"ellps=GRS80"
	"no_defs"
	"type=crs"
END

Definition: Mapnik

<?xml version="1.0" encoding="utf-8"?>
<Map srs="+proj=longlat +ellps=GRS80 +no_defs +type=crs">
	<Layer srs="+proj=longlat +ellps=GRS80 +no_defs +type=crs">
	</Layer>
</Map>

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 4176, 'EPSG', 4176, '+proj=longlat +ellps=GRS80 +no_defs +type=crs', 'GEOGCS["Australian Antarctic",DATUM["Australian_Antarctic_Datum_1998",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6176"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4176"]]');