Changeset 9588 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Jan 7, 2022, 2:26:59 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppSatObs.cpp
r9586 r9588 31 31 32 32 using namespace BNC_PPP; 33 using namespace std; 33 using std::cout; 34 using std::endl; 34 35 35 36 // Constructor … … 311 312 312 313 retVal = sqrt(retVal); 314 315 // De-Weight GLONASS 316 /* ----------------- 317 if (_prn.system() == 'R') { 318 retVal *= 5.0; 319 }*/ 320 313 321 314 322 // Elevation-Dependent Weighting … … 556 564 557 565 << "======================= " << endl 558 559 << ((OPT->_pseudoObsIono) ? " with pseudo-observations for STEC" : "") <<endl566 << "PPP STRATEGY : " << OPT->_obsmodelTypeStr.at((int)OPT->_obsModelType).toLocal8Bit().constData() 567 << ((OPT->_pseudoObsIono) ? " with pseudo-observations for STEC" : "") << endl 560 568 << "RHO : " << setw(12) << setprecision(3) << _model._rho << endl 561 569 << "ELE : " << setw(12) << setprecision(3) << _model._eleSat * RHO_DEG << endl … … 578 586 if (_prn.system() == frqStr[0]) { 579 587 LOG << "PCO : " << frqStr << setw(12) << setprecision(3) << _model._antPCO[iFreq] << endl 580 581 582 588 << "BIAS CODE : " << frqStr << setw(12) << setprecision(3) << _model._codeBias[iFreq] << endl 589 << "BIAS PHASE : " << frqStr << setw(12) << setprecision(3) << _model._phaseBias[iFreq] << endl 590 << "IONO CODEDELAY: " << frqStr << setw(12) << setprecision(3) << _model._ionoCodeDelay[iFreq]<< endl; 583 591 } 584 592 }
Note:
See TracChangeset
for help on using the changeset viewer.