EPSG:CODE

EPSG:8803 NAD83 / Alaska zone 1 + NAVD88 height

Compound · USA - Alaska - Panhandle

Export Formats

OGC WKT
COMPD_CS[
    "NAD83 / Alaska zone 1 + NAVD88 height",
    PROJCS[
        "NAD83 / Alaska zone 1",
        GEOGCS[
            "NAD83",
            DATUM[
                "North_American_Datum_1983",
                SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],
                AUTHORITY["EPSG","6269"]
            ],
            PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
            UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
            AUTHORITY["EPSG","4269"]
        ],
        PROJECTION["Hotine_Oblique_Mercator"],
        PARAMETER["latitude_of_center",57],
        PARAMETER["longitude_of_center",-133.666666666667],
        PARAMETER["azimuth",323.130102361111],
        PARAMETER["rectified_grid_angle",323.130102361111],
        PARAMETER["scale_factor",0.9999],
        PARAMETER["false_easting",5000000],
        PARAMETER["false_northing",-5000000],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Easting",EAST],
        AXIS["Northing",NORTH],
        AUTHORITY["EPSG","26931"]
    ],
    VERT_CS[
        "NAVD88 height",
        VERT_DATUM[
            "North American Vertical Datum 1988",
            2005,
            AUTHORITY["EPSG","5103"]
        ],
        UNIT["metre",1,AUTHORITY["EPSG","9001"]],
        AXIS["Gravity-related height",UP],
        AUTHORITY["EPSG","5703"]
    ],
    AUTHORITY["EPSG","8803"]
]

Frequently Asked Questions

How do I add EPSG:8803 to GeoServer?

Add the following definition to your GeoServer configuration:

8803=COMPD_CS["NAD83 / Alaska zone 1 + NAVD88 height",PROJCS["NAD83 / Alaska zone 1",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6269"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4269"]],PROJECTION["Hotine_Oblique_Mercator"],PARAMETER["latitude_of_center",57],PARAMETER["longitude_of_center",-133.666666666667],PARAMETER["azimuth",323.130102361111],PARAMETER["rectified_grid_angle",323.130102361111],PARAMETER["scale_factor",0.9999],PARAMETER["false_easting",5000000],PARAMETER["false_northing",-5000000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","26931"]],VERT_CS["NAVD88 height",VERT_DATUM["North American Vertical Datum 1988",2005,AUTHORITY["EPSG","5103"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5703"]],AUTHORITY["EPSG","8803"]]
Read the full GeoServer guide →

How do I add EPSG:8803 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (8803, 'EPSG', 8803, '+proj=omerc +no_uoff +lat_0=57 +lonc=-133.666666666667 +alpha=323.130102361111 +gamma=323.130102361111 +k=0.9999 +x_0=5000000 +y_0=-5000000 +datum=NAD83 +units=m +vunits=m +no_defs +type=crs', 'COMPD_CS["NAD83 / Alaska zone 1 + NAVD88 height",PROJCS["NAD83 / Alaska zone 1",GEOGCS["NAD83",DATUM["North_American_Datum_1983",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6269"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4269"]],PROJECTION["Hotine_Oblique_Mercator"],PARAMETER["latitude_of_center",57],PARAMETER["longitude_of_center",-133.666666666667],PARAMETER["azimuth",323.130102361111],PARAMETER["rectified_grid_angle",323.130102361111],PARAMETER["scale_factor",0.9999],PARAMETER["false_easting",5000000],PARAMETER["false_northing",-5000000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","26931"]],VERT_CS["NAVD88 height",VERT_DATUM["North American Vertical Datum 1988",2005,AUTHORITY["EPSG","5103"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Gravity-related height",UP],AUTHORITY["EPSG","5703"]],AUTHORITY["EPSG","8803"]]');
Read the full PostGIS guide →

How do I add EPSG:8803 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=omerc"
  "+no_uoff"
  "+lat_0=57"
  "+lonc=-133.666666666667"
  "+alpha=323.130102361111"
  "+gamma=323.130102361111"
  "+k=0.9999"
  "+x_0=5000000"
  "+y_0=-5000000"
  "+datum=NAD83"
  "+units=m"
  "+vunits=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:8803 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:8803", "+proj=omerc +no_uoff +lat_0=57 +lonc=-133.666666666667 +alpha=323.130102361111 +gamma=323.130102361111 +k=0.9999 +x_0=5000000 +y_0=-5000000 +datum=NAD83 +units=m +vunits=m +no_defs +type=crs");
Read the full Proj4js guide →