Changeset 9537 in ntrip
- Timestamp:
- Nov 9, 2021, 1:12:39 PM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r9527 r9537 688 688 else { 689 689 epochReProcessing = false; 690 _filter->rememberState(0); 691 } 692 690 if (OPT->_obsModelType == OPT->DCMcodeBias || 691 OPT->_obsModelType == OPT->DCMphaseBias) { 692 _filter->rememberState(0); 693 } 694 } 693 695 } while (epochReProcessing); 694 696 -
trunk/BNC/src/PPP/pppFilter.cpp
r9534 r9537 119 119 if (processSystem(OPT->LCs(sys), obsVector, _refPrn, 120 120 epoch->pseudoObsIono(), preProcessing) != success) { 121 LOG << "processSystem != success (pre-processing)" << endl; 121 122 _xFlt = xFltOld; 122 123 _QFlt = QFltOld; … … 162 163 if (processSystem(OPT->LCs(sys), obsVector, _refPrn, 163 164 epoch->pseudoObsIono(), preProcessing) != success) { 165 LOG << "processSystem != success (fin-processing)" << endl; 166 _xFlt = xFltOld; 167 _QFlt = QFltOld; 168 if (OPT->_obsModelType == OPT->DCMcodeBias || 169 OPT->_obsModelType == OPT->DCMphaseBias) { 170 _obsPool->deleteLastEpoch(); 171 restoreState(3); 172 } 164 173 return failure; 165 174 } … … 318 327 // Check number of observations, truncate matrices 319 328 // ----------------------------------------------- 320 if (iObs == -1) { 329 if (iObs == -1) {LOG << "iObs == -1\n"; 321 330 return failure; 322 331 } … … 716 725 return success; 717 726 } 718 //LOG << "datumTransformation: printParams before set" << endl;719 //_parlist.printParams(_epoTime);727 //LOG << "datumTransformation: printParams before set" << endl; 728 //_parlist.printParams(_epoTime); 720 729 721 730 // set AA2 … … 814 823 // ==================== 815 824 #ifdef BNC_DEBUG_PPP 816 //LOG << "AA1\n"; _datumTrafo->printMatrix(_datumTrafo->AA1(), _datumTrafo->numObs(), _datumTrafo->numPar());817 //LOG << "AA2\n"; _datumTrafo->printMatrix(_datumTrafo->AA2(), _datumTrafo->numObs(), _datumTrafo->numPar());825 //LOG << "AA1\n"; _datumTrafo->printMatrix(_datumTrafo->AA1(), _datumTrafo->numObs(), _datumTrafo->numPar()); 826 //LOG << "AA2\n"; _datumTrafo->printMatrix(_datumTrafo->AA2(), _datumTrafo->numObs(), _datumTrafo->numPar()); 818 827 #endif 819 828 if(_datumTrafo->computeTrafoMatrix() != success) { -
trunk/BNC/src/PPP/pppSatObs.cpp
r9497 r9537 315 315 retVal = sqrt(retVal); 316 316 317 // De-Weight GLONASS 318 // ----------------- 319 if (_prn.system() == 'R' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 320 retVal *= 5.0; 321 } 322 323 // De-Weight BDS 324 // ------------- 325 if (_prn.system() == 'C' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 326 retVal *= 2.0; 327 } 328 317 329 // Elevation-Dependent Weighting 318 330 // ----------------------------- … … 353 365 354 366 retVal = sqrt(retVal); 367 368 // De-Weight GLONASS 369 // ----------------- 370 if (_prn.system() == 'R' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 371 retVal *= 2.0; 372 } 373 374 // De-Weight BDS 375 // ------------- 376 if (_prn.system() == 'C' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) { 377 retVal *= 2.0; 378 } 379 355 380 356 381 return retVal; -
trunk/BNC/src/pppWidgets.cpp
r9494 r9537 155 155 #else 156 156 _modelObs->addItems(QString("Ionosphere-free PPP,Uncombined PPP,PPP-RTK,DCM with Code Biases,DCM with Phase Biases").split(",")); 157 _pseudoObs->addItems(QString("no, Ionosphere&Troposphere").split(","));157 _pseudoObs->addItems(QString("no,Troposphere,Ionosphere,Ionosphere&Troposphere").split(",")); 158 158 #endif 159 159
Note:
See TracChangeset
for help on using the changeset viewer.