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

Last change on this file since 15149 was 13627, checked in by Don-vip, 6 years ago

see #16129 - datum javadoc

  • Property svn:eol-style set to native
File size: 600 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 * @since 4285
12 */
13public final class GRS80Datum extends NullDatum {
14
15 /**
16 * The unique instance.
17 */
18 public static final GRS80Datum INSTANCE = new GRS80Datum();
19
20 private GRS80Datum() {
21 super(tr("GRS80"), Ellipsoid.GRS80);
22 }
23}
Note: See TracBrowser for help on using the repository browser.