source: josm/trunk/src/org/openstreetmap/josm/data/projection/datum/GRS80Datum.java@ 8308

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

fix some Sonar issues

  • Property svn:eol-style set to native
File size: 585 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 * This datum indicates, that GRS80 ellipsoid is used and no conversion
10 * is necessary to get from or to the WGS84 datum.
11 */
12public final class GRS80Datum extends NullDatum {
13
14 /**
15 * The unique instance.
16 */
17 public static final GRS80Datum INSTANCE = new GRS80Datum();
18
19 private GRS80Datum() {
20 super(tr("GRS80"), Ellipsoid.GRS80);
21 }
22}
Note: See TracBrowser for help on using the repository browser.