EPSG:CODE

EPSG:3139 Vanua Levu 1915 / Vanua Levu Grid

Projected · Fiji - Vanua Levu and Taveuni

Export Formats

WKT2
PROJCRS[
    "Vanua Levu 1915 / Vanua Levu Grid",
    BASEGEOGCRS[
        "Vanua Levu 1915",
        DATUM[
            "Vanua Levu 1915",
            ELLIPSOID[
                "Clarke 1880 (international foot)",
                20926202,
                293.46630765563,
                LENGTHUNIT["foot",0.3048,ID["EPSG",9002]],
                ID["EPSG",7055]
            ],
            ID["EPSG",6748]
        ],
        ID["EPSG",4748]
    ],
    CONVERSION[
        "Vanua Levu Grid",
        METHOD["Hyperbolic Cassini-Soldner",ID["EPSG",9833]],
        PARAMETER[
            "Latitude of natural origin",
            -16.2500000000003,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8801]
        ],
        PARAMETER[
            "Longitude of natural origin",
            179.333333333334,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8802]
        ],
        PARAMETER[
            "False easting",
            1251331.8,
            LENGTHUNIT["link",0.201168,ID["EPSG",9098]],
            ID["EPSG",8806]
        ],
        PARAMETER[
            "False northing",
            1662888.5,
            LENGTHUNIT["link",0.201168,ID["EPSG",9098]],
            ID["EPSG",8807]
        ],
        ID["EPSG",19878]
    ],
    CS[Cartesian,2,ID["EPSG",4533]],
    AXIS["Northing (X)",north],
    AXIS["Easting (Y)",east],
    LENGTHUNIT["link",0.201168,ID["EPSG",9098]],
    ID["EPSG",3139]
]

Related Coordinate Systems

Available Transformations (2)

Other CRS using Vanua Levu 1915

Frequently Asked Questions

How do I add EPSG:3139 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (3139, 'EPSG', 3139, '+proj=cass +hyperbolic +lat_0=-16.25 +lon_0=179.333333333333 +x_0=251727.9155424 +y_0=334519.953768 +a=6378306.3696 +b=6356571.996 +towgs84=51,391,-36,0,0,0,0 +units=link +no_defs +type=crs', '');
Read the full PostGIS guide →

How do I add EPSG:3139 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=cass"
  "+hyperbolic"
  "+lat_0=-16.25"
  "+lon_0=179.333333333333"
  "+x_0=251727.9155424"
  "+y_0=334519.953768"
  "+a=6378306.3696"
  "+b=6356571.996"
  "+towgs84=51,391,-36,0,0,0,0"
  "+units=link"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:3139 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:3139", "+proj=cass +hyperbolic +lat_0=-16.25 +lon_0=179.333333333333 +x_0=251727.9155424 +y_0=334519.953768 +a=6378306.3696 +b=6356571.996 +towgs84=51,391,-36,0,0,0,0 +units=link +no_defs +type=crs");
Read the full Proj4js guide →