Changeset 18048 in josm for trunk/src/org


Ignore:
Timestamp:
2021-07-17T15:51:20+02:00 (3 years ago)
Author:
Don-vip
Message:

fix #20677 - fix wrong parsing of RTKLIB .pos files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/rtklib/RtkLibPosReader.java

    r17839 r18048  
    8383                            currentwp.put(GpxConstants.RTKLIB_SDN, fields[IDX_SDN]);
    8484                            currentwp.put(GpxConstants.RTKLIB_SDE, fields[IDX_SDE]);
    85                             currentwp.put(GpxConstants.RTKLIB_SDE, fields[IDX_SDU]);
     85                            currentwp.put(GpxConstants.RTKLIB_SDU, fields[IDX_SDU]);
    8686                            currentwp.put(GpxConstants.RTKLIB_SDNE, fields[IDX_SDNE]);
    8787                            currentwp.put(GpxConstants.RTKLIB_SDEU, fields[IDX_SDEU]);
     
    9090                            currentwp.put(GpxConstants.RTKLIB_RATIO, fields[IDX_RATIO]);
    9191                            double sdn = Double.parseDouble(fields[IDX_SDN]);
    92                             double sde = Double.parseDouble(fields[IDX_SDN]);
     92                            double sde = Double.parseDouble(fields[IDX_SDE]);
    9393                            currentwp.put(GpxConstants.PT_HDOP, (float) Math.sqrt(sdn*sdn + sde*sde));
    9494                            waypoints.add(currentwp);
Note: See TracChangeset for help on using the changeset viewer.