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

Last change on this file since 6203 was 5926, checked in by bastiK, 11 years ago

clean up imports

  • Property svn:eol-style set to native
File size: 535 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 class GRS80Datum extends NullDatum {
13
14 public final static GRS80Datum INSTANCE = new GRS80Datum();
15
16 private GRS80Datum() {
17 super(tr("GRS80"), Ellipsoid.GRS80);
18 }
19}
Note: See TracBrowser for help on using the repository browser.