Changeset 9415 in ntrip for branches/BNC_2.12/src
- Timestamp:
- Apr 19, 2021, 10:38:32 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/upload/bncephuploadcaster.cpp
r9413 r9415 82 82 83 83 if (ephGPS && ephGPS->type() == t_eph::GPS) { 84 if (dt > 14400.0 || dt <-7200.0) {84 if (dt < 14400.0 || dt > -7200.0) { 85 85 size = t_ephEncoder::RTCM3(*ephGPS, Array); 86 86 } 87 87 } else if (ephGPS && ephGPS->type() == t_eph::QZSS) { 88 if (dt > 7200.0 || dt <-3600.0) {88 if (dt < 7200.0 || dt > -3600.0) { 89 89 size = t_ephEncoder::RTCM3(*ephGPS, Array); 90 90 } 91 91 } else if (ephGlo) { 92 if (dt > 3900.0 || dt <-2100.0) {92 if (dt > 3900.0 || dt > -2100.0) { 93 93 size = t_ephEncoder::RTCM3(*ephGlo, Array); 94 94 } 95 95 } else if (ephGal) { 96 if (dt > 14400.0 || dt <0.0) {96 if (dt < 14400.0 || dt > 0.0) { 97 97 size = t_ephEncoder::RTCM3(*ephGal, Array); 98 98 } 99 99 } else if (ephSBAS) { 100 if (dt > 600.0 || dt <-600.0) {100 if (dt < 600.0 || dt > -600.0) { 101 101 size = t_ephEncoder::RTCM3(*ephSBAS, Array); 102 102 } 103 103 } else if (ephBDS) { 104 if (dt > 3900.0 || dt <0.0) {104 if (dt < 3900.0 || dt > 0.0) { 105 105 size = t_ephEncoder::RTCM3(*ephBDS, Array); 106 106 } 107 107 } else if (ephGPS && ephGPS->type() == t_eph::IRNSS) { 108 if (fabs(dt >86400.0)) {108 if (fabs(dt < 86400.0)) { 109 109 size = t_ephEncoder::RTCM3(*ephGPS, Array); 110 110 }
Note:
See TracChangeset
for help on using the changeset viewer.