Changeset 7717 in ntrip for trunk/BNC/src/upload
- Timestamp:
- Feb 2, 2016, 5:03:51 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/upload/bncephuploadcaster.cpp
r7716 r7717 82 82 83 83 if (ephGPS) { 84 if ( eph->checkState() == t_eph::ok &&timeDiff <= 4*3600) {84 if (timeDiff <= 4*3600) { 85 85 size = t_ephEncoder::RTCM3(*ephGPS, Array); 86 86 } 87 87 } 88 88 else if (ephGlo) { 89 if ( eph->checkState() == t_eph::ok &&timeDiff <= 1*3600) {89 if (timeDiff <= 1*3600) { 90 90 size = t_ephEncoder::RTCM3(*ephGlo, Array); 91 91 } 92 92 } 93 93 else if (ephGal) { 94 if ( eph->checkState() == t_eph::ok &&timeDiff <= 4*3600) {94 if (timeDiff <= 4*3600) { 95 95 size = t_ephEncoder::RTCM3(*ephGal, Array); 96 96 } 97 97 } 98 98 else if (ephSBAS) { 99 if ( eph->checkState() == t_eph::ok &&timeDiff <= 600) {99 if (timeDiff <= 600) { 100 100 size = t_ephEncoder::RTCM3(*ephSBAS, Array); 101 101 } 102 102 } 103 103 else if (ephBDS) { 104 if ( eph->checkState() == t_eph::ok &&timeDiff <= 6*3600) {104 if (timeDiff <= 6*3600) { 105 105 size = t_ephEncoder::RTCM3(*ephBDS, Array); 106 106 }
Note:
See TracChangeset
for help on using the changeset viewer.