Changeset 6474 in ntrip for trunk/BNC/src/RTCM3
- Timestamp:
- Dec 28, 2014, 3:41:28 PM (10 years ago)
- Location:
- trunk/BNC/src/RTCM3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp
r6473 r6474 71 71 _out = 0; 72 72 73 qRegisterMetaType<bncTime>("bncTime");74 73 qRegisterMetaType< QList<t_orbCorr> >("QList<t_orbCorr>"); 75 74 qRegisterMetaType< QList<t_clkCorr> >("QList<t_clkCorr>"); 75 qRegisterMetaType< QList<t_satCodeBias> >("QList<t_satCodeBias>"); 76 76 77 77 connect(this, SIGNAL(newOrbCorrections(QList<t_orbCorr>)), … … 317 317 frqCodeBias._rnxType2ch = codeTypeToRnxType(sysCh, biasEntry.Type); 318 318 frqCodeBias._value = biasEntry.Bias; 319 satCodeBias._bias.push_back(frqCodeBias); 319 if (!frqCodeBias._rnxType2ch.empty()) { 320 satCodeBias._bias.push_back(frqCodeBias); 321 } 320 322 } 321 323 codeBiases.push_back(satCodeBias); … … 340 342 t_clkCorr::writeEpoch(_out, itClk.value()); 341 343 itClk.remove(); 344 } 345 } 346 QMutableMapIterator<bncTime, QList<t_satCodeBias> > itCB(_codeBiases); 347 while (itCB.hasNext()) { 348 itCB.next(); 349 if (itCB.key() < _lastTime) { 350 emit newCodeBiases(itCB.value()); 351 // t_satCodeBias::writeEpoch(_out, itCB.value()); 352 itCB.remove(); 342 353 } 343 354 } -
trunk/BNC/src/RTCM3/RTCM3coDecoder.h
r6472 r6474 46 46 void newOrbCorrections(QList<t_orbCorr>); 47 47 void newClkCorrections(QList<t_clkCorr>); 48 void newCodeBiases(QList<t_satCodeBias>); 48 49 void newMessage(QByteArray msg, bool showOnScreen); 49 50 void providerIDChanged(QString staID);
Note:
See TracChangeset
for help on using the changeset viewer.