Changeset 29183 in osm


Ignore:
Timestamp:
2013-01-08T20:02:00+01:00 (12 years ago)
Author:
oliverw
Message:

Removed Geoid data (inaccurate but expensize on size).

Location:
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/WayPointHelper.java

    r27285 r29183  
    207207         */
    208208        public static byte getGeoidCorrection(WayPoint wpt) {
     209                /*
    209210                int lat = (int)Math.round(wpt.getCoor().lat());
    210211                int lon = (int)Math.round(wpt.getCoor().lon());
    211212                byte geoid = GeoidData.getGeoid(lat, lon);
    212                 /*
     213               
    213214                System.out.println(
    214215                                String.format("Geoid(%d, %d) = %d", lat, lon, geoid));
    215 */
    216                 return geoid;
     216                 */
     217                return 0;
    217218        }
    218219
Note: See TracChangeset for help on using the changeset viewer.