ESRI:102237 — Pohnpei Az Eq 1971
Projected · Micronesia
Export Formats
OGC WKT
PROJCS[
"Pohnpei_Az_Eq_1971",
GEOGCS[
"GCS_Pohnpei",
DATUM["D_Pohnpei",SPHEROID["Clarke_1866",6378206.4,294.9786982]],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]
],
PROJECTION["Azimuthal_Equidistant"],
PARAMETER["False_Easting",80122.82],
PARAMETER["False_Northing",80747.24],
PARAMETER["Central_Meridian",158.2092992222222],
PARAMETER["Latitude_Of_Origin",6.965075694444445],
UNIT["Meter",1.0]
]Frequently Asked Questions
How do I add ESRI:102237 to GeoServer?
Add the following definition to your GeoServer configuration:
102237=PROJCS["Pohnpei_Az_Eq_1971",GEOGCS["GCS_Pohnpei",DATUM["D_Pohnpei",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",80122.82],PARAMETER["False_Northing",80747.24],PARAMETER["Central_Meridian",158.2092992222222],PARAMETER["Latitude_Of_Origin",6.965075694444445],UNIT["Meter",1.0]] Read the full GeoServer guide →
How do I add ESRI:102237 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102237, 'ESRI', 102237, '+proj=aeqd +ellps=clrk66 +x_0=80122.82 +y_0=80747.24 +lon_0=158d12''33.4772"E +lat_0=6d57''54.2725"N +towgs84=-89.121,-348.182,260.871 +no_defs', 'PROJCS["Pohnpei_Az_Eq_1971",GEOGCS["GCS_Pohnpei",DATUM["D_Pohnpei",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",80122.82],PARAMETER["False_Northing",80747.24],PARAMETER["Central_Meridian",158.2092992222222],PARAMETER["Latitude_Of_Origin",6.965075694444445],UNIT["Meter",1.0]]'); Read the full PostGIS guide →
How do I add ESRI:102237 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=aeqd"
"+ellps=clrk66"
"+x_0=80122.82"
"+y_0=80747.24"
"+lon_0=158d12'33.4772"E"
"+lat_0=6d57'54.2725"N"
"+towgs84=-89.121,-348.182,260.871"
"+no_defs"
END Read the full MapServer guide →
How do I use ESRI:102237 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("ESRI:102237", "+proj=aeqd +ellps=clrk66 +x_0=80122.82 +y_0=80747.24 +lon_0=158d12'33.4772"E +lat_0=6d57'54.2725"N +towgs84=-89.121,-348.182,260.871 +no_defs"); Read the full Proj4js guide →