Changeset 35978 in osm for applications/editors/josm/plugins/infomode
- Timestamp:
- 2022-06-15T20:10:48+02:00 (3 years ago)
- Location:
- applications/editors/josm/plugins/infomode
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/infomode/build.xml
r35221 r35978 5 5 <property name="commit.message" value="InfoMode : for shortcurt parser"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="1 5502"/>7 <property name="plugin.main.version" value="18494"/> 8 8 9 9 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/infomode/src/org/openstreetmap/josm/plugins/infomode/InfoMode.java
r35221 r35978 289 289 double vel = -1; 290 290 if (prevWp != null && wp.getTimeInMillis() != prevWp.getTimeInMillis()) { 291 vel = wp.g etCoor().greatCircleDistance(prevWp.getCoor())/291 vel = wp.greatCircleDistance(prevWp)/ 292 292 (wp.getTime()-prevWp.getTime()); 293 293 }
Note:
See TracChangeset
for help on using the changeset viewer.