Changeset 9590 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Jan 7, 2022, 8:54:55 PM (3 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r9585 r9590 20 20 #include <iomanip> 21 21 #include <cmath> 22 #include <stdlib.h>23 22 #include <string.h> 24 23 #include <stdexcept> -
trunk/BNC/src/PPP/pppFilter.cpp
r9583 r9590 164 164 epoch->pseudoObsIono(), preProcessing) != success) { 165 165 LOG << "processSystem != success (fin-processing)" << endl; 166 _xFlt = xFltOld;167 _QFlt = QFltOld;168 166 if (OPT->_obsModelType == OPT->DCMcodeBias || 169 167 OPT->_obsModelType == OPT->DCMphaseBias) { 168 _xFlt = xFltOld; 169 _QFlt = QFltOld; 170 170 _obsPool->deleteLastEpoch(); 171 171 restoreState(3); -
trunk/BNC/src/PPP/pppSatObs.cpp
r9588 r9590 31 31 32 32 using namespace BNC_PPP; 33 using std::cout; 34 using std::endl; 33 using namespace std; 35 34 36 35 // Constructor … … 314 313 315 314 // De-Weight GLONASS 316 / *-----------------315 // ----------------- 317 316 if (_prn.system() == 'R') { 318 retVal *= 5.0;319 } */317 retVal *= 2.0; 318 } 320 319 321 320 … … 597 596 //////////////////////////////////////////////////////////////////////////// 598 597 void t_pppSatObs::printObsMinusComputed() const { 599 // TODO: coutshould be LOG598 // TODO: LOG should be LOG 600 599 cout.setf(ios::fixed); 601 600 cout << "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl
Note:
See TracChangeset
for help on using the changeset viewer.