EPSG:4630

IGN72 Nuku Hiva

Center coordinates
-139.87 -9.15

WGS84 bounds:
-140.31 -9.57
-139.44 -8.72

French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou.
MapTiler banner

Definition: OGC Well Known Text

GEOGCS["IGN72 Nuku Hiva",
    DATUM["IGN72_Nuku_Hiva",
        SPHEROID["International 1924",6378388,297],
        TOWGS84[84,274,65,0,0,0,0]],
    PRIMEM["Greenwich",0,
        AUTHORITY["EPSG","8901"]],
    UNIT["degree",0.0174532925199433,
        AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4630"]]

Definition: OGC Well Known Text 2 (2019)

GEOGCRS["IGN72 Nuku Hiva",
    DATUM["IGN72 Nuku Hiva",
        ELLIPSOID["International 1924",6378388,297,
            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["Geodesy."],
        AREA["French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou."],
        BBOX[-9.57,-140.31,-8.72,-139.44]],
    ID["EPSG",4630]]

Definition: ESRI Well Known Text

GEOGCS["GCS_IGN72_Nuku_Hiva",
    DATUM["D_IGN72_Nuku_Hiva",
        SPHEROID["International_1924",6378388.0,297.0]],
    PRIMEM["Greenwich",0.0],
    UNIT["Degree",0.0174532925199433]]

Definition: PROJ.4

+proj=longlat +ellps=intl +towgs84=84,274,65,0,0,0,0 +no_defs +type=crs

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:4630","+proj=longlat +ellps=intl +towgs84=84,274,65,0,0,0,0 +no_defs +type=crs");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "GeographicCRS",
    "name": "IGN72 Nuku Hiva",
    "datum": {
        "type": "GeodeticReferenceFrame",
        "name": "IGN72 Nuku Hiva",
        "ellipsoid": {
            "name": "International 1924",
            "semi_major_axis": 6378388,
            "inverse_flattening": 297
        }
    },
    "coordinate_system": {
        "subtype": "ellipsoidal",
        "axis": [
            {
                "name": "Geodetic latitude",
                "abbreviation": "Lat",
                "direction": "north",
                "unit": "degree"
            },
            {
                "name": "Geodetic longitude",
                "abbreviation": "Lon",
                "direction": "east",
                "unit": "degree"
            }
        ]
    },
    "scope": "Geodesy.",
    "area": "French Polynesia - Marquesas Islands - Nuku Hiva, Ua Huka and Ua Pou.",
    "bbox": {
        "south_latitude": -9.57,
        "west_longitude": -140.31,
        "north_latitude": -8.72,
        "east_longitude": -139.44
    },
    "id": {
        "authority": "EPSG",
        "code": 4630
    }
}

Definition: GeoServer

4630=GEOGCS["IGN72 Nuku Hiva",DATUM["IGN72_Nuku_Hiva",SPHEROID["International 1924",6378388,297],TOWGS84[84,274,65,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4630"]]

Definition: MapServer - MAPfile

PROJECTION
	"proj=longlat"
	"ellps=intl"
	"towgs84=84,274,65,0,0,0,0"
	"no_defs"
	"type=crs"
END

Definition: Mapnik

<?xml version="1.0" encoding="utf-8"?>
<Map srs="+proj=longlat +ellps=intl +towgs84=84,274,65,0,0,0,0 +no_defs +type=crs">
	<Layer srs="+proj=longlat +ellps=intl +towgs84=84,274,65,0,0,0,0 +no_defs +type=crs">
	</Layer>
</Map>

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 4630, 'EPSG', 4630, '+proj=longlat +ellps=intl +towgs84=84,274,65,0,0,0,0 +no_defs +type=crs', 'GEOGCS["IGN72 Nuku Hiva",DATUM["IGN72_Nuku_Hiva",SPHEROID["International 1924",6378388,297],TOWGS84[84,274,65,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4630"]]');