EPSG:CODE

ESRI:103897 NAD 1983 2011 Nebraska LDP Douglas-Sarpy County Ft Intl

Projected · Nebraska - Douglas-Sarpy County

Export Formats

OGC WKT
PROJCS[
    "NAD_1983_2011_Nebraska_LDP_Douglas-Sarpy_County_Ft_Intl",
    GEOGCS[
        "GCS_NAD_1983_2011",
        DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["False_Easting",131233.5958005249],
    PARAMETER["False_Northing",82020.99737532808],
    PARAMETER["Central_Meridian",-96.05],
    PARAMETER["Scale_Factor",1.0000482],
    PARAMETER["Latitude_Of_Origin",41.18333333333333],
    UNIT["Foot",0.3048]
]

Frequently Asked Questions

How do I add ESRI:103897 to GeoServer?

Add the following definition to your GeoServer configuration:

103897=PROJCS["NAD_1983_2011_Nebraska_LDP_Douglas-Sarpy_County_Ft_Intl",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",131233.5958005249],PARAMETER["False_Northing",82020.99737532808],PARAMETER["Central_Meridian",-96.05],PARAMETER["Scale_Factor",1.0000482],PARAMETER["Latitude_Of_Origin",41.18333333333333],UNIT["Foot",0.3048]]
Read the full GeoServer guide →

How do I add ESRI:103897 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (103897, 'ESRI', 103897, '+proj=tmerc +ellps=GRS80 +units=ft +x_0=40000.0 +y_0=25000.0 +lon_0=96d3''W +lat_0=41d11''N +k_0=1.0000482 +towgs84=-0.9934300812655978,1.903309874715335,0.5265502836252097,0.02591467053009863,0.009426448542682335,0.01159935118431898,-0.001715040109928623 +no_defs', 'PROJCS["NAD_1983_2011_Nebraska_LDP_Douglas-Sarpy_County_Ft_Intl",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",131233.5958005249],PARAMETER["False_Northing",82020.99737532808],PARAMETER["Central_Meridian",-96.05],PARAMETER["Scale_Factor",1.0000482],PARAMETER["Latitude_Of_Origin",41.18333333333333],UNIT["Foot",0.3048]]');
Read the full PostGIS guide →

How do I add ESRI:103897 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+ellps=GRS80"
  "+units=ft"
  "+x_0=40000.0"
  "+y_0=25000.0"
  "+lon_0=96d3'W"
  "+lat_0=41d11'N"
  "+k_0=1.0000482"
  "+towgs84=-0.9934300812655978,1.903309874715335,0.5265502836252097,0.02591467053009863,0.009426448542682335,0.01159935118431898,-0.001715040109928623"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:103897 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:103897", "+proj=tmerc +ellps=GRS80 +units=ft +x_0=40000.0 +y_0=25000.0 +lon_0=96d3'W +lat_0=41d11'N +k_0=1.0000482 +towgs84=-0.9934300812655978,1.903309874715335,0.5265502836252097,0.02591467053009863,0.009426448542682335,0.01159935118431898,-0.001715040109928623 +no_defs");
Read the full Proj4js guide →