Ignore:
Timestamp:
Jun 13, 2018, 2:46:20 PM (6 years ago)
Author:
stuerze
Message:

minor changes to allow 10 Hz observation data processing (latency checker) and resampling (RINEX files, feed engine)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/latencychecker.cpp

    r8272 r8373  
    327327      const t_satObs& obs = it.next();
    328328      bool wrongObservationEpoch = checkForWrongObsEpoch(obs._time);
    329       l._newSec = static_cast<int>(obs._time.gpssec());
     329      l._newSec = static_cast<int>(nint(obs._time.gpssec()*10));
    330330      if (l._newSec > l._oldSec && !wrongObservationEpoch) {
    331         if (l._newSec % _miscIntr < l._oldSec % _miscIntr) {
     331        if (l._newSec % _miscIntr < l._oldSec % (_miscIntr * 10)) {
     332 
    332333          if (l._numLat > 0) {
    333334            if (l._meanDiff > 0.0) {
Note: See TracChangeset for help on using the changeset viewer.