Changeset 8372 in ntrip for trunk/BNC/src/bnccaster.cpp


Ignore:
Timestamp:
Jun 13, 2018, 2:37:07 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
  • trunk/BNC/src/bnccaster.cpp

    r8127 r8372  
    303303    if (epoTime <= maxTime) {
    304304      const QList<t_satObs>& allObs = itEpo.value();
    305       int sec = int(nint(epoTime.gpssec()));
    306       if ( (_out || _sockets) && (_samplingRate == 0 || sec % _samplingRate == 0) ) {
    307 
     305      int sec = int(nint(epoTime.gpssec()*10));
     306      if ( (_out || _sockets) && (_samplingRate == 0 || sec % (_samplingRate*10) == 0) ) {
    308307        QListIterator<t_satObs> it(allObs);
    309308        bool firstObs = true;
Note: See TracChangeset for help on using the changeset viewer.