Changeset 10481 in ntrip for trunk/BNC/src/combination
- Timestamp:
- May 7, 2024, 4:01:36 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r10479 r10481 726 726 t_eph* ephPrev = _ephUser.ephPrev(prn); 727 727 if (ephLast == 0) { 728 #ifdef BNC_DEBUG_CMB 728 729 emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1(), true); 730 #endif 729 731 delete _newCorr; _newCorr = 0; 730 732 continue; … … 750 752 } 751 753 else { 754 #ifdef BNC_DEBUG_CMB 752 755 emit newMessage("bncComb: eph not found for " + prn.mid(0,3).toLatin1() + 753 756 QString(" with IOD %1").arg(_newCorr->_iod).toLatin1(), true); 757 #endif 754 758 delete _newCorr; _newCorr = 0; 755 759 continue; … … 824 828 processSystem(epoTime, sys, out); 825 829 _buffer.remove(sys); 826 //emit newMessage(_log, false);827 830 if (_logFile) { 828 831 _logFile->write(epoTime.gpsw(),epoTime.gpssec(), QString(_log)); … … 833 836 void bncComb::processSystem(bncTime epoTime, char sys, QTextStream& out) { 834 837 835 out << "\n" << "Combination: " << sys << "\n" 836 << "--------------------------------" << "\n"; 838 out << "\n" 839 << epoTime.datestr().c_str() << " " 840 << epoTime.timestr().c_str() << " " 841 << "Combination: " << sys << "\n" 842 << "--------------------------------------" << "\n"; 837 843 838 844 // Observation Statistics … … 853 859 } 854 860 } 855 out << AC->name.toLatin1().data() << ": " << AC->numObs[sys] << "\n"; 861 out << epoTime.datestr().c_str() << " " 862 << epoTime.timestr().c_str() << " " 863 << AC->name.toLatin1().data() << ": " << AC->numObs[sys] << "\n"; 856 864 } 857 865 … … 876 884 cmbAC* AC = icAC.next(); 877 885 if (AC->numObs[sys] > 0) { 878 out << "Switching Master AC " 886 out << epoTime.datestr().c_str() << " " 887 << epoTime.timestr().c_str() << " " 888 << "Switching Master AC " 879 889 << _masterOrbitAC[sys].toLatin1().data() << " --> " 880 << AC->name.toLatin1().data() << " " 881 << epoTime.datestr().c_str() << " " 882 << epoTime.timestr().c_str() << "\n"; 890 << AC->name.toLatin1().data() << "\n"; 883 891 _masterOrbitAC[sys] = AC->name; 884 892 _masterIsAPC[sys] = AC->isAPC;
Note:
See TracChangeset
for help on using the changeset viewer.