- Timestamp:
- Jan 12, 2010, 5:34:12 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncmodel.cpp ¶
r2246 r2247 647 647 } 648 648 649 cout.setf(ios::fixed); 650 cout << "iObs = " << iObs << " " << prn.toAscii().data() << " " 651 << setprecision(3) << rhoCmp << " " 652 << setprecision(3) << satData->P3 << " " 653 << setprecision(3) << satData->L3 << " " 654 << ll(iObs) << endl; 649 ostringstream str; 650 str.setf(ios::fixed); 651 str << "iObs = " << iObs << " " << prn.toAscii().data() << " " 652 << setprecision(3) << rhoCmp << " " 653 << setprecision(3) << satData->P3 << " " 654 << setprecision(3) << satData->L3 << " " 655 << ll(iObs) << endl; 656 _log += str.str().c_str(); 655 657 } 656 658 } … … 669 671 //// beg test 670 672 { 671 cout.setf(ios::fixed); 673 ostringstream str; 674 str.setf(ios::fixed); 672 675 ColumnVector vv_code(epoData->sizeGPS()); 673 676 ColumnVector vv_phase(epoData->sizeGPS()); … … 682 685 } 683 686 684 cout << "residuals code " << setprecision(3) << vv_code.t(); 685 cout << "residuals phase " << setprecision(3) << vv_phase.t(); 686 cout << "residuals glo " << setprecision(3) << vv_glo.t(); 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(); 690 _log += str.str().c_str(); 687 691 } 688 692 //// end test -
TabularUnified trunk/BNC/bncpppclient.cpp ¶
r2244 r2247 332 332 ee->position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data()); 333 333 334 if ( prn[0] == 'G' &&CORR_REQUIRED) {334 if (CORR_REQUIRED) { 335 335 if (_corr.contains(prn)) { 336 336 t_corr* cc = _corr.value(prn);
Note:
See TracChangeset
for help on using the changeset viewer.