Changeset 10587 in ntrip for trunk/BNC/src/upload/bncephuploadcaster.cpp
- Timestamp:
- Dec 10, 2024, 3:57:21 PM (4 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/upload/bncephuploadcaster.cpp
r9436 r10587 91 91 int size = 0; 92 92 93 if (ephGPS && ephGPS-> type() == t_eph::GPS && (system == "ALL" || system.contains('G'))) {93 if (ephGPS && ephGPS->system() == t_eph::GPS && (system == "ALL" || system.contains('G'))) { 94 94 if (dt < 14400.0 || dt > -7200.0) { 95 95 size = t_ephEncoder::RTCM3(*ephGPS, Array); 96 96 } 97 97 } 98 else if (ephGPS && ephGPS-> type() == t_eph::QZSS && (system == "ALL" || system.contains('J'))) {98 else if (ephGPS && ephGPS->system() == t_eph::QZSS && (system == "ALL" || system.contains('J'))) { 99 99 if (dt < 7200.0 || dt > -3600.0) { 100 100 size = t_ephEncoder::RTCM3(*ephGPS, Array); … … 121 121 } 122 122 } 123 else if (ephGPS && ephGPS-> type() == t_eph::IRNSS && (system == "ALL" || system.contains('I'))) {123 else if (ephGPS && ephGPS->system() == t_eph::IRNSS && (system == "ALL" || system.contains('I'))) { 124 124 if (fabs(dt < 86400.0)) { 125 125 size = t_ephEncoder::RTCM3(*ephGPS, Array);
Note:
See TracChangeset
for help on using the changeset viewer.