Changeset 6882 in ntrip
- Timestamp:
- Jun 9, 2015, 10:14:19 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP_SSR_I/pppClient.cpp
r6875 r6882 87 87 88 88 satData->tt = obs->_time; 89 satData->prn = QString(obs->_prn.to String().c_str());89 satData->prn = QString(obs->_prn.toInternalString().c_str()); 90 90 satData->slipFlag = false; 91 91 satData->P1 = 0.0; … … 226 226 void t_pppClient::putOrbCorrections(const std::vector<t_orbCorr*>& corr) { 227 227 for (unsigned ii = 0; ii < corr.size(); ii++) { 228 QString prn = QString(corr[ii]->_prn.to String().c_str());228 QString prn = QString(corr[ii]->_prn.toInternalString().c_str()); 229 229 t_eph* eLast = _ephUser->ephLast(prn); 230 230 t_eph* ePrev = _ephUser->ephPrev(prn); … … 242 242 void t_pppClient::putClkCorrections(const std::vector<t_clkCorr*>& corr) { 243 243 for (unsigned ii = 0; ii < corr.size(); ii++) { 244 QString prn = QString(corr[ii]->_prn.to String().c_str());244 QString prn = QString(corr[ii]->_prn.toInternalString().c_str()); 245 245 t_eph* eLast = _ephUser->ephLast(prn); 246 246 t_eph* ePrev = _ephUser->ephPrev(prn);
Note:
See TracChangeset
for help on using the changeset viewer.