Ticket #3214: Projection.patch
File Projection.patch, 932 bytes (added by , 16 years ago) |
---|
-
Projection.java
4 4 import org.openstreetmap.josm.data.coor.EastNorth; 5 5 import org.openstreetmap.josm.data.coor.LatLon; 6 6 import org.openstreetmap.josm.data.Bounds; 7 import org.openstreetmap.josm.data.ProjectionBounds;8 7 9 8 /** 10 9 * Classes implementing this are able to convert lat/lon values to … … 24 23 public static Projection[] allProjections = new Projection[]{ 25 24 new Epsg4326(), 26 25 new Mercator(), 26 new LambertEST(), 27 27 new Lambert(), 28 new LambertEST(),29 28 new SwissGrid(), 30 new UTM() 29 new UTM(), 30 new UTM_20N_Guadeloupe_Ste_Anne(), 31 new UTM_20N_Guadeloupe_Fort_Marigot(), 32 new UTM_20N_Martinique_Fort_Desaix(), 33 new GaussLaborde_Reunion() 31 34 }; 32 35 33 36 /**