source: josm/trunk/src/org/openstreetmap/josm/data/projection/datum/WGS84Datum.java@ 14159

Last change on this file since 14159 was 13627, checked in by Don-vip, 6 years ago

see #16129 - datum javadoc

  • Property svn:eol-style set to native
File size: 544 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.projection.datum;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import org.openstreetmap.josm.data.projection.Ellipsoid;
7
8/**
9 * WGS84 datum. Transformation from and to WGS84 datum is a no-op.
10 * @since 4285
11 */
12public final class WGS84Datum extends NullDatum {
13
14 /**
15 * The unique instance.
16 */
17 public static final WGS84Datum INSTANCE = new WGS84Datum();
18
19 private WGS84Datum() {
20 super(tr("WGS84"), Ellipsoid.WGS84);
21 }
22}
Note: See TracBrowser for help on using the repository browser.