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 * @since 4285 012 */ 013public final class GRS80Datum extends NullDatum { 014 015 /** 016 * The unique instance. 017 */ 018 public static final GRS80Datum INSTANCE = new GRS80Datum(); 019 020 private GRS80Datum() { 021 super(tr("GRS80"), Ellipsoid.GRS80); 022 } 023}