Changeset 7169 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Aug 5, 2015, 2:29:18 PM (10 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/corrfile.h
r7055 r7169 39 39 ~t_corrFile(); 40 40 void syncRead(const bncTime& tt); 41 const QMap<QString, unsigned long>& corrIODs() const {return _corrIODs;}41 const QMap<QString, unsigned int>& corrIODs() const {return _corrIODs;} 42 42 43 43 signals: … … 49 49 50 50 private: 51 std::ifstream 52 std::string 53 bncTime 54 QMap<QString, unsigned long> _corrIODs;51 std::ifstream _stream; 52 std::string _lastLine; 53 bncTime _lastEpoTime; 54 QMap<QString, unsigned int> _corrIODs; 55 55 }; 56 56 -
trunk/BNC/src/rinex/rnxnavfile.cpp
r7055 r7169 212 212 //////////////////////////////////////////////////////////////////////////// 213 213 t_eph* t_rnxNavFile::getNextEph(const bncTime& tt, 214 const QMap<QString, unsigned long>* corrIODs) {214 const QMap<QString, unsigned int>* corrIODs) { 215 215 216 216 // Get Ephemeris according to IOD 217 217 // ------------------------------ 218 218 if (corrIODs) { 219 QMapIterator<QString, unsigned long> itIOD(*corrIODs);219 QMapIterator<QString, unsigned int> itIOD(*corrIODs); 220 220 while (itIOD.hasNext()) { 221 221 itIOD.next(); 222 222 QString prn = itIOD.key(); 223 unsigned longiod = itIOD.value();223 unsigned int iod = itIOD.value(); 224 224 vector<t_eph*>::iterator it = _ephs.begin(); 225 225 while (it != _ephs.end()) { -
trunk/BNC/src/rinex/rnxnavfile.h
r7055 r7169 55 55 t_rnxNavFile(const QString& fileName, e_inpOut inpOut); 56 56 ~t_rnxNavFile(); 57 t_eph* getNextEph(const bncTime& tt, const QMap<QString, unsigned long>* corrIODs);57 t_eph* getNextEph(const bncTime& tt, const QMap<QString, unsigned int>* corrIODs); 58 58 const std::vector<t_eph*> ephs() const {return _ephs;} 59 59 double version() const {return _header._version;}
Note:
See TracChangeset
for help on using the changeset viewer.