Changeset 7039 in ntrip


Ignore:
Timestamp:
Jul 13, 2015, 5:29:39 PM (9 years ago)
Author:
stuerze
Message:

minor changes regarding file reading for PPP

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

Legend:

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

    r6556 r7039  
    9898      while (it.hasNext()) {
    9999        const t_orbCorr& corr = it.next();
    100         _corrIODs[QString(corr._prn.toString().c_str())] = corr._iod;
     100        _corrIODs[QString(corr._prn.toInternalString().c_str())] = corr._iod;
    101101      }
    102102      emit newOrbCorrections(orbCorrList);
  • trunk/BNC/src/rinex/rnxnavfile.cpp

    r6942 r7039  
    226226        t_eph* eph = *it;
    227227        double dt = eph->TOC() - tt;
    228         if (dt < 8*3600.0 && QString(eph->prn().toString().c_str()) == prn && eph->IOD() == iod) {
     228        if (dt < 8*3600.0 && QString(eph->prn().toInternalString().c_str()) == prn && eph->IOD() == iod) {
    229229          it = _ephs.erase(it);
    230230          return eph;
Note: See TracChangeset for help on using the changeset viewer.