- Timestamp:
- Aug 24, 2011, 10:43:04 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/combination/bnccomb.cpp
r3369 r3370 525 525 out.setRealNumberNotation(QTextStream::FixedNotation); 526 526 out.setRealNumberPrecision(3); 527 out << currentDateAndTimeGPS().toString("yy-MM-dd hh:mm:ss")527 out << resTime.datestr().c_str() << " " << resTime.timestr().c_str() 528 528 << " Maximum Residuum " << maxRes << ' ' 529 529 << llInfo[maxResIndex-1]; … … 549 549 } 550 550 } 551 out << currentDateAndTimeGPS().toString("yy-MM-dd hh:mm:ss ").toAscii().data(); 551 out << resTime.datestr().c_str() << " " 552 << resTime.timestr().c_str() << " "; 552 553 out.setRealNumberNotation(QTextStream::FixedNotation); 553 554 out.setFieldWidth(8); … … 555 556 out << pp->toString() << " " 556 557 << pp->xx << " +- " << sqrt(_QQ(pp->index,pp->index)) << endl; 558 out.setFieldWidth(0); 557 559 } 558 560 } … … 584 586 eph->position(resTime.gpsw(), resTime.gpssec(), xx, yy, zz, cc); 585 587 586 out << currentDateAndTimeGPS().toString("yy-MM-dd hh:mm:ss ").toAscii().data(); 588 out << resTime.datestr().c_str() << " " 589 << resTime.timestr().c_str() << " "; 587 590 out.setFieldWidth(3); 588 591 out << "Full Clock " << corr->prn << " " << corr->iod << " "; 589 592 out.setFieldWidth(14); 590 593 out << (cc + corr->dClk) * t_CST::c << endl; 594 out.setFieldWidth(0); 591 595 } 592 596 else {
Note:
See TracChangeset
for help on using the changeset viewer.