Changeset 4693 in ntrip


Ignore:
Timestamp:
Sep 9, 2012, 5:09:44 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r4692 r4693  
    710710        << "# Sat.:      " << _obsStat._prnStat.size() << endl;
    711711
     712  int numObs = 0;
     713  QMapIterator<QString, t_prnStat> it(_obsStat._prnStat);
     714  while (it.hasNext()) {
     715    it.next();
     716    const t_prnStat& prnStat = it.value();
     717    numObs += prnStat._numObs;
     718  }
     719  *_log << "# Obs.:      " << numObs << endl;
     720
    712721  _log->flush();
    713722}
Note: See TracChangeset for help on using the changeset viewer.