Changeset 35978 in osm for applications/editors/josm/plugins/NanoLog
- Timestamp:
- 2022-06-15T20:10:48+02:00 (3 years ago)
- Location:
- applications/editors/josm/plugins/NanoLog
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/NanoLog/build.xml
r35221 r35978 5 5 <property name="commit.message" value="NanoLog"/> 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 <property name="plugin.author" value="Ilya Zverev"/> 9 9 <property name="plugin.class" value="nanolog.NanoLogPlugin"/> -
applications/editors/josm/plugins/NanoLog/src/nanolog/Correlator.java
r35221 r35978 131 131 Integer direction = null; 132 132 if (prevWp != null) { 133 direction = Long.valueOf(Math.round(180.0 / Math.PI * -prevWp. getCoor().bearing(curWp.getCoor()))).intValue();133 direction = Long.valueOf(Math.round(180.0 / Math.PI * -prevWp.bearing(curWp))).intValue(); 134 134 } 135 135
Note:
See TracChangeset
for help on using the changeset viewer.