Changeset 9411 in ntrip
- Timestamp:
- Apr 19, 2021, 3:45:14 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/upload/bncephuploadcaster.cpp
r9407 r9411 81 81 int size = 0; 82 82 83 if (ephGPS && ephGPS->type() == t_eph::GPS && (system == "ALL" || system == "GPS")) {83 if (ephGPS && ephGPS->type() == t_eph::GPS) { 84 84 if (dt > 14400.0 || dt < -7200.0) { 85 85 size = t_ephEncoder::RTCM3(*ephGPS, Array); 86 86 } 87 } else if (ephGPS && ephGPS->type() == t_eph::QZSS && (system == "ALL" || system == "QZSS")) {87 } else if (ephGPS && ephGPS->type() == t_eph::QZSS) { 88 88 if (dt > 7200.0 || dt < -3600.0) { 89 89 size = t_ephEncoder::RTCM3(*ephGPS, Array); 90 90 } 91 } else if (ephGlo && (system == "ALL" || system == "GLONASS")) {91 } else if (ephGlo) { 92 92 if (dt > 3900.0 || dt < -2100.0) { 93 93 size = t_ephEncoder::RTCM3(*ephGlo, Array); 94 94 } 95 } else if (ephGal && (system == "ALL" || system == "Galileo")) {95 } else if (ephGal) { 96 96 if (dt > 14400.0 || dt < 0.0) { 97 97 size = t_ephEncoder::RTCM3(*ephGal, Array); 98 98 } 99 } else if (ephSBAS && (system == "ALL" || system == "SBAS")) {99 } else if (ephSBAS) { 100 100 if (dt > 600.0 || dt < -600.0) { 101 101 size = t_ephEncoder::RTCM3(*ephSBAS, Array); 102 102 } 103 } else if (ephBDS && (system == "ALL" || system == "BDS")) {103 } else if (ephBDS) { 104 104 if (dt > 3900.0 || dt < 0.0) { 105 105 size = t_ephEncoder::RTCM3(*ephBDS, Array);
Note:
See TracChangeset
for help on using the changeset viewer.