001 // License: GPL. For details, see LICENSE file.
002 package org.openstreetmap.josm.data.projection.datum;
003
004 import static org.openstreetmap.josm.tools.I18n.tr;
005
006 import org.openstreetmap.josm.data.coor.LatLon;
007 import org.openstreetmap.josm.data.projection.Ellipsoid;
008
009 /**
010 * This datum indicates, that GRS80 ellipsoid is used and no conversion
011 * is necessary to get from or to the WGS84 datum.
012 */
013 public class GRS80Datum extends NullDatum {
014
015 public final static GRS80Datum INSTANCE = new GRS80Datum();
016
017 private GRS80Datum() {
018 super(tr("GRS80"), Ellipsoid.GRS80);
019 }
020 }