- Timestamp:
- Jan 12, 2010, 5:42:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r2247 r2248 546 546 t_irc bncModel::update(t_epoData* epoData) { 547 547 548 _log = "Precise Point Positioning";548 _log.clear(); 549 549 550 550 _time = epoData->tt; … … 649 649 ostringstream str; 650 650 str.setf(ios::fixed); 651 str << " iObs = " << iObs << " " << prn.toAscii().data() << " "651 str << "\niObs = " << iObs << " " << prn.toAscii().data() << " " 652 652 << setprecision(3) << rhoCmp << " " 653 653 << setprecision(3) << satData->P3 << " " … … 685 685 } 686 686 687 str << " residuals code " << setprecision(3) << vv_code.t();688 str << "residuals phase " << setprecision(3) << vv_phase.t();689 str << "residuals glo " << setprecision(3) << vv_glo.t();687 str << "\nresiduals code " << setprecision(3) << vv_code.t(); 688 str << "residuals phase " << setprecision(3) << vv_phase.t(); 689 str << "residuals glo " << setprecision(3) << vv_glo.t(); 690 690 _log += str.str().c_str(); 691 691 } … … 839 839 } 840 840 841 if (vvMaxCodeGPS > MAXRES_CODE_GPS) { 841 if (vvMaxPhaseGlo > MAXRES_PHASE_GLO) { 842 QString prn = itMaxPhaseGlo.key(); 843 t_satData* satData = itMaxPhaseGlo.value(); 844 delete satData; 845 itMaxPhaseGlo.remove(); 846 _QQ = QQsav; 847 848 _log += "\nOutlier Phase " + prn.toAscii() + " " 849 + QByteArray::number(vvMaxPhaseGlo, 'f', 3); 850 851 return 1; 852 } 853 854 else if (vvMaxCodeGPS > MAXRES_CODE_GPS) { 842 855 QString prn = itMaxCodeGPS.key(); 843 856 t_satData* satData = itMaxCodeGPS.value(); … … 863 876 return 1; 864 877 } 865 else if (vvMaxPhaseGlo > MAXRES_PHASE_GLO) {866 QString prn = itMaxPhaseGlo.key();867 t_satData* satData = itMaxPhaseGlo.value();868 delete satData;869 itMaxPhaseGlo.remove();870 _QQ = QQsav;871 872 _log += "\nOutlier Phase " + prn.toAscii() + " "873 + QByteArray::number(vvMaxPhaseGlo, 'f', 3);874 875 return 1;876 }877 878 878 879 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.