ESRI:102239 — Guam Geodetic Triangulation Network 1963
Projected · Guam
Export Formats
OGC WKT
PROJCS[
"Guam_Geodetic_Triangulation_Network_1963",
GEOGCS[
"GCS_Guam_1963",
DATUM["D_Guam_1963",SPHEROID["Clarke_1866",6378206.4,294.9786982]],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]
],
PROJECTION["Azimuthal_Equidistant"],
PARAMETER["False_Easting",50000.0],
PARAMETER["False_Northing",50000.0],
PARAMETER["Central_Meridian",144.7487507055556],
PARAMETER["Latitude_Of_Origin",13.47246635277778],
UNIT["Meter",1.0]
]Frequently Asked Questions
How do I add ESRI:102239 to GeoServer?
Add the following definition to your GeoServer configuration:
102239=PROJCS["Guam_Geodetic_Triangulation_Network_1963",GEOGCS["GCS_Guam_1963",DATUM["D_Guam_1963",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",50000.0],PARAMETER["False_Northing",50000.0],PARAMETER["Central_Meridian",144.7487507055556],PARAMETER["Latitude_Of_Origin",13.47246635277778],UNIT["Meter",1.0]] Read the full GeoServer guide →
How do I add ESRI:102239 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102239, 'ESRI', 102239, '+proj=aeqd +ellps=clrk66 +x_0=50000.0 +y_0=50000.0 +lon_0=144d44''55.50254"E +lat_0=13d28''20.87887"N +towgs84=59.935,118.4,-10.871 +no_defs', 'PROJCS["Guam_Geodetic_Triangulation_Network_1963",GEOGCS["GCS_Guam_1963",DATUM["D_Guam_1963",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Azimuthal_Equidistant"],PARAMETER["False_Easting",50000.0],PARAMETER["False_Northing",50000.0],PARAMETER["Central_Meridian",144.7487507055556],PARAMETER["Latitude_Of_Origin",13.47246635277778],UNIT["Meter",1.0]]'); Read the full PostGIS guide →
How do I add ESRI:102239 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=aeqd"
"+ellps=clrk66"
"+x_0=50000.0"
"+y_0=50000.0"
"+lon_0=144d44'55.50254"E"
"+lat_0=13d28'20.87887"N"
"+towgs84=59.935,118.4,-10.871"
"+no_defs"
END Read the full MapServer guide →
How do I use ESRI:102239 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("ESRI:102239", "+proj=aeqd +ellps=clrk66 +x_0=50000.0 +y_0=50000.0 +lon_0=144d44'55.50254"E +lat_0=13d28'20.87887"N +towgs84=59.935,118.4,-10.871 +no_defs"); Read the full Proj4js guide →