Changeset 2114 in ntrip
- Timestamp:
- Dec 15, 2009, 10:15:24 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r2113 r2114 483 483 str << " PPP " << _staID.data() << " " 484 484 << epoData->tt.timestr(1) << " " << epoData->size() << " " 485 << setw(14) << setprecision(3) << x() << " " 486 << setw(14) << setprecision(3) << y() << " " 487 << setw(14) << setprecision(3) << z(); 485 << setw(14) << setprecision(3) << x() << " +- " 486 << setw(6) << setprecision(3) << sqrt(_QQ(1,1)) << " " 487 << setw(14) << setprecision(3) << y() << " +- " 488 << setw(6) << setprecision(3) << sqrt(_QQ(2,2)) << " " 489 << setw(14) << setprecision(3) << z() << " +- " 490 << setw(6) << setprecision(3) << sqrt(_QQ(3,3)); 491 if (_estTropo) { 492 str << " " << setw(6) << setprecision(3) << trp() << " +- " 493 << setw(6) << setprecision(3) << sqrt(_QQ(5,5)); 494 } 488 495 489 496 emit newMessage(QString(str.str().c_str()).toAscii(), true); … … 529 536 itMaxCode.remove(); 530 537 _QQ = QQsav; 531 cout << "Code " << prn.toAscii().data() << " " << vvMaxCode << endl; 538 539 QByteArray msg = "Outlier Code " + prn.toAscii() + " " 540 + QByteArray::number(vvMaxCode, 'f', 3); 541 emit newMessage(msg, true); 542 532 543 return 1; 533 544 } … … 538 549 itMaxPhase.remove(); 539 550 _QQ = QQsav; 540 cout << "Phase " << prn.toAscii().data() << " " << vvMaxPhase << endl; 551 552 QByteArray msg = "Outlier Phase " + prn.toAscii() + " " 553 + QByteArray::number(vvMaxPhase, 'f', 3); 554 emit newMessage(msg, true); 555 541 556 return 1; 542 557 }
Note:
See TracChangeset
for help on using the changeset viewer.