Changeset 2304 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2009-10-24T13:39:45+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/projection
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/Ellipsoid.java
r1929 r2304 11 11 * the reference ellipsoids 12 12 */ 13 class Ellipsoid {13 public class Ellipsoid { 14 14 /** 15 15 * Clarke's ellipsoid (NTF system) … … 22 22 new Ellipsoid(6378388.0, 6356911.9461); 23 23 /** 24 * GRS80 ellipsoid 25 */ 26 public static final Ellipsoid GRS80 = new Ellipsoid(6378137.0, 6356752.3141); 27 28 /** 24 29 * WGS84 ellipsoid 25 30 */ 26 public static final Ellipsoid GRS80 = new Ellipsoid(6378137.0, 6356752.314);31 public static final Ellipsoid WGS84 = new Ellipsoid(6378137.0, 6356752.3142); 27 32 28 33 /** -
trunk/src/org/openstreetmap/josm/data/projection/Lambert.java
r2114 r2304 141 141 142 142 @Override public String toString() { 143 return tr("Lambert Zone(France)");143 return tr("Lambert 4 Zones (France)"); 144 144 } 145 145 146 146 public String toCode() { 147 return "EPSG:"+(275 71+currentZone);147 return "EPSG:"+(27561+currentZone); 148 148 } 149 149 -
trunk/src/org/openstreetmap/josm/data/projection/Projection.java
r2114 r2304 31 31 new UTM_20N_Guadeloupe_Fort_Marigot(), 32 32 new UTM_20N_Martinique_Fort_Desaix(), 33 new GaussLaborde_Reunion() 33 new GaussLaborde_Reunion(), 34 new LambertCC9Zones() // Still needs proper default zoom 34 35 }; 35 36
Note:
See TracChangeset
for help on using the changeset viewer.