Changeset 7031 in ntrip


Ignore:
Timestamp:
Jul 10, 2015, 4:59:51 PM (9 years ago)
Author:
stuerze
Message:

minor changes in PPP SSR_I mode

Location:
trunk/BNC/src/PPP_SSR_I
Files:
2 edited

Legend:

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

    r7029 r7031  
    9191    const t_satObs* obs     = satObs[ii];
    9292    t_prn prn = obs->_prn;
     93    if (prn.system() == 'E') {prn.setFlags(1);} // force I/NAV usage
    9394    t_satData*   satData = new t_satData();
    9495
     
    114115      if (satCB && satCB->_bias.size()) {
    115116        for (unsigned ii = 0; ii < satCB->_bias.size(); ii++) {
     117
    116118          const t_frqCodeBias& bias = satCB->_bias[ii];
    117119          if (frqObs && frqObs->_rnxType2ch == bias._rnxType2ch) {
  • trunk/BNC/src/PPP_SSR_I/pppFilter.cpp

    r6974 r7031  
    531531      // ----------
    532532      else if (pp->type == t_pppParam::BDS_OFFSET) {
    533        _QQ(iPar,iPar) += 0.1 * 0.1; //TODO
     533        _QQ(iPar,iPar) += 0.1 * 0.1;    //TODO: TEST
    534534      }
    535535    }
     
    613613
    614614  if (OPT->useOrbClkCorr()) {
    615     LOG << "Precise Point Positioning of Epoch " << _time.timestr(1)
     615    LOG << "Precise Point Positioning of Epoch " << _time.datestr() <<  "_" << _time.timestr(1)
    616616        << "\n---------------------------------------------------------------\n";
    617617  }
    618618  else {
    619     LOG << "Single Point Positioning of Epoch " << _time.timestr(1)
     619    LOG << "Single Point Positioning of Epoch " << _time.datestr() <<  "_" << _time.timestr(1)
    620620        << "\n--------------------------------------------------------------\n";
    621621  }
     
    722722  QString prnGPS;
    723723  QString prnGlo;
    724   double  maxResGPS = 0.0;
    725   double  maxResGlo = 0.0;
     724  double  maxResGPS = 0.0; // all the other systems except GLONASS
     725  double  maxResGlo = 0.0; // GLONASS
    726726  findMaxRes(vv, satData, prnGPS, prnGlo, maxResGPS, maxResGlo);
    727727
     
    885885  // Phase Observations
    886886  // ------------------
     887
    887888  if (iPhase == 1) {
    888889    ll(iObs)      = satData->L3 - cmpValue(satData, true);
     
    10721073            LOG << "Neglected PRNs: ";
    10731074            if (!_outlierGPS.isEmpty()) {
    1074               LOG << _outlierGPS.last().toAscii().data() << ' ';
     1075              LOG << _outlierGPS.last().mid(0,3).toAscii().data() << ' ';
    10751076            }
    10761077            QStringListIterator itGlo(_outlierGlo);
    10771078            while (itGlo.hasNext()) {
    10781079              QString prn = itGlo.next();
    1079               LOG << prn.toAscii().data() << ' ';
     1080              LOG << prn.mid(0,3).toAscii().data() << ' ';
    10801081            }
    10811082          }
Note: See TracChangeset for help on using the changeset viewer.