- Timestamp:
- Aug 4, 2014, 2:01:20 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppThread.cpp
r5780 r5781 167 167 } 168 168 169 // class t_pppObs { 170 // std::string _rnxType2ch; 171 // double _code; 172 // bool _codeValid; 173 // double _phase; 174 // bool _phaseValid; 175 // double _doppler; 176 // bool _dopplerValid; 177 // double _snr; 178 // bool _snrValid; 179 // bool _slip; 180 // int _slipCounter; 181 // int _biasJumpCounter; 182 // }; 183 // 184 // class t_pppSatObs { 185 // t_prn _prn; 186 // bncTime _time; 187 // std::vector<t_pppObs> _obs; 188 // }; 189 169 190 vector<t_pppSatObs*> pppSatObs; 170 191 QListIterator<t_obs> it(obsList); … … 172 193 const t_obs& oldObs = it.next(); 173 194 t_pppSatObs* newObs = new t_pppSatObs; 195 196 newObs->_prn.set(oldObs.satSys, oldObs.satNum); 197 newObs->_time.set(oldObs.GPSWeek, oldObs.GPSWeeks); 174 198 175 199 pppSatObs.push_back(newObs);
Note:
See TracChangeset
for help on using the changeset viewer.