Changeset 6490 in ntrip


Ignore:
Timestamp:
Dec 28, 2014, 5:42:31 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp

    r6489 r6490  
    365365  }
    366366
     367  // Ionospheric Model
     368  // -----------------
     369  if (_vTEC.NumLayers > 0) {
     370
     371  }
     372
    367373  // Dump all older epochs
    368374  // ---------------------
     
    401407      t_satPhaseBias::writeEpoch(_out, itPB.value());
    402408      itPB.remove();
     409    }
     410  }
     411  QMutableMapIterator<bncTime, t_vTec> itTec(_vTecMap);
     412  while (itTec.hasNext()) {
     413    itTec.next();
     414    if (itTec.key() < _lastTime) {
     415      emit newTec(itTec.value());
     416      t_vTec::write(_out, itTec.value());
     417      itTec.remove();
    403418    }
    404419  }
Note: See TracChangeset for help on using the changeset viewer.