EPSG:CODE

ESRI:102238 Saipan Az Eq 1969

Projected · Northern Mariana Islands

Export Formats

OGC WKT
PROJCS[
    "Saipan_Az_Eq_1969",
    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",145.7112869444444],
    PARAMETER["Latitude_Of_Origin",15.16755722222222],
    UNIT["Meter",1.0]
]

Frequently Asked Questions

How do I add ESRI:102238 to GeoServer?

Add the following definition to your GeoServer configuration:

102238=PROJCS["Saipan_Az_Eq_1969",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",145.7112869444444],PARAMETER["Latitude_Of_Origin",15.16755722222222],UNIT["Meter",1.0]]
Read the full GeoServer guide →

How do I add ESRI:102238 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102238, 'ESRI', 102238, '+proj=aeqd +ellps=clrk66 +x_0=50000.0 +y_0=50000.0 +lon_0=145d42''40.633"E +lat_0=15d10''3.206"N +towgs84=59.935,118.4,-10.871 +no_defs', 'PROJCS["Saipan_Az_Eq_1969",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",145.7112869444444],PARAMETER["Latitude_Of_Origin",15.16755722222222],UNIT["Meter",1.0]]');
Read the full PostGIS guide →

How do I add ESRI:102238 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=145d42'40.633"E"
  "+lat_0=15d10'3.206"N"
  "+towgs84=59.935,118.4,-10.871"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:102238 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:102238", "+proj=aeqd +ellps=clrk66 +x_0=50000.0 +y_0=50000.0 +lon_0=145d42'40.633"E +lat_0=15d10'3.206"N +towgs84=59.935,118.4,-10.871 +no_defs");
Read the full Proj4js guide →