EPSG:CODE

ESRI:65161 NAD 1983 StatePlane Guam FIPS 5400

Projected · Guam

Export Formats

OGC WKT
PROJCS[
    "NAD_1983_StatePlane_Guam_FIPS_5400",
    GEOGCS[
        "GCS_North_American_1983",
        DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["Polyconic"],
    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:65161 to GeoServer?

Add the following definition to your GeoServer configuration:

65161=PROJCS["NAD_1983_StatePlane_Guam_FIPS_5400",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Polyconic"],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:65161 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (65161, 'ESRI', 65161, '+proj=poly +datum=NAD83 +x_0=50000.0 +y_0=50000.0 +lon_0=144d44''55.50254"E +lat_0=13d28''20.87887"N +no_defs', 'PROJCS["NAD_1983_StatePlane_Guam_FIPS_5400",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Polyconic"],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:65161 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=poly"
  "+datum=NAD83"
  "+x_0=50000.0"
  "+y_0=50000.0"
  "+lon_0=144d44'55.50254"E"
  "+lat_0=13d28'20.87887"N"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:65161 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:65161", "+proj=poly +datum=NAD83 +x_0=50000.0 +y_0=50000.0 +lon_0=144d44'55.50254"E +lat_0=13d28'20.87887"N +no_defs");
Read the full Proj4js guide →