Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.4-M4
-
Component/s: referencing
-
Labels:None
Description
The following program shows the issue:
import org.geotools.referencing.CRS; import org.opengis.referencing.crs.CoordinateReferenceSystem; public class TestDecodeURN { public static void main(String[] args) throws Exception { System.setProperty("org.geotools.referencing.forceXY", "true"); CoordinateReferenceSystem urn = CRS.decode("urn:x-ogc:def:crs:EPSG:6.11.2:4326"); System.out.println(urn); CoordinateReferenceSystem epsg = CRS.decode("EPSG:4326"); System.out.println(epsg); } }
Issue Links
- is depended upon by
-
GEOS-1212
EPSG codes in URN form are turned into lon/lat CRS
-
-
GEOS-1433
Make sure "http://www.opengis.net/gml/srs/epsg.xml#xxx" is interpreted as lon/lat by default
-
- is related to
-
GEOT-1659
urn:ogc:def:crs:EPSG:4326 parsing won't work if forcexy is activated
-
- relates to
-
GEOT-859
Add a CRS authority factory for the "urn:ogc:def:...:EPSG" name space
-