EPSG:CODE

EPSG:3460 Fiji 1986 / Fiji Map Grid

Projected · Fiji - onshore

Export Formats

OGC WKT
PROJCS[
    "Fiji 1986 / Fiji Map Grid",
    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"]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["latitude_of_origin",-17],
    PARAMETER["central_meridian",178.75],
    PARAMETER["scale_factor",0.99985],
    PARAMETER["false_easting",2000000],
    PARAMETER["false_northing",4000000],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","3460"]
]

Related Coordinate Systems

Available Transformations (2)

Other CRS using Fiji Geodetic Datum 1986

Frequently Asked Questions

How do I add EPSG:3460 to GeoServer?

Add the following definition to your GeoServer configuration:

3460=PROJCS["Fiji 1986 / Fiji Map Grid",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"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",-17],PARAMETER["central_meridian",178.75],PARAMETER["scale_factor",0.99985],PARAMETER["false_easting",2000000],PARAMETER["false_northing",4000000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","3460"]]
Read the full GeoServer guide →

How do I add EPSG:3460 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (3460, 'EPSG', 3460, '+proj=tmerc +lat_0=-17 +lon_0=178.75 +k=0.99985 +x_0=2000000 +y_0=4000000 +ellps=WGS72 +towgs84=0,0,4.5,0,0,0.554,0.2263 +units=m +no_defs +type=crs', 'PROJCS["Fiji 1986 / Fiji Map Grid",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"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",-17],PARAMETER["central_meridian",178.75],PARAMETER["scale_factor",0.99985],PARAMETER["false_easting",2000000],PARAMETER["false_northing",4000000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","3460"]]');
Read the full PostGIS guide →

How do I add EPSG:3460 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+lat_0=-17"
  "+lon_0=178.75"
  "+k=0.99985"
  "+x_0=2000000"
  "+y_0=4000000"
  "+ellps=WGS72"
  "+towgs84=0,0,4.5,0,0,0.554,0.2263"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:3460 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:3460", "+proj=tmerc +lat_0=-17 +lon_0=178.75 +k=0.99985 +x_0=2000000 +y_0=4000000 +ellps=WGS72 +towgs84=0,0,4.5,0,0,0.554,0.2263 +units=m +no_defs +type=crs");
Read the full Proj4js guide →