EPSG:4687

RGPF

Attributes

Unit: degree (supplier to define representation)

Geodetic CRS: RGPF

Datum: Reseau Geodesique de la Polynesie Francaise

Ellipsoid: GRS 1980

Prime meridian: Greenwich

Data source: EPSG

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

Revision date: 2007-08-27

Scope: Horizontal component of 3D system.

Remarks: Replaces Tahaa 54 (CRS code 4629), IGN 63 Hiva Oa (4689), IGN 72 Nuku Hiva (4630), Maupiti 83 (4692), MHEFO 55 (4688), Moorea 87 (4691) and Tahiti 79 (4690).

Area of use: French Polynesia - onshore and offshore. Includes Society archipelago, Tuamotu archipelago, Marquesas Islands, Gambier Islands and Austral Islands.

Coordinate system: Ellipsoidal 2D CS. Axes: latitude, longitude. Orientations: north, east. UoM: degree

MapTiler banner

Definition: OGC Well Known Text

GEOGCS["RGPF",
    DATUM["Reseau_Geodesique_de_la_Polynesie_Francaise",
        SPHEROID["GRS 1980",6378137,298.257222101,
            AUTHORITY["EPSG","7019"]],
        AUTHORITY["EPSG","6687"]],
    PRIMEM["Greenwich",0,
        AUTHORITY["EPSG","8901"]],
    UNIT["degree",0.0174532925199433,
        AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4687"]]

Definition: OGC Well Known Text 2 (2019)

GEOGCRS["RGPF",
    DATUM["Reseau Geodesique de la Polynesie Francaise",
        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["French Polynesia - onshore and offshore. Includes Society archipelago, Tuamotu archipelago, Marquesas Islands, Gambier Islands and Austral Islands."],
        BBOX[-31.24,-158.13,-4.52,-131.97]],
    ID["EPSG",4687]]

Definition: ESRI Well Known Text

GEOGCS["GCS_RGPF",
    DATUM["D_Reseau_Geodesique_de_la_Polynesie_Francaise",
        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:4687","+proj=longlat +ellps=GRS80 +no_defs +type=crs");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "GeographicCRS",
    "name": "RGPF",
    "datum": {
        "type": "GeodeticReferenceFrame",
        "name": "Reseau Geodesique de la Polynesie Francaise",
        "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": "French Polynesia - onshore and offshore. Includes Society archipelago, Tuamotu archipelago, Marquesas Islands, Gambier Islands and Austral Islands.",
    "bbox": {
        "south_latitude": -31.24,
        "west_longitude": -158.13,
        "north_latitude": -4.52,
        "east_longitude": -131.97
    },
    "id": {
        "authority": "EPSG",
        "code": 4687
    }
}

Definition: GeoServer

4687=GEOGCS["RGPF",DATUM["Reseau_Geodesique_de_la_Polynesie_Francaise",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6687"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4687"]]

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 ( 4687, 'EPSG', 4687, '+proj=longlat +ellps=GRS80 +no_defs +type=crs', 'GEOGCS["RGPF",DATUM["Reseau_Geodesique_de_la_Polynesie_Francaise",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6687"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4687"]]');