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

Last change on this file since 13601 was 6362, checked in by Don-vip, 10 years ago

Checkstyle:

  • private constructors for util classes
  • final classes
  • missing "else" statements
  • import cleanup
  • Property svn:eol-style set to native
File size: 485 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 */
11public final class WGS84Datum extends NullDatum {
12
13 public static final WGS84Datum INSTANCE = new WGS84Datum();
14
15 private WGS84Datum() {
16 super(tr("WGS84"), Ellipsoid.WGS84);
17 }
18}
Note: See TracBrowser for help on using the repository browser.