Changeset 7055 in ntrip for trunk/BNC/src
- Timestamp:
- Jul 16, 2015, 9:54:10 AM (9 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM/RTCM2Decoder.cpp
r7043 r7055 308 308 vector<string> hasIOD; 309 309 for (unsigned ii = 0; ii < 4; ii++) { 310 intIODcorr = 0;310 unsigned long IODcorr = 0; 311 311 double corrVal = 0; 312 312 const t_eph* eph = 0; -
trunk/BNC/src/RTCM3/RTCM3coDecoder.h
r6556 r7055 71 71 int _providerID[3]; 72 72 bncTime _lastTime; 73 QMap<t_prn, unsigned short>_IODs;73 QMap<t_prn, unsigned long> _IODs; 74 74 QMap<bncTime, QList<t_orbCorr> > _orbCorrections; 75 75 QMap<bncTime, QList<t_clkCorr> > _clkCorrections; -
trunk/BNC/src/combination/bnccomb.cpp
r7013 r7055 756 756 int updateInt = 0; 757 757 line.sprintf("%d %d %d %.1f %s" 758 " % 3d"758 " %lu" 759 759 " %8.3f %8.3f %8.3f %8.3f" 760 760 " %10.5f %10.5f %10.5f %10.5f" -
trunk/BNC/src/combination/bnccomb.h
r7011 r7055 71 71 } 72 72 ~cmbCorr() {} 73 QString _prn;74 bncTime _time;75 int_iod;76 t_eph* _eph;77 t_orbCorr _orbCorr;78 t_clkCorr _clkCorr;79 QString _acName;80 double _dClkResult;81 ColumnVector _diffRao;73 QString _prn; 74 bncTime _time; 75 unsigned long _iod; 76 t_eph* _eph; 77 t_orbCorr _orbCorr; 78 t_clkCorr _clkCorr; 79 QString _acName; 80 double _dClkResult; 81 ColumnVector _diffRao; 82 82 QString ID() {return _acName + "_" + _prn;} 83 83 }; -
trunk/BNC/src/pppRun.cpp
r6991 r7055 436 436 // ---------------- 437 437 t_eph* eph = 0; 438 const QMap<QString, int>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0;438 const QMap<QString, unsigned long>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0; 439 439 while ( (eph = _rnxNavFile->getNextEph(epo->tt, corrIODs)) != 0 ) { 440 440 _pppClient->putEphemeris(eph); -
trunk/BNC/src/rinex/corrfile.h
r6509 r7055 39 39 ~t_corrFile(); 40 40 void syncRead(const bncTime& tt); 41 const QMap<QString, int>& corrIODs() const {return _corrIODs;}41 const QMap<QString, unsigned long>& corrIODs() const {return _corrIODs;} 42 42 43 43 signals: … … 49 49 50 50 private: 51 std::ifstream _stream;52 std::string _lastLine;53 bncTime _lastEpoTime;54 QMap<QString, int> _corrIODs;51 std::ifstream _stream; 52 std::string _lastLine; 53 bncTime _lastEpoTime; 54 QMap<QString, unsigned long> _corrIODs; 55 55 }; 56 56 -
trunk/BNC/src/rinex/rnxnavfile.cpp
r7039 r7055 212 212 //////////////////////////////////////////////////////////////////////////// 213 213 t_eph* t_rnxNavFile::getNextEph(const bncTime& tt, 214 const QMap<QString, int>* corrIODs) {214 const QMap<QString, unsigned long>* corrIODs) { 215 215 216 216 // Get Ephemeris according to IOD 217 217 // ------------------------------ 218 218 if (corrIODs) { 219 QMapIterator<QString, int> itIOD(*corrIODs);219 QMapIterator<QString, unsigned long> itIOD(*corrIODs); 220 220 while (itIOD.hasNext()) { 221 221 itIOD.next(); 222 222 QString prn = itIOD.key(); 223 intiod = itIOD.value();223 unsigned long iod = itIOD.value(); 224 224 vector<t_eph*>::iterator it = _ephs.begin(); 225 225 while (it != _ephs.end()) { -
trunk/BNC/src/rinex/rnxnavfile.h
r6942 r7055 55 55 t_rnxNavFile(const QString& fileName, e_inpOut inpOut); 56 56 ~t_rnxNavFile(); 57 t_eph* getNextEph(const bncTime& tt, const QMap<QString, int>* corrIODs);57 t_eph* getNextEph(const bncTime& tt, const QMap<QString, unsigned long>* corrIODs); 58 58 const std::vector<t_eph*> ephs() const {return _ephs;} 59 59 double version() const {return _header._version;} -
trunk/BNC/src/satObs.h
r6857 r7055 87 87 std::string _staID; 88 88 t_prn _prn; 89 unsigned short_iod;89 unsigned long _iod; 90 90 bncTime _time; 91 91 unsigned int _updateInt; … … 102 102 std::string _staID; 103 103 t_prn _prn; 104 unsigned short_iod;104 unsigned long _iod; 105 105 bncTime _time; 106 106 unsigned int _updateInt;
Note:
See TracChangeset
for help on using the changeset viewer.