Changeset 7717 in ntrip for trunk


Ignore:
Timestamp:
Feb 2, 2016, 5:03:51 PM (8 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r7716 r7717  
    8282
    8383      if (ephGPS) {
    84         if (eph->checkState() == t_eph::ok && timeDiff <= 4*3600) {
     84        if (timeDiff <= 4*3600) {
    8585          size = t_ephEncoder::RTCM3(*ephGPS, Array);
    8686        }
    8787      }
    8888      else if (ephGlo) {
    89         if (eph->checkState() == t_eph::ok && timeDiff <= 1*3600) {
     89        if (timeDiff <= 1*3600) {
    9090          size = t_ephEncoder::RTCM3(*ephGlo, Array);
    9191        }
    9292      }
    9393      else if (ephGal) {
    94         if (eph->checkState() == t_eph::ok && timeDiff <= 4*3600) {
     94        if (timeDiff <= 4*3600) {
    9595          size = t_ephEncoder::RTCM3(*ephGal, Array);
    9696        }
    9797      }
    9898      else if (ephSBAS) {
    99         if (eph->checkState() == t_eph::ok && timeDiff <= 600) {
     99        if (timeDiff <= 600) {
    100100          size = t_ephEncoder::RTCM3(*ephSBAS, Array);
    101101        }
    102102      }
    103103      else if (ephBDS) {
    104         if (eph->checkState() == t_eph::ok && timeDiff <= 6*3600) {
     104        if (timeDiff <= 6*3600) {
    105105          size = t_ephEncoder::RTCM3(*ephBDS, Array);
    106106        }
Note: See TracChangeset for help on using the changeset viewer.