Changeset 7536 in ntrip for trunk/BNC/src/PPP_SSR_I
- Timestamp:
- Oct 20, 2015, 5:37:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP_SSR_I/pppFilter.cpp
r7287 r7536 613 613 614 614 if (OPT->useOrbClkCorr()) { 615 LOG << "Precise Point Positioning of Epoch " << _time.datestr() << "_" << _time.timestr( 1)615 LOG << "Precise Point Positioning of Epoch " << _time.datestr() << "_" << _time.timestr(3) 616 616 << "\n---------------------------------------------------------------\n"; 617 617 } 618 618 else { 619 LOG << "Single Point Positioning of Epoch " << _time.datestr() << "_" << _time.timestr( 1)620 << "\n-------------------------------------------------------------- \n";619 LOG << "Single Point Positioning of Epoch " << _time.datestr() << "_" << _time.timestr(3) 620 << "\n---------------------------------------------------------------\n"; 621 621 } 622 622 … … 634 634 t_pppParam* par = itPar.next(); 635 635 if (par->type == t_pppParam::RECCLK) { 636 LOG << "\n clk = " << setw(10) << setprecision(3) << par->xx 636 LOG << "\n" << _time.datestr() << "_" << _time.timestr(3) 637 << " CLK " << setw(10) << setprecision(3) << par->xx 637 638 << " +- " << setw(6) << setprecision(3) 638 639 << sqrt(_QQ(par->index,par->index)); … … 640 641 else if (par->type == t_pppParam::AMB_L3) { 641 642 ++par->numEpo; 642 LOG << "\n amb " << par->prn.mid(0,3).toAscii().data() << " = " 643 LOG << "\n" << _time.datestr() << "_" << _time.timestr(3) 644 << " AMB " << par->prn.mid(0,3).toAscii().data() << " " 643 645 << setw(10) << setprecision(3) << par->xx 644 646 << " +- " << setw(6) << setprecision(3) … … 648 650 else if (par->type == t_pppParam::TROPO) { 649 651 double aprTrp = delay_saast(M_PI/2.0); 650 LOG << "\n trp = " << par->prn.mid(0,3).toAscii().data() 652 LOG << "\n" << _time.datestr() << "_" << _time.timestr(3) 653 << " TRP " << par->prn.mid(0,3).toAscii().data() 651 654 << setw(7) << setprecision(3) << aprTrp << " " 652 655 << setw(6) << setprecision(3) << showpos << par->xx << noshowpos … … 655 658 } 656 659 else if (par->type == t_pppParam::GLONASS_OFFSET) { 657 LOG << "\n offGlo = " << setw(10) << setprecision(3) << par->xx 660 LOG << "\n" << _time.datestr() << "_" << _time.timestr(3) 661 << " OFFGLO " << setw(10) << setprecision(3) << par->xx 658 662 << " +- " << setw(6) << setprecision(3) 659 663 << sqrt(_QQ(par->index,par->index)); 660 664 } 661 665 else if (par->type == t_pppParam::GALILEO_OFFSET) { 662 LOG << "\n offGal = " << setw(10) << setprecision(3) << par->xx 666 LOG << "\n" << _time.datestr() << "_" << _time.timestr(3) 667 << " OFFGAL " << setw(10) << setprecision(3) << par->xx 663 668 << " +- " << setw(6) << setprecision(3) 664 669 << sqrt(_QQ(par->index,par->index)); 665 670 } 666 671 else if (par->type == t_pppParam::BDS_OFFSET) { 667 LOG << "\n offBds = " << setw(10) << setprecision(3) << par->xx 672 LOG << "\n" << _time.datestr() << "_" << _time.timestr(3) 673 << " OFFBDS " << setw(10) << setprecision(3) << par->xx 668 674 << " +- " << setw(6) << setprecision(3) 669 675 << sqrt(_QQ(par->index,par->index)); … … 680 686 // ---------------------------------------- 681 687 LOG << OPT->_roverName << " PPP " 682 << epoData->tt. timestr(1) << " " << epoData->sizeAll() << " "688 << epoData->tt.datestr() << "_" << epoData->tt.timestr(3) << " " << epoData->sizeAll() << " " 683 689 << setw(14) << setprecision(3) << x() << " +- " 684 690 << setw(6) << setprecision(3) << sqrt(_QQ(1,1)) << " " … … 937 943 useObs = OPT->ambLCs(satData->system()).size(); 938 944 if (satData->obsIndex != 0 && useObs) { 939 str << _time. timestr(1)945 str << _time.datestr() << "_" << _time.timestr(3) 940 946 << " RES " << satData->prn.mid(0,3).toAscii().data() 941 947 << (iPhase ? " L3 " : " P3 ") … … 1030 1036 nObs -= epoData->sizeSys(s); 1031 1037 } 1038 else { 1039 LOG << _time.datestr() << "_" << _time.timestr(3) 1040 << " SATNUM " << s << ' ' << right << setw(2) 1041 << epoData->sizeSys(s) << endl; 1042 } 1032 1043 } 1033 1044 … … 1040 1051 unsigned iObs = 0; 1041 1052 QMapIterator<QString, t_satData*> it(epoData->satData); 1053 1042 1054 while (it.hasNext()) { 1043 1055 it.next();
Note:
See TracChangeset
for help on using the changeset viewer.