Changeset 10042 in ntrip


Ignore:
Timestamp:
May 15, 2023, 10:38:50 AM (11 months ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
3 edited

Legend:

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

    r10041 r10042  
    3333using namespace std;
    3434
    35 const double   GLO_WEIGHT_FACTOR = 5.0;
     35const double   GLO_WEIGHT_FACTOR = 1.0;
    3636const double   BDS_WEIGHT_FACTOR = 1.0;
    3737
  • trunk/BNC/src/combination/bnccomb.cpp

    r10040 r10042  
    116116// Singleton: definition class variable
    117117////////////////////////////////////////////////////////////////////////////
    118 bncComb* bncComb::instance = nullptr; 
     118bncComb* bncComb::instance = nullptr;
    119119
    120120
     
    484484    // Check Correction Age
    485485    // --------------------
    486     //if (_lastEpoTimeOK.valid() && newClk->_time <= _lastEpoTimeOK) {
    487     if (_lastClkCorrTime.valid() && newClk->_time < _lastClkCorrTime) {
     486    if (_resTime.valid() && newClk->_time <= _resTime) {
    488487      emit newMessage("bncComb: old correction: " + acName.toLatin1() + " " + newClk->_prn.toString().c_str() +
    489                        //QString(" %1 ").arg(_lastEpoTimeOK.timestr().c_str()).toLatin1() + "vs. old" +
    490                        QString(" %1 ").arg(_lastClkCorrTime.timestr().c_str()).toLatin1() + "vs. old" +
    491                        QString(" %1 ").arg(newClk->_time.timestr().c_str()).toLatin1(), true);
     488          QString(" %1 ").arg(newClk->_time.timestr().c_str()).toLatin1() + "vs. last processing Epoch" +
     489          QString(" %1 ").arg(_resTime.timestr().c_str()).toLatin1(), true);
    492490      delete newClk;
    493491      continue;
     
    534532  while (_epoClkData.size()) {
    535533
    536     if(!_lastClkCorrTime.valid()) {
     534    if (!_lastClkCorrTime.valid()) {
    537535      return;
    538536    }
     
    545543    // -----------------------
    546544    if (epoTime < (_lastClkCorrTime - outWait)) {
    547       processEpoch(epoTime, clkCorrVec);
     545      _resTime = epoTime;
     546      processEpoch(_resTime, clkCorrVec);
    548547      delete _epoClkData.front();
    549548      _epoClkData.pop_front();
  • trunk/BNC/src/combination/bnccomb.h

    r10040 r10042  
    246246  std::deque<epoClkData*>                    _epoClkData;
    247247  bncTime                                    _lastClkCorrTime;
     248  bncTime                                    _resTime;
    248249  QMap<char, QVector<cmbParam*>>             _params;
    249250  QMap<char, cmbEpoch>                       _buffer;
Note: See TracChangeset for help on using the changeset viewer.