EPSG:CODE

EPSG:4720 Fiji 1986

Geographic 2D · Fiji - onshore

Export Formats

OGC WKT
GEOGCS[
    "Fiji 1986",
    DATUM[
        "Fiji_Geodetic_Datum_1986",
        SPHEROID["WGS 72",6378135,298.26],
        TOWGS84[0,0,4.5,0,0,0.554,0.2263]
    ],
    PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
    UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4720"]
]

Related Coordinate Systems

Available Transformations (2)

Transformation Source → Target Accuracy (m)
4720 4326 2
4720 4326 40

Other CRS using Fiji Geodetic Datum 1986

Frequently Asked Questions

How do I add EPSG:4720 to GeoServer?

Add the following definition to your GeoServer configuration:

4720=GEOGCS["Fiji 1986",DATUM["Fiji_Geodetic_Datum_1986",SPHEROID["WGS 72",6378135,298.26],TOWGS84[0,0,4.5,0,0,0.554,0.2263]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4720"]]
Read the full GeoServer guide →

How do I add EPSG:4720 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (4720, 'EPSG', 4720, '+proj=longlat +ellps=WGS72 +towgs84=0,0,4.5,0,0,0.554,0.2263 +no_defs +type=crs', 'GEOGCS["Fiji 1986",DATUM["Fiji_Geodetic_Datum_1986",SPHEROID["WGS 72",6378135,298.26],TOWGS84[0,0,4.5,0,0,0.554,0.2263]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4720"]]');
Read the full PostGIS guide →

How do I add EPSG:4720 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+ellps=WGS72"
  "+towgs84=0,0,4.5,0,0,0.554,0.2263"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:4720 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:4720", "+proj=longlat +ellps=WGS72 +towgs84=0,0,4.5,0,0,0.554,0.2263 +no_defs +type=crs");
Read the full Proj4js guide →