EPSG:3565 — Old Hawaiian / Hawaii zone 5
Projected · USA - Hawaii - Niihau - onshore
Export Formats
WKT2
PROJCRS[
"Old Hawaiian / Hawaii zone 5",
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 5",
METHOD["Transverse Mercator",ID["EPSG",9807]],
PARAMETER[
"Latitude of natural origin",
21.6666666666669,
ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
ID["EPSG",8801]
],
PARAMETER[
"Longitude of natural origin",
-160.166666666667,
ANGLEUNIT["degree",0.0174532925199433,ID["EPSG",9102]],
ID["EPSG",8802]
],
PARAMETER[
"Scale factor at natural origin",
1,
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",15105]
],
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",3565]
]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:3565 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (3565, 'EPSG', 3565, '+proj=tmerc +lat_0=21.6666666666667 +lon_0=-160.166666666667 +k=1 +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:3565 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=tmerc"
"+lat_0=21.6666666666667"
"+lon_0=-160.166666666667"
"+k=1"
"+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:3565 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("EPSG:3565", "+proj=tmerc +lat_0=21.6666666666667 +lon_0=-160.166666666667 +k=1 +x_0=152400.30480061 +y_0=0 +ellps=clrk66 +units=us-ft +no_defs +type=crs"); Read the full Proj4js guide →