Changeset 13627 in josm for trunk/src/org/openstreetmap/josm/data/projection/datum/ThreeParameterDatum.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/ThreeParameterDatum.java
r6069 r13627 7 7 /** 8 8 * Datum provides 3 dimensional offset and ellipsoid conversion. 9 * @since 4285 9 10 */ 10 11 public class ThreeParameterDatum extends AbstractDatum { … … 12 13 protected double dx, dy, dz; 13 14 15 /** 16 * Constructs a new {@code ThreeParameterDatum}. 17 * @param name name of the datum 18 * @param proj4Id Proj.4 identifier for this datum (or null) 19 * @param ellps the ellipsoid used 20 * @param dx x offset in meters 21 * @param dy y offset in meters 22 * @param dz z offset in meters 23 */ 14 24 public ThreeParameterDatum(String name, String proj4Id, Ellipsoid ellps, double dx, double dy, double dz) { 15 25 super(name, proj4Id, ellps);
Note:
See TracChangeset
for help on using the changeset viewer.