Changeset 3757 in ntrip
- Timestamp:
- Apr 1, 2012, 4:07:39 PM (13 years ago)
- Location:
- trunk/BNC/rinex
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/bncpostprocess.cpp
r3755 r3757 141 141 // ---------------- 142 142 t_eph* eph = 0; 143 while ( (eph = _rnxNavFile->getNextEph(epo->tt)) != 0 ) { 143 const QMap<QString, int>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0; 144 while ( (eph = _rnxNavFile->getNextEph(epo->tt, corrIODs)) != 0 ) { 144 145 if (_pppClient->putNewEph(eph) != success) { 145 146 delete eph; eph = 0; -
trunk/BNC/rinex/rnxnavfile.cpp
r3753 r3757 161 161 // Read Next Ephemeris 162 162 //////////////////////////////////////////////////////////////////////////// 163 t_eph* t_rnxNavFile::getNextEph(const bncTime& tt) { 163 t_eph* t_rnxNavFile::getNextEph(const bncTime& tt, 164 const QMap<QString, int>* corrIODs) { 164 165 while (!_ephs.empty()) { 165 166 t_eph* eph = _ephs.front(); -
trunk/BNC/rinex/rnxnavfile.h
r3748 r3757 52 52 t_rnxNavFile(QString fileName); 53 53 ~t_rnxNavFile(); 54 t_eph* getNextEph(const bncTime& tt );54 t_eph* getNextEph(const bncTime& tt, const QMap<QString, int>* corrIODs); 55 55 float version() const {return _header.version();} 56 56 bool glonass() const {return _header.glonass();}
Note:
See TracChangeset
for help on using the changeset viewer.