Changeset 13627 in josm for trunk/src/org/openstreetmap/josm/data/projection/datum/NullDatum.java
- Timestamp:
- 2018-04-14T16:28:42+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/datum/NullDatum.java
r7937 r13627 6 6 7 7 /** 8 * Null Datum does not convert from / to WGS84 ellipsoid, but simply "casts" 9 * the coordinates.8 * Null Datum does not convert from / to WGS84 ellipsoid, but simply "casts" the coordinates. 9 * @since 4285 10 10 */ 11 11 public class NullDatum extends AbstractDatum { 12 12 13 /** 14 * Constructs a new {@code NullDatum}. 15 * @param name name of the datum 16 * @param ellps the ellipsoid used 17 */ 13 18 public NullDatum(String name, Ellipsoid ellps) { 14 19 super(name, null, ellps);
Note:
See TracChangeset
for help on using the changeset viewer.