Changeset 7536 in ntrip


Ignore:
Timestamp:
Oct 20, 2015, 5:37:01 PM (9 years ago)
Author:
stuerze
Message:

minor changes to harmonize PPP output formats

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppClient.cpp

    r7288 r7536  
    434434    }
    435435
    436     LOG << "\nResults of Epoch ";
     436    LOG << "\nPrecise Point Positioning of Epoch ";
    437437    if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover);
    438     LOG << "\n--------------------------------------\n";
     438    LOG << "\n---------------------------------------------------------------\n";
    439439
    440440    for (int iter = 1; iter <= 2; iter++) {
  • trunk/BNC/src/PPP_SSR_I/pppFilter.cpp

    r7287 r7536  
    613613
    614614  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)
    616616        << "\n---------------------------------------------------------------\n";
    617617  }
    618618  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";
    621621  }
    622622
     
    634634    t_pppParam* par = itPar.next();
    635635    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
    637638          << " +- " << setw(6) << setprecision(3)
    638639          << sqrt(_QQ(par->index,par->index));
     
    640641    else if (par->type == t_pppParam::AMB_L3) {
    641642      ++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() << " "
    643645          << setw(10) << setprecision(3) << par->xx
    644646          << " +- " << setw(6) << setprecision(3)
     
    648650    else if (par->type == t_pppParam::TROPO) {
    649651      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()
    651654          << setw(7) << setprecision(3) << aprTrp << " "
    652655          << setw(6) << setprecision(3) << showpos << par->xx << noshowpos
     
    655658    }
    656659    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
    658662          << " +- " << setw(6) << setprecision(3)
    659663          << sqrt(_QQ(par->index,par->index));
    660664    }
    661665    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
    663668          << " +- " << setw(6) << setprecision(3)
    664669          << sqrt(_QQ(par->index,par->index));
    665670    }
    666671    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
    668674          << " +- " << setw(6) << setprecision(3)
    669675          << sqrt(_QQ(par->index,par->index));
     
    680686  // ----------------------------------------
    681687  LOG << OPT->_roverName << "  PPP "
    682       << epoData->tt.timestr(1) << " " << epoData->sizeAll() << " "
     688      << epoData->tt.datestr() << "_" << epoData->tt.timestr(3) << " " << epoData->sizeAll() << " "
    683689      << setw(14) << setprecision(3) << x()                  << " +- "
    684690      << setw(6)  << setprecision(3) << sqrt(_QQ(1,1))       << " "
     
    937943                    useObs = OPT->ambLCs(satData->system()).size();
    938944    if (satData->obsIndex != 0 && useObs) {
    939       str << _time.timestr(1)
     945      str << _time.datestr() << "_" << _time.timestr(3)
    940946          << " RES " << satData->prn.mid(0,3).toAscii().data()
    941947          << (iPhase ? "   L3 " : "   P3 ")
     
    10301036          nObs -= epoData->sizeSys(s);
    10311037        }
     1038        else {
     1039          LOG << _time.datestr() << "_" << _time.timestr(3)
     1040              << " SATNUM " << s << ' ' << right << setw(2)
     1041              << epoData->sizeSys(s) << endl;
     1042        }
    10321043      }
    10331044
     
    10401051      unsigned iObs = 0;
    10411052      QMapIterator<QString, t_satData*> it(epoData->satData);
     1053
    10421054      while (it.hasNext()) {
    10431055        it.next();
Note: See TracChangeset for help on using the changeset viewer.