Changeset 9100 in osm for applications/editors/josm/plugins/utilsplugin/src
- Timestamp:
- 2008-07-17T00:35:55+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java
r8952 r9100 107 107 Node n = wnew.nodes.get(i); 108 108 double xte = Math.abs(EARTH_RAD * xtd( 109 fromN.coor.lat() , fromN.coor.lon(),110 toN.coor.lat() , toN.coor.lon(),111 n.coor.lat() , n.coor.lon()));109 fromN.coor.lat() * Math.PI/180, fromN.coor.lon() * Math.PI/180, 110 toN.coor.lat() * Math.PI/180, toN.coor.lon() * Math.PI/180, 111 n.coor.lat() * Math.PI/180, n.coor.lon() * Math.PI/180)); 112 112 if (xte > xtemax) { 113 113 xtemax = xte;
Note:
See TracChangeset
for help on using the changeset viewer.