Changeset 9245 in ntrip for trunk/BNC/src/upload


Ignore:
Timestamp:
Nov 12, 2020, 10:09:03 AM (3 years ago)
Author:
stuerze
Message:

another check is added, to prevent the usage of not updated nav data sets during ssr upload

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/upload/bncrtnetuploadcaster.cpp

    r9203 r9245  
    2222#include "bncsp3.h"
    2323#include "gnss.h"
     24#include "bncutils.h"
     25
    2426
    2527using namespace std;
     
    469471    }
    470472
    471     if (eph  &&
    472         eph->checkState() != t_eph::bad &&
     473    if (eph  &&  !outDatedBcep(eph)           &&  // detected from storage because of no update
     474        eph->checkState() != t_eph::bad       &&
    473475        eph->checkState() != t_eph::unhealthy &&
    474         eph->checkState() != t_eph::outdated) {
     476        eph->checkState() != t_eph::outdated) {  // detected during reception (bncephuser)
    475477      QMap<QString, double> codeBiases;
    476478      QList<phaseBiasSignal> phaseBiasList;
Note: See TracChangeset for help on using the changeset viewer.