Changeset 6309 in ntrip for trunk/BNC/src
- Timestamp:
- Nov 7, 2014, 11:54:40 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r6308 r6309 737 737 // Summary 738 738 // ------- 739 *_log << "QC Format Version : " << QString("%1").arg(QC_FORMAT_VERSION,3,'f',1) << endl 739 *_log << "QC Format Version : " << QString("%1").arg(QC_FORMAT_VERSION,3,'f',1) << endl << endl 740 740 << "Observation File : " << obsFile->fileName().toAscii().data() << endl 741 741 << "Navigation File(s): " << _navFileNames.join(", ") << endl … … 768 768 } 769 769 770 *_log << "N umber of Systems: " << systemMap.size() << " ";770 *_log << "Navigation Systems: " << systemMap.size() << " "; 771 771 QMapIterator<QChar, QVector<const t_qcSatSum*> > itSys(systemMap); 772 772 while (itSys.hasNext()) { … … 782 782 const QVector<const t_qcSatSum*>& qcSatVec = itSys.value(); 783 783 QString prefixSys = QString(" ") + sys + QString(": "); 784 *_log << prefixSys << "Number of Satellites : " << qcSatVec.size() << endl;785 784 QMap<QString, QVector<const t_qcFrqSum*> > frqMap; 786 785 for (int ii = 0; ii < qcSatVec.size(); ii++) { … … 789 788 while (itFrq.hasNext()) { 790 789 itFrq.next(); 791 const QString& frqType = itFrq.key();790 QString frqType = itFrq.key(); if (frqType.length() < 2) frqType += ' '; 792 791 const t_qcFrqSum& qcFrqSum = itFrq.value(); 793 792 frqMap[frqType].push_back(&qcFrqSum); 794 793 } 795 794 } 796 *_log << prefixSys << "Tracking Modes : " << frqMap.size() << " "; 795 *_log << endl 796 << prefixSys << "Satellites : " << qcSatVec.size() << endl 797 << prefixSys << "Tracking Modes: " << frqMap.size() << " "; 797 798 QMapIterator<QString, QVector<const t_qcFrqSum*> > itFrq(frqMap); 798 799 while (itFrq.hasNext()) { 799 800 itFrq.next(); 800 const QString& frqType = itFrq.key();801 QString frqType = itFrq.key(); if (frqType.length() < 2) frqType += ' '; 801 802 *_log << ' ' << frqType; 802 803 } … … 805 806 while (itFrq.hasNext()) { 806 807 itFrq.next(); 807 const QString& frqType = itFrq.key();808 QString frqType = itFrq.key(); if (frqType.length() < 2) frqType += ' '; 808 809 const QVector<const t_qcFrqSum*> qcFrqVec = itFrq.value(); 809 810 QString prefixFrq = QString(" ") + frqType + QString(": "); … … 820 821 numGaps += qcFrqSum->_numGaps ; 821 822 } 822 *_log << prefixSys << prefixFrq << "Observations : " << numObs << endl 823 *_log << endl 824 << prefixSys << prefixFrq << "Observations : " << numObs << endl 823 825 << prefixSys << prefixFrq << "Slips (file+found) : " << numSlipsFlagged << " + " << numSlipsFound << endl 824 826 << prefixSys << prefixFrq << "Gaps : " << numGaps << endl; … … 832 834 return; 833 835 } 836 *_log << endl; 834 837 for (int iEpo = 0; iEpo < _qcFile._qcEpo.size(); iEpo++) { 835 838 const t_qcEpo& qcEpo = _qcFile._qcEpo[iEpo];
Note:
See TracChangeset
for help on using the changeset viewer.