Changeset 6920 in ntrip


Ignore:
Timestamp:
Jun 18, 2015, 5:36:23 PM (9 years ago)
Author:
stuerze
Message:

minor changes PPP ssr I

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

Legend:

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

    r6882 r6920  
    265265  const t_ephGlo* ephGlo = dynamic_cast<const t_ephGlo*>(eph);
    266266  const t_ephGal* ephGal = dynamic_cast<const t_ephGal*>(eph);
     267  const t_ephBDS* ephBDS = dynamic_cast<const t_ephBDS*>(eph);
    267268  if      (ephGPS) {
    268     _ephUser->putNewEph(new t_ephGPS(*ephGPS), false);
     269    _ephUser->putNewEph(new t_ephGPS(*ephGPS), true);
    269270  }
    270271  else if (ephGlo) {
    271     _ephUser->putNewEph(new t_ephGlo(*ephGlo), false);
     272    _ephUser->putNewEph(new t_ephGlo(*ephGlo), true);
    272273  }
    273274  else if (ephGal) {
    274     _ephUser->putNewEph(new t_ephGal(*ephGal), false);
    275   }
     275    _ephUser->putNewEph(new t_ephGal(*ephGal), true);
     276  }
     277  else if (ephBDS) {
     278      _ephUser->putNewEph(new t_ephBDS(*ephBDS), true);
     279    }
    276280}
    277281
  • trunk/BNC/src/PPP_SSR_I/pppFilter.cpp

    r6875 r6920  
    611611    else if (par->type == t_pppParam::AMB_L3) {
    612612      ++par->numEpo;
    613       LOG << "\n    amb " << par->prn.toAscii().data() << " = "
     613      LOG << "\n    amb " << par->prn.mid(0,3).toAscii().data() << " = "
    614614          << setw(10) << setprecision(3) << par->xx
    615615          << " +- " << setw(6) << setprecision(3)
     
    619619    else if (par->type == t_pppParam::TROPO) {
    620620      double aprTrp = delay_saast(M_PI/2.0);
    621       LOG << "\n    trp     = " << par->prn.toAscii().data()
     621      LOG << "\n    trp     = " << par->prn.mid(0,3).toAscii().data()
    622622          << setw(7) << setprecision(3) << aprTrp << " "
    623623          << setw(6) << setprecision(3) << showpos << par->xx << noshowpos
     
    895895    if (satData->obsIndex != 0) {
    896896      str << _time.timestr(1)
    897           << " RES " << satData->prn.toAscii().data()
     897          << " RES " << satData->prn.mid(0,3).toAscii().data()
    898898          << (iPhase ? "   L3 " : "   P3 ")
    899899          << setw(9) << setprecision(4) << vv(satData->obsIndex) << endl;
Note: See TracChangeset for help on using the changeset viewer.