Changeset 8973 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Jul 16, 2020, 11:22:58 PM (4 years ago)
Author:
stuerze
Message:

minor changes regarding igs ssr decoding

File:
1 edited

Legend:

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

    r8969 r8973  
    647647  }
    648648  else if (epoSecGlo != -1) {
     649#ifdef USE_SSR_RTCM
    649650    QDate date = dateAndTimeFromGPSweek(currentTime.gpsw(), currentTime.gpssec()).date();
    650651    epoSecGlo = epoSecGlo - 3 * 3600 + gnumleap(date.year(), date.month(), date.day());
     652#endif
    651653    _lastTime.set(currentWeek, epoSecGlo);
    652654  }
     
    661663  }
    662664  else if (epoSecBds != -1) {
     665#ifdef USE_SSR_RTCM
    663666    epoSecBds += 14.0;
    664667    if (epoSecBds > 604800.0) {
    665668      epoSecBds -= 7.0*24.0*60.0*60.0;
    666669    }
     670#endif
    667671    _lastTime.set(currentWeek, epoSecBds);
    668672  }
Note: See TracChangeset for help on using the changeset viewer.