From: Martin D. <mar...@ge...> - 2008-09-07 15:46:23
|
For GeographicCRS, epsg-wkt expect axis order to be (longitude,latitude). This is common usage, but a violation of what the EPSG database said. By default, epsg-hsql complies with the axis order specified by the EPSG database, which is usually (latitude,longitude). If however you still want an CRS using (longitude,latitude) axis order, use the following: CRS.decode("EPSG:xxxx", true); where the boolean argument is for "Force (longitude,latitude) axis order." Reference: http://docs.codehaus.org/display/GEOTOOLS/The+axis+order+issue Martin |