Changeset 6301 in ntrip


Ignore:
Timestamp:
Nov 7, 2014, 10:28:57 AM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6300 r6301  
    729729void t_reqcAnalyze::printReport(const t_rnxObsFile* obsFile) {
    730730
     731  static const double QC_FORMAT_VERSION = 1.0;
     732
    731733  if (!_log) {
    732734    return;
     
    735737  // Summary
    736738  // -------
    737   *_log << "File:            " << obsFile->fileName().toAscii().data() << endl
    738         << "Marker name:     " << _qcFile._markerName                  << endl
    739         << "Receiver:        " << _qcFile._receiverType                << endl
    740         << "Antenna:         " << _qcFile._antennaName                 << endl
    741         << "Start time:      " << _qcFile._startTime.datestr().c_str() << ' '
    742                                << _qcFile._startTime.timestr().c_str() << endl
    743         << "End time:        " << _qcFile._endTime.datestr().c_str()   << ' '
    744                                << _qcFile._endTime.timestr().c_str()   << endl
    745         << "Interval:        " << _qcFile._interval                    << endl
    746         << "# Sat.:          " << _qcFile._qcSatSum.size()             << endl;
     739  *_log << "QC Format Version : " << QString("%1").arg(QC_FORMAT_VERSION,3,'f',1) << endl
     740        << "Observation File  : " << obsFile->fileName().toAscii().data() << endl
     741        << "Navigation File(s): " << _navFileNames.join(", ")             << endl
     742        << "RINEX Version     : " << QString("%1").arg(obsFile->version(),4,'f',2) << endl
     743        << "Marker name       : " << _qcFile._markerName                  << endl
     744        << "Receiver          : " << _qcFile._receiverType                << endl
     745        << "Antenna           : " << _qcFile._antennaName                 << endl
     746        << "Start time        : " << _qcFile._startTime.datestr().c_str() << ' '
     747                                  << _qcFile._startTime.timestr().c_str() << endl
     748        << "End time          : " << _qcFile._endTime.datestr().c_str()   << ' '
     749                                  << _qcFile._endTime.timestr().c_str()   << endl
     750        << "Interval          : " << _qcFile._interval                    << endl
     751        << "# Satellites      : " << _qcFile._qcSatSum.size()             << endl;
    747752
    748753  int numObs          = 0;
Note: See TracChangeset for help on using the changeset viewer.