Changeset 6362 in josm for trunk/src/org/openstreetmap/josm/data/projection/datum
- Timestamp:
- 2013-11-03T01:06:23+01:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/projection/datum
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/datum/GRS80Datum.java
r5926 r6362 10 10 * is necessary to get from or to the WGS84 datum. 11 11 */ 12 public class GRS80Datum extends NullDatum {12 public final class GRS80Datum extends NullDatum { 13 13 14 14 public final static GRS80Datum INSTANCE = new GRS80Datum(); -
trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2Util.java
r6310 r6362 27 27 * @author Peter Yuill 28 28 */ 29 public class NTV2Util {29 public final class NTV2Util { 30 30 31 31 private NTV2Util() { -
trunk/src/org/openstreetmap/josm/data/projection/datum/WGS84Datum.java
r5926 r6362 9 9 * WGS84 datum. Transformation from and to WGS84 datum is a no-op. 10 10 */ 11 public class WGS84Datum extends NullDatum {11 public final class WGS84Datum extends NullDatum { 12 12 13 13 public static final WGS84Datum INSTANCE = new WGS84Datum();
Note: See TracChangeset
for help on using the changeset viewer.