for me it doe not work. I tried 900914, and it says:
Could not find an SRS Authority that understands your SRS. Please verify that your SRS is correct - you might need to consult the SRS authority plug ins to ensure that your SRS is listed.
No code “EPSG:900914” from authority “European Petroleum Survey Group” found for object of type “CoordinateReferenceSystem”.
EPSG:900914
here the line i added in epsg.properties:
900914=PROJCS[“ETRS89 / ETRS-LAEA”,GEOGCS[“ETRS89”,DATUM[“European Terrestrial Reference System 1989”,SPHEROID[“GRS 1980”, 6378137.0, 298.257222101,AUTHORITY[“EPSG”,“7019”]],TOWGS84[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],AUTHORITY[“EPSG”,“6258”]],PRIMEM[“Greenwich”, 0.0,AUTHORITY[“EPSG”,“8901”]],UNIT[“degree”, 0.017453292519943295],AXIS[“Geodetic longitude”, EAST],AXIS[“Geodetic latitude”, NORTH],AUTHORITY[“EPSG”,“4258”]],PROJECTION[“Lambert Azimuthal Equal Area”, AUTHORITY[“EPSG”,“9820”]],PARAMETER[“latitude_of_center”, 52.0],PARAMETER[“longitude_of_center”, 10.0],PARAMETER[“false_easting”, 4321000.0],PARAMETER[“false_northing”, 3210000.0],UNIT[“m”, 1.0],AXIS[“Easting”, EAST],AXIS[“Northing”, NORTH],AUTHORITY[“EPSG”,“3035”]]
any idea. It seems that is checking another file, or forget to check it.
gersh
On 16/08/07, Andrea Aime < aaime@anonymised.com> wrote:
gershwinou ha scritto:
Ok, i tried, but i met another problem:
my projection is not in the proj list (ETRS89-LAEA which is strange
since it is a european standard). Before i updated the epsg.properties.
but in your snapshot, geoserver does not seem to find it. Is there a new
way to add your own projection?
Not for this one. Lambert Azimutal Equal Area projection is a projection
we don’t have the math for in GeoServer 1.5.x…
The projection has been added in GeoTools, the library we depend on for
most of the work, in the fore coming 2.4.0 release, which is used
by GeoServer 1.6.0 series (still unreleased, that one too).
I just picked its definition from the GeoServer 1.6.x branch, here it is:
PROJCS[“ETRS89 / ETRS-LAEA”,
GEOGCS[“ETRS89”,
DATUM[“European Terrestrial Reference System 1989”,
SPHEROID[“GRS 1980”, 6378137.0, 298.257222101,
AUTHORITY[“EPSG”,“7019”]],
TOWGS84[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
AUTHORITY[“EPSG”,“6258”]],
PRIMEM[“Greenwich”, 0.0, AUTHORITY[“EPSG”,“8901”]],
UNIT[“degree”, 0.017453292519943295],
AXIS[“Geodetic longitude”, EAST],
AXIS[“Geodetic latitude”, NORTH],
AUTHORITY[“EPSG”,“4258”]],
PROJECTION[“Lambert Azimuthal Equal Area”, AUTHORITY[“EPSG”,“9820”]],
PARAMETER[“latitude_of_center”, 52.0],
PARAMETER[“longitude_of_center”, 10.0],
PARAMETER[“false_easting”, 4321000.0],
PARAMETER[“false_northing”, 3210000.0],
UNIT[“m”, 1.0],
AXIS[“Easting”, EAST],
AXIS[“Northing”, NORTH],
AUTHORITY[“EPSG”,“3035”]]
So, if you need it, I advise you grab a GeoServer 1.6.x nightly
(starting from today late afternoon, european time, since that
nightly still have to be generated and you need the same fix
that I put in 1.5.x):
http://geo.openplans.org/nightly/trunk/
Cheers
Andrea Aime