Hello,
I am trying to define my own EPSG. It is:
69036406=PROJCS["Lambert Azimuthal Equal Area",
GEOGCS["NAD83",
DATUM["North_American_Datum_1983",
SPHEROID["GRS 1980", 6378137,298.257222], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0]],
PRIMEM["Greenwich",0],
UNIT["Meter",1]],
PROJECTION["Lambert Azimuthal Equal Area"],
PARAMETER["False_Easting",0],
PARAMETER["False_Northing",0],
PARAMETER["Latitude_Of_Origin",45],
UNIT["Meter",1],
AUTHORITY["EPSG","69036406"]]
This is the more readable format. I include the following in my epsg.properties file:
69036406=PROJCS["Lambert Azimuthal Equal Area", GEOGCS["NAD83", DATUM["North_American_Datum_1983", SPHEROID["GRS 1980", 6378137,298.257222], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0]], PRIMEM["Greenwich",0], UNIT["Meter",1]], PROJECTION["Lambert Azimuthal Equal Area"], PARAMETER["False_Easting",0], PARAMETER["False_Northing",0], PARAMETER["Latitude_Of_Origin",45], UNIT["Meter",1], AUTHORITY["EPSG","69036406"]]
When I try to set the EPSG to this, I get the following error:
GeoServer - Exception
The following exception was thrown:
/|java.lang.reflect.InvocationTargetException
|/|I'm guessing I'm doing something wrong but I'm not sure what it is. Any help would be greatly appreciated.
Amy