EPSG:CODE

EPSG:3562 Old Hawaiian / Hawaii zone 2

Projected · USA - Hawaii - Maui; Kahoolawe; Lanai; Molokai - onshore

Export Formats

WKT2
PROJCRS[
    "Old Hawaiian / Hawaii zone 2",
    BASEGEOGCRS[
        "Old Hawaiian",
        DATUM[
            "Old Hawaiian",
            ELLIPSOID[
                "Clarke 1866",
                6378206.4,
                294.978698213898,
                LENGTHUNIT["metre",1,ID["EPSG",9001]],
                ID["EPSG",7008]
            ],
            ID["EPSG",6135]
        ],
        ID["EPSG",4135]
    ],
    CONVERSION[
        "Hawaii CS27 zone 2",
        METHOD["Transverse Mercator",ID["EPSG",9807]],
        PARAMETER[
            "Latitude of natural origin",
            20.3333333333336,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8801]
        ],
        PARAMETER[
            "Longitude of natural origin",
            -156.666666666667,
            ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
            ID["EPSG",8802]
        ],
        PARAMETER[
            "Scale factor at natural origin",
            0.999966667,
            SCALEUNIT["unity",1,ID["EPSG",9201]],
            ID["EPSG",8805]
        ],
        PARAMETER[
            "False easting",
            500000,
            LENGTHUNIT["US survey foot",0.304800609601219,ID["EPSG",9003]],
            ID["EPSG",8806]
        ],
        PARAMETER[
            "False northing",
            0,
            LENGTHUNIT["US survey foot",0.304800609601219,ID["EPSG",9003]],
            ID["EPSG",8807]
        ],
        ID["EPSG",15102]
    ],
    CS[Cartesian,2,ID["EPSG",4497]],
    AXIS["Easting (X)",east],
    AXIS["Northing (Y)",north],
    LENGTHUNIT["US survey foot",0.304800609601219,ID["EPSG",9003]],
    ID["EPSG",3562]
]

Related Coordinate Systems

Available Transformations (11)

Transformations inherited from base CRS: EPSG:4135 (Old Hawaiian)

Other CRS using Old Hawaiian

Frequently Asked Questions

How do I add EPSG:3562 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (3562, 'EPSG', 3562, '+proj=tmerc +lat_0=20.3333333333333 +lon_0=-156.666666666667 +k=0.999966667 +x_0=152400.30480061 +y_0=0 +ellps=clrk66 +units=us-ft +no_defs +type=crs', '');
Read the full PostGIS guide →

How do I add EPSG:3562 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+lat_0=20.3333333333333"
  "+lon_0=-156.666666666667"
  "+k=0.999966667"
  "+x_0=152400.30480061"
  "+y_0=0"
  "+ellps=clrk66"
  "+units=us-ft"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:3562 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:3562", "+proj=tmerc +lat_0=20.3333333333333 +lon_0=-156.666666666667 +k=0.999966667 +x_0=152400.30480061 +y_0=0 +ellps=clrk66 +units=us-ft +no_defs +type=crs");
Read the full Proj4js guide →