Ignore:
Timestamp:
2018-04-14T16:28:42+02:00 (6 years ago)
Author:
Don-vip
Message:

see #16129 - datum javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/datum/CentricDatum.java

    r8846 r13627  
    88 * A datum with different ellipsoid than WGS84, but does not require
    99 * shift, rotation or scaling.
     10 * @since 4285
    1011 */
    1112public class CentricDatum extends AbstractDatum {
    1213
     14    /**
     15     * Constructs a new {@code CentricDatum}.
     16     * @param name Datum name
     17     * @param proj4Id proj.4 identifier
     18     * @param ellps Ellipsoid. Must be non-null and different from WGS84
     19     */
    1320    public CentricDatum(String name, String proj4Id, Ellipsoid ellps) {
    1421        super(name, proj4Id, ellps);
Note: See TracChangeset for help on using the changeset viewer.