Changeset 9618 in ntrip for trunk


Ignore:
Timestamp:
Jan 23, 2022, 9:42:55 PM (2 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
3 edited

Legend:

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

    r9604 r9618  
    270270      return failure;
    271271    }
    272     if (!preProcessing &&
    273         (OPT->_obsModelType == OPT->DCMcodeBias ||
    274          OPT->_obsModelType == OPT->DCMphaseBias))  {
    275       if (nSat < 2.0) {
    276         LOG << " number of observations < 2\n";
    277         return failure;
    278       }
    279     }
    280 
     272   
    281273    if ((!iOutlier) &&
    282274        (OPT->_obsModelType == OPT->DCMcodeBias ||
     
    718710    for (unsigned jj = 0; jj < allObs.size(); jj++) {
    719711      if (allObs[jj]->prn().system() == sys) {
     712        allObs[jj]->resetOutlier();
    720713        obsVector.push_back(allObs[jj]);
    721714      }
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9612 r9618  
    632632////////////////////////////////////////////////////////////////////////////
    633633void t_pppSatObs::printObsMinusComputed() const {
    634 // TODO: LOG should be LOG
    635   cout.setf(ios::fixed);
    636   cout << "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl
     634// TODO: cout should be LOG
     635  LOG.setf(ios::fixed);
     636  LOG << "\nOBS-COMP for Satellite " << _prn.toString() << (isReference() ? " (Reference Satellite)" : "") << endl
    637637       << "========================== " << endl;
    638638  for (unsigned ii = 0; ii < OPT->LCs(_prn.system()).size(); ii++) {
    639639    t_lc::type tLC = OPT->LCs(_prn.system())[ii];
    640     cout << "OBS-CMP " << setw(4) << t_lc::toString(tLC) << ": " << _prn.toString() << " "
     640    LOG << "OBS-CMP " << setw(4) << t_lc::toString(tLC) << ": " << _prn.toString() << " "
    641641        << setw(12) << setprecision(3) << obsValue(tLC) << " "
    642642        << setw(12) << setprecision(3) << cmpValue(tLC) << " "
     
    644644  }
    645645}
    646 
    647646
    648647//
  • trunk/BNC/src/pppMain.cpp

    r9611 r9618  
    206206      opt->_obsModelType = t_pppOptions::PPPRTK;
    207207      opt->_pseudoObsIono  = false;
    208       opt->_noiseIon = 0.1;
     208      opt->_noiseIon = 10.0;
    209209    }
    210210    else if (settings.value("PPP/modelObs").toString() == "Uncombined PPP") {
    211211      opt->_obsModelType = t_pppOptions::UncombPPP;
    212       opt->_noiseIon = 0.1;
     212      opt->_noiseIon = 10.0;
    213213      if (opt->_pseudoObsIono) {
    214214        opt->_refSatRequired = true;
     
    219219      opt->_refSatRequired = true;
    220220      opt->_noiseCodeBias  = 100.0;
    221       opt->_noiseIon = 0.1;
     221      opt->_noiseIon = 10.0;
    222222    }
    223223    else if (settings.value("PPP/modelObs").toString() == "DCM with Phase Biases") {
     
    225225      opt->_refSatRequired = true;
    226226      opt->_noisePhaseBias = 100.0;
    227       opt->_noiseIon = 0.1;
     227      opt->_noiseIon = 10.0;
    228228    }
    229229#endif
Note: See TracChangeset for help on using the changeset viewer.