Ignore:
Timestamp:
2012-05-11T23:27:54+02:00 (12 years ago)
Author:
bastiK
Message:

change UTM datum to WGS84. This is correct according to Wikipedia and EPSG, also there is no big difference.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/UTM.java

    r5066 r5232  
    1919import org.openstreetmap.josm.data.Bounds;
    2020import org.openstreetmap.josm.data.coor.LatLon;
    21 import org.openstreetmap.josm.data.projection.datum.GRS80Datum;
     21import org.openstreetmap.josm.data.projection.datum.WGS84Datum;
    2222import org.openstreetmap.josm.data.projection.proj.ProjParameters;
    2323import org.openstreetmap.josm.tools.GBC;
     
    4848
    4949    public UTM(int zone, Hemisphere hemisphere, boolean offset) {
    50         ellps = Ellipsoid.GRS80;
     50        ellps = Ellipsoid.WGS84;
    5151        proj = new org.openstreetmap.josm.data.projection.proj.TransverseMercator();
    5252        try {
     
    5555            throw new RuntimeException(e);
    5656        }
    57         datum = GRS80Datum.INSTANCE;
     57        datum = WGS84Datum.INSTANCE;
    5858        updateParameters(zone, hemisphere, offset);
    5959    }
Note: See TracChangeset for help on using the changeset viewer.