- Timestamp:
- May 18, 2016, 11:02:57 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r7714 r7907 807 807 .arg(obsFile->antNEU()(1), 8, 'f', 4) << endl 808 808 << "Start Time : " << _qcFile._startTime.datestr().c_str() << ' ' 809 << _qcFile._startTime.timestr(1,'.').c_str() << endl809 << _qcFile._startTime.timestr(1,'.').c_str() << endl 810 810 << "End Time : " << _qcFile._endTime.datestr().c_str() << ' ' 811 << _qcFile._endTime.timestr(1,'.').c_str() << endl811 << _qcFile._endTime.timestr(1,'.').c_str() << endl 812 812 << "Interval : " << _qcFile._interval << endl; 813 814 int numPossibleObs = int((_qcFile._endTime - _qcFile._startTime + _qcFile._interval)/_qcFile._interval); 813 815 814 816 // Number of systems … … 905 907 sumMP /= numMP; 906 908 } 909 double ratio = double(numObs) / ((double(numPossibleObs) * double(qcSatVec.size()))); 907 910 *_log << endl 908 << prefixSys2 << prefixFrq << "Observations : " << QString("%1\n").arg(numObs, 6) 909 << prefixSys2 << prefixFrq << "Slips (file+found): " << QString("%1 +").arg(numSlipsFlagged, 6) 910 << QString("%1\n").arg(numSlipsFound, 6) 911 << prefixSys2 << prefixFrq << "Gaps : " << QString("%1\n").arg(numGaps, 6) 912 << prefixSys2 << prefixFrq << "Mean SNR : " << QString("%1\n").arg(sumSNR, 6, 'f', 1) 913 << prefixSys2 << prefixFrq << "Mean Multipath : " << QString("%1\n").arg(sumMP, 6, 'f', 2); 911 << prefixSys2 << prefixFrq << "Observations : " 912 << QString("%1 (%2) %3 \%\n").arg(numObs, 6).arg(numPossibleObs*qcSatVec.size(), 8).arg(ratio*100.0, 8, 'f', 2) 913 << prefixSys2 << prefixFrq << "Slips (file+found): " << QString("%1 +").arg(numSlipsFlagged, 8) 914 << QString("%1\n").arg(numSlipsFound, 8) 915 << prefixSys2 << prefixFrq << "Gaps : " << QString("%1\n").arg(numGaps, 8) 916 << prefixSys2 << prefixFrq << "Mean SNR : " << QString("%1\n").arg(sumSNR, 8, 'f', 1) 917 << prefixSys2 << prefixFrq << "Mean Multipath : " << QString("%1\n").arg(sumMP, 8, 'f', 2); 914 918 } 915 919 }
Note:
See TracChangeset
for help on using the changeset viewer.