Changeset 6809 in ntrip for trunk/BNC/src/bncephuser.cpp


Ignore:
Timestamp:
Apr 30, 2015, 10:37:30 PM (9 years ago)
Author:
stuerze
Message:

I/NAV - F/NAV issue (hopefully:) solved in another way

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncephuser.cpp

    r6798 r6809  
    150150  }
    151151
    152   QString prn(newEph->prn().toString().c_str());
     152  QString prn(newEph->prn().toInternalString().c_str());
    153153
    154154  const t_eph* ephOld = ephLast(prn);
    155155
    156   if (ephOld == 0 ||
    157       newEph->isNewerThan(ephOld) ||
    158       newEph->hasOtherFlagsThan(ephOld)) {
     156  if (ephOld == 0 || newEph->isNewerThan(ephOld)) {
    159157    deque<t_eph*>& qq = _eph[prn];
    160158    qq.push_back(newEph);
     
    201199  // ----------------------------------------
    202200  const double MAXDIFF = 1000.0;
    203   QString      prn     = QString(eph->prn().toString().c_str());
     201  QString      prn     = QString(eph->prn().toInternalString().c_str());
    204202  t_eph*       ephL    = ephLast(prn);
    205203  if (ephL) {
     
    212210
    213211    if (diff < MAXDIFF) {
    214       if(dt != 0.0 || eph->hasOtherFlagsThan(ephL)) {
     212      if(dt != 0.0) {
    215213        eph->setCheckState(t_eph::ok);
    216214        ephL->setCheckState(t_eph::ok);
Note: See TracChangeset for help on using the changeset viewer.