Changeset 18048 in josm for trunk/src/org
- Timestamp:
- 2021-07-17T15:51:20+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/rtklib/RtkLibPosReader.java
r17839 r18048 83 83 currentwp.put(GpxConstants.RTKLIB_SDN, fields[IDX_SDN]); 84 84 currentwp.put(GpxConstants.RTKLIB_SDE, fields[IDX_SDE]); 85 currentwp.put(GpxConstants.RTKLIB_SD E, fields[IDX_SDU]);85 currentwp.put(GpxConstants.RTKLIB_SDU, fields[IDX_SDU]); 86 86 currentwp.put(GpxConstants.RTKLIB_SDNE, fields[IDX_SDNE]); 87 87 currentwp.put(GpxConstants.RTKLIB_SDEU, fields[IDX_SDEU]); … … 90 90 currentwp.put(GpxConstants.RTKLIB_RATIO, fields[IDX_RATIO]); 91 91 double sdn = Double.parseDouble(fields[IDX_SDN]); 92 double sde = Double.parseDouble(fields[IDX_SD N]);92 double sde = Double.parseDouble(fields[IDX_SDE]); 93 93 currentwp.put(GpxConstants.PT_HDOP, (float) Math.sqrt(sdn*sdn + sde*sde)); 94 94 waypoints.add(currentwp);
Note:
See TracChangeset
for help on using the changeset viewer.