- Timestamp:
- 2016-02-04T22:18:54+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/NmeaReader.java
r9703 r9740 20 20 import org.openstreetmap.josm.data.gpx.ImmutableGpxTrack; 21 21 import org.openstreetmap.josm.data.gpx.WayPoint; 22 import org.openstreetmap.josm.tools.date.DateUtils;23 22 24 23 /** … … 287 286 // As this sentence has no complete time only use it 288 287 // if there is no time so far 289 currentwp. put(GpxConstants.PT_TIME, DateUtils.fromDate(d));288 currentwp.setTime(d); 290 289 } 291 290 // elevation … … 398 397 } 399 398 // time: this sentence has complete time so always use it. 400 currentwp. put(GpxConstants.PT_TIME, DateUtils.fromDate(d));399 currentwp.setTime(d); 401 400 // speed 402 401 accu = e[GPRMC.SPEED.position];
Note:
See TracChangeset
for help on using the changeset viewer.