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