Changeset 6962 in ntrip for trunk/BNC/src
- Timestamp:
- Jun 25, 2015, 8:47:06 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r6961 r6962 385 385 const t_eph* ephPrev = _ephUser.ephPrev(prn); 386 386 if (ephLast == 0) { 387 emit newMessage("bncComb: eph not found " + prn. toAscii(), true);387 emit newMessage("bncComb: eph not found " + prn.mid(0,3).toAscii(), true); 388 388 delete newCorr; 389 389 continue; … … 398 398 } 399 399 else { 400 emit newMessage("bncComb: eph not found " + prn. toAscii() +400 emit newMessage("bncComb: eph not found " + prn.mid(0,3).toAscii() + 401 401 QString(" %1").arg(newCorr->_iod).toAscii(), true); 402 402 delete newCorr; … … 623 623 out << _resTime.datestr().c_str() << " " << _resTime.timestr().c_str() 624 624 << " Maximum Residuum " << maxRes << ' ' 625 << corrs()[maxResIndex-1]->_acName << ' ' << corrs()[maxResIndex-1]->_prn ;625 << corrs()[maxResIndex-1]->_acName << ' ' << corrs()[maxResIndex-1]->_prn.mid(0,3); 626 626 if (maxRes > _MAXRES) { 627 627 for (int iPar = 1; iPar <= _params.size(); iPar++) { … … 629 629 if (pp->type == cmbParam::offACSat && 630 630 pp->AC == corrs()[maxResIndex-1]->_acName && 631 pp->prn == corrs()[maxResIndex-1]->_prn ) {631 pp->prn == corrs()[maxResIndex-1]->_prn.mid(0,3)) { 632 632 QQ_sav.Row(iPar) = 0.0; 633 633 QQ_sav.Column(iPar) = 0.0; … … 648 648 out << _resTime.datestr().c_str() << ' ' 649 649 << _resTime.timestr().c_str() << " " 650 << corr->_acName << ' ' << corr->_prn ;650 << corr->_acName << ' ' << corr->_prn.mid(0,3); 651 651 out.setFieldWidth(10); 652 652 out << " res = " << vv[ii] << endl; … … 678 678 << _resTime.timestr().c_str() << " "; 679 679 out.setFieldWidth(3); 680 out << "Full Clock " << corr->_prn << " " << corr->_iod << " ";680 out << "Full Clock " << corr->_prn.mid(0,3) << " " << corr->_iod << " "; 681 681 out.setFieldWidth(14); 682 682 out << (xc(4) + corr->_dClkResult) * t_CST::c << endl; … … 1026 1026 out << _resTime.datestr().c_str() << ' ' 1027 1027 << _resTime.timestr().c_str() << " " 1028 << corr->_acName << ' ' << corr->_prn ;1028 << corr->_acName << ' ' << corr->_prn.mid(0,3); 1029 1029 out.setFieldWidth(6); 1030 1030 out << " res = " << vv[ii] << endl; … … 1056 1056 1057 1057 if (ephLast == 0) { 1058 out << "checkOrbit: missing eph (not found) " << corr->_prn << endl;1058 out << "checkOrbit: missing eph (not found) " << corr->_prn.mid(0,3) << endl; 1059 1059 delete corr; 1060 1060 im.remove(); 1061 1061 } 1062 1062 else if (corr->_eph == 0) { 1063 out << "checkOrbit: missing eph (zero) " << corr->_prn << endl;1063 out << "checkOrbit: missing eph (zero) " << corr->_prn.mid(0,3) << endl; 1064 1064 delete corr; 1065 1065 im.remove(); … … 1070 1070 } 1071 1071 else { 1072 out << "checkOrbit: missing eph (deleted) " << corr->_prn << endl;1072 out << "checkOrbit: missing eph (deleted) " << corr->_prn.mid(0,3) << endl; 1073 1073 delete corr; 1074 1074 im.remove();
Note:
See TracChangeset
for help on using the changeset viewer.