Changeset 9638 in ntrip for trunk


Ignore:
Timestamp:
Mar 2, 2022, 4:14:39 PM (2 years ago)
Author:
stuerze
Message:

bug fixed in phase bias merging

Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcedit.cpp

    r9366 r9638  
    257257      phaseShifts << obsFile->phaseShifts();
    258258    }
    259     phaseShifts.removeDuplicates();
    260259  }
    261260
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r8798 r9638  
    921921  QMap<QString, QPair<double, QStringList> >::const_iterator it =  _phaseShifts.begin();
    922922  while (it != _phaseShifts.end()) {
    923     strList.append(QString("%1_%2:%3").arg(it.key(), 3).arg(it.value().first, 9, 'f', 3).arg(it.value().second.join("")));
     923    strList.append(QString("%1_%2:%3").arg(it.key(), 3).arg(it.value().first, 9, 'f', 3).arg(it.value().second.join(" ")));
    924924    it++;
    925925  }
Note: See TracChangeset for help on using the changeset viewer.