Changeset 6316 in ntrip
- Timestamp:
- Nov 7, 2014, 5:35:02 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r6315 r6316 747 747 << "Navigation File(s): " << _navFileNames.join(", ") << endl 748 748 << "RINEX Version : " << QString("%1").arg(obsFile->version(),4,'f',2) << endl 749 << "Marker name : " << _qcFile._markerName << endl750 << "Marker number : " << obsFile->markerNumber() << endl749 << "Marker Name : " << _qcFile._markerName << endl 750 << "Marker Number : " << obsFile->markerNumber() << endl 751 751 << "Receiver : " << _qcFile._receiverType << endl 752 752 << "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) 754 754 .arg(obsFile->xyz()(2), 14, 'f', 4) 755 755 .arg(obsFile->xyz()(3), 14, 'f', 4) << endl … … 757 757 .arg(obsFile->antNEU()(2), 8, 'f', 4) 758 758 .arg(obsFile->antNEU()(1), 8, 'f', 4) << endl 759 << "Start time : " << _qcFile._startTime.datestr().c_str() << ' '759 << "Start Time : " << _qcFile._startTime.datestr().c_str() << ' ' 760 760 << _qcFile._startTime.timestr(1,'.').c_str() << endl 761 << "End time : " << _qcFile._endTime.datestr().c_str() << ' '761 << "End Time : " << _qcFile._endTime.datestr().c_str() << ' ' 762 762 << _qcFile._endTime.timestr(1,'.').c_str() << endl 763 763 << "Interval : " << _qcFile._interval << endl; … … 809 809 } 810 810 *_log << endl; 811 QString prefixSys2 = " " + prefixSys; 811 812 itFrq.toFront(); 812 813 while (itFrq.hasNext()) { … … 842 843 } 843 844 *_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); 849 851 } 850 852 }
Note:
See TracChangeset
for help on using the changeset viewer.