Changeset 9618 in ntrip for trunk/BNC/src/PPP


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

minor changes

Location:
trunk/BNC/src/PPP
Files:
2 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//
Note: See TracChangeset for help on using the changeset viewer.