Changeset 6304 in ntrip


Ignore:
Timestamp:
Nov 7, 2014, 11:08:54 AM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6303 r6304  
    752752                                                        .arg(obsFile->antNEU()(1), 8, 'f', 4) << endl
    753753        << "Start time        : " << _qcFile._startTime.datestr().c_str() << ' '
    754                                   << _qcFile._startTime.timestr().c_str() << endl
     754                                  << _qcFile._startTime.timestr(1,'.').c_str() << endl
    755755        << "End time          : " << _qcFile._endTime.datestr().c_str()   << ' '
    756                                   << _qcFile._endTime.timestr().c_str()   << endl
     756                                  << _qcFile._endTime.timestr(1,'.').c_str()   << endl
    757757        << "Interval          : " << _qcFile._interval                    << endl;
    758758
     
    776776  *_log << endl;
    777777
     778  itSys.toFront();
     779  while (itSys.hasNext()) {
     780    itSys.next();
     781    const QChar&                      sys      = itSys.key();
     782    const QVector<const t_qcSatSum*>& qcSatVec = itSys.value();
     783    QString prefixSys = QString("  ") + sys + QString(": ");
     784    *_log << prefixSys << "Number of Satellites : " << qcSatVec.size() << endl;
     785  }
     786
    778787  // Epoch-Specific Output
    779788  // ---------------------
Note: See TracChangeset for help on using the changeset viewer.