Changeset 8204 in ntrip for trunk/BNC/src/PPP_SSR_I
- Timestamp:
- Dec 11, 2017, 3:00:40 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP_SSR_I/pppFilter.cpp
r7974 r8204 648 648 ++par->numEpo; 649 649 LOG << "\n" << _time.datestr() << "_" << _time.timestr(3) 650 << " AMB " << par->prn.mid(0,3).to Ascii().data() << " "650 << " AMB " << par->prn.mid(0,3).toLatin1().data() << " " 651 651 << setw(10) << setprecision(3) << par->xx 652 652 << " +- " << setw(6) << setprecision(3) … … 657 657 double aprTrp = delay_saast(M_PI/2.0); 658 658 LOG << "\n" << _time.datestr() << "_" << _time.timestr(3) 659 << " TRP " << par->prn.mid(0,3).to Ascii().data()659 << " TRP " << par->prn.mid(0,3).toLatin1().data() 660 660 << setw(7) << setprecision(3) << aprTrp << " " 661 661 << setw(6) << setprecision(3) << showpos << par->xx << noshowpos … … 757 757 if (iPhase == 1) { 758 758 if (maxResGlo > 2.98 * OPT->_maxResL1) { 759 LOG << "Outlier Phase " << prnGlo.mid(0,3).to Ascii().data() << ' ' << maxResGlo << endl;759 LOG << "Outlier Phase " << prnGlo.mid(0,3).toLatin1().data() << ' ' << maxResGlo << endl; 760 760 return prnGlo; 761 761 } 762 762 else if (maxResGPS > MAXRES_PHASE_GPS) { 763 LOG << "Outlier Phase " << prnGPS.mid(0,3).to Ascii().data() << ' ' << maxResGPS << endl;763 LOG << "Outlier Phase " << prnGPS.mid(0,3).toLatin1().data() << ' ' << maxResGPS << endl; 764 764 return prnGPS; 765 765 } 766 766 } 767 767 else if (iPhase == 0 && maxResGPS > 2.98 * OPT->_maxResC1) { 768 LOG << "Outlier Code " << prnGPS.mid(0,3).to Ascii().data() << ' ' << maxResGPS << endl;768 LOG << "Outlier Code " << prnGPS.mid(0,3).toLatin1().data() << ' ' << maxResGPS << endl; 769 769 return prnGPS; 770 770 } … … 967 967 if (satData->obsIndex != 0 && useObs) { 968 968 str << _time.datestr() << "_" << _time.timestr(3) 969 << " RES " << satData->prn.mid(0,3).to Ascii().data()969 << " RES " << satData->prn.mid(0,3).toLatin1().data() 970 970 << (iPhase ? " L3 " : " P3 ") 971 971 << setw(9) << setprecision(4) << vv(satData->obsIndex) << endl; … … 1132 1132 LOG << "Neglected PRNs: "; 1133 1133 if (!_outlierGPS.isEmpty()) { 1134 LOG << _outlierGPS.last().mid(0,3).to Ascii().data() << ' ';1134 LOG << _outlierGPS.last().mid(0,3).toLatin1().data() << ' '; 1135 1135 } 1136 1136 QStringListIterator itGlo(_outlierGlo); 1137 1137 while (itGlo.hasNext()) { 1138 1138 QString prn = itGlo.next(); 1139 LOG << prn.mid(0,3).to Ascii().data() << ' ';1139 LOG << prn.mid(0,3).toLatin1().data() << ' '; 1140 1140 } 1141 1141 LOG << endl;
Note:
See TracChangeset
for help on using the changeset viewer.