Changeset 18740 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2023-05-30T17:45:50+02:00 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/nmea/NmeaReader.java
r18739 r18740 433 433 } 434 434 // reference ID 435 accu = e[GGA.REF.position]; 436 if (!accu.isEmpty()) { 437 currentwp.put(GpxConstants.PT_DGPSID, accu); 435 if(GGA.REF.position < e.length) 436 { 437 accu = e[GGA.REF.position]; 438 if (!accu.isEmpty()) { 439 currentwp.put(GpxConstants.PT_DGPSID, accu); 440 } 438 441 } 439 442 } else if (isSentence(e[0], Sentence.VTG)) {
Note:
See TracChangeset
for help on using the changeset viewer.