All,
If you recall, my geoserver image mosaic had some strange behaviors:
- not displaying highest resoltution
- displaying black lines between tiles (new info)
- image quality poor in some cases (new info)
Turns out that I was confusing geoserver.
The data are in EPSG 102643.
I had told geoserver that the data were in EPSG 2227.
Thats not all though.
All details below.
Paul
DETAILS
Our organization uses ESRI state plane zone 3.
In preparing the mosiac with open source, I chose to use EPSG 2227
because a casual inspection suggested it was the same.
After all, it had the same name. Well, it's not the same.
You really must use exactly the same projection.
Thanks, Andrea, for helping me with this bit.
RE this thread
So, I studied projections a bit more; a good site for this is
http://spatialreference.org/
(Thanks Christopher and Howard!)
Spatialreference.org calls our particular ESRI projection "102643".
Here it is (from http://spatialreference.org/ref/epsg/102643/)
PROJCS["NAD_1983_StatePlane_California_III_FIPS_0403_Feet",
GEOGCS["GCS_North_American_1983",
DATUM["North_American_Datum_1983",
SPHEROID["GRS_1980",6378137,298.257222101]],
PRIMEM["Greenwich",0],
UNIT["Degree",0.017453292519943295]
],
PROJECTION["Lambert_Conformal_Conic_2SP"],
PARAMETER["False_Easting",6561666.666666666],
PARAMETER["False_Northing",1640416.666666667],
PARAMETER["Central_Meridian",-120.5],
PARAMETER["Standard_Parallel_1",37.06666666666667],
PARAMETER["Standard_Parallel_2",38.43333333333333],
PARAMETER["Latitude_Of_Origin",36.5],
UNIT["Foot_US",0.30480060960121924],
AUTHORITY["EPSG","102643"]
]
I added the Spatialreference.org definition as a user projection to
geoserver
RE
http://docs.codehaus.org/display/GEOSDOC/Custom+projection+definition+in+Geoserver+1.5.0+(onwards)
and had the same problem as above
RE this thread
Time for a diff.
So, here is one of our projection files created by ArcMap 9.2:
PROJCS["NAD_1983_StatePlane_California_III_FIPS_0403_Feet",
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["Lambert_Conformal_Conic"],
PARAMETER["False_Easting",6561666.666666666],
PARAMETER["False_Northing",1640416.666666667],
PARAMETER["Central_Meridian",-120.5],
PARAMETER["Standard_Parallel_1",37.06666666666667],
PARAMETER["Standard_Parallel_2",38.43333333333333],
PARAMETER["Latitude_Of_Origin",36.5],
UNIT["Foot_US",0.3048006096012192]
]
See the difference?
It may not matter to you, but apparently it matters to Geoserver.
- units are rounded by ESRI
- projection is different
- other seemingly immaterial differences (0 vs 0.0)
I don't know which difference is material.
In any case, once I put the exact ESRI projection into geoserver, everthing
worked.
--
View this message in context: http://www.nabble.com/geotiff's-Using-the-ImageMosaic-plugin-and-displayed-within-geoserver-appear-to-be-less-than-full-resolution-(6-inch)-tp10222232p15048940.html
Sent from the GeoServer - User mailing list archive at Nabble.com.