Changeset 6316 in ntrip


Ignore:
Timestamp:
Nov 7, 2014, 5:35:02 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6315 r6316  
    747747        << "Navigation File(s): " << _navFileNames.join(", ")             << endl
    748748        << "RINEX Version     : " << QString("%1").arg(obsFile->version(),4,'f',2) << endl
    749         << "Marker name       : " << _qcFile._markerName                  << endl
    750         << "Marker number     : " << obsFile->markerNumber()              << endl
     749        << "Marker Name       : " << _qcFile._markerName                  << endl
     750        << "Marker Number     : " << obsFile->markerNumber()              << endl
    751751        << "Receiver          : " << _qcFile._receiverType                << endl
    752752        << "Antenna           : " << _qcFile._antennaName                 << endl
    753         << "Approx pos XYZ    : " << QString("%1 %2 %3").arg(obsFile->xyz()(1), 14, 'f', 4)
     753        << "Position XYZ      : " << QString("%1 %2 %3").arg(obsFile->xyz()(1), 14, 'f', 4)
    754754                                                        .arg(obsFile->xyz()(2), 14, 'f', 4)
    755755                                                        .arg(obsFile->xyz()(3), 14, 'f', 4) << endl
     
    757757                                                        .arg(obsFile->antNEU()(2), 8, 'f', 4)
    758758                                                        .arg(obsFile->antNEU()(1), 8, 'f', 4) << endl
    759         << "Start time        : " << _qcFile._startTime.datestr().c_str() << ' '
     759        << "Start Time        : " << _qcFile._startTime.datestr().c_str() << ' '
    760760                                  << _qcFile._startTime.timestr(1,'.').c_str() << endl
    761         << "End time          : " << _qcFile._endTime.datestr().c_str()   << ' '
     761        << "End Time          : " << _qcFile._endTime.datestr().c_str()   << ' '
    762762                                  << _qcFile._endTime.timestr(1,'.').c_str()   << endl
    763763        << "Interval          : " << _qcFile._interval                    << endl;
     
    809809    }
    810810    *_log << endl;
     811    QString prefixSys2 = "    " + prefixSys;
    811812    itFrq.toFront();
    812813    while (itFrq.hasNext()) {
     
    842843      }
    843844      *_log << endl
    844             << prefixSys << prefixFrq << "Observations      : " << numObs << endl
    845             << prefixSys << prefixFrq << "Slips (file+found): " << numSlipsFlagged << " + " << numSlipsFound << endl
    846             << prefixSys << prefixFrq << "Gaps              : " << numGaps << endl
    847             << prefixSys << prefixFrq << "Mean SNR          : " << QString(" %1").arg(sumSNR,   4, 'f', 1) << endl
    848             << prefixSys << prefixFrq << "Mean Multipath    : " << QString(" %1").arg(sumMP, 3, 'f', 2) << endl;
     845            << prefixSys2 << prefixFrq << "Observations      : " << QString("%1\n").arg(numObs,           6)
     846            << prefixSys2 << prefixFrq << "Slips (file+found): " << QString("%1 +").arg(numSlipsFlagged,  6)
     847                                                                << QString("%1\n").arg(numSlipsFound,    6)
     848            << prefixSys2 << prefixFrq << "Gaps              : " << QString("%1\n").arg(numGaps,          6)
     849            << prefixSys2 << prefixFrq << "Mean SNR          : " << QString("%1\n").arg(sumSNR,   6, 'f', 1)
     850            << prefixSys2 << prefixFrq << "Mean Multipath    : " << QString("%1\n").arg(sumMP,    6, 'f', 2);
    849851    }
    850852  }
Note: See TracChangeset for help on using the changeset viewer.