Changeset 9588 in ntrip for trunk/BNC/src/PPP/pppSatObs.cpp


Ignore:
Timestamp:
Jan 7, 2022, 2:26:59 PM (2 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9586 r9588  
    3131
    3232using namespace BNC_PPP;
    33 using namespace std;
     33using std::cout;
     34using std::endl;
    3435
    3536// Constructor
     
    311312
    312313  retVal = sqrt(retVal);
     314
     315  // De-Weight GLONASS
     316  /* -----------------
     317  if (_prn.system() == 'R') {
     318    retVal *= 5.0;
     319  }*/
     320
    313321
    314322  // Elevation-Dependent Weighting
     
    556564
    557565      << "======================= " << endl
    558       << "PPP STRATEGY  : " <<  OPT->_obsmodelTypeStr.at((int)OPT->_obsModelType).toLocal8Bit().constData()
    559       <<  ((OPT->_pseudoObsIono) ? " with pseudo-observations for STEC" : "")  << endl
     566     << "PPP STRATEGY  : " <<  OPT->_obsmodelTypeStr.at((int)OPT->_obsModelType).toLocal8Bit().constData()
     567      <<  ((OPT->_pseudoObsIono) ? " with pseudo-observations for STEC" : "")          << endl
    560568      << "RHO           : " << setw(12) << setprecision(3) << _model._rho              << endl
    561569      << "ELE           : " << setw(12) << setprecision(3) << _model._eleSat * RHO_DEG << endl
     
    578586      if (_prn.system() == frqStr[0]) {
    579587      LOG << "PCO           : " << frqStr << setw(12) << setprecision(3) << _model._antPCO[iFreq]       << endl
    580            << "BIAS CODE     : " << frqStr << setw(12) << setprecision(3) << _model._codeBias[iFreq]     << endl
    581            << "BIAS PHASE    : " << frqStr << setw(12) << setprecision(3) << _model._phaseBias[iFreq]    << endl
    582            << "IONO CODEDELAY: " << frqStr << setw(12) << setprecision(3) << _model._ionoCodeDelay[iFreq]<< endl;
     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;
    583591      }
    584592    }
Note: See TracChangeset for help on using the changeset viewer.