Changeset 10619 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Mar 11, 2025, 4:26:59 PM (8 days ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcedit.cpp
r10614 r10619 613 613 haveGnss[t_eph::QZSS] = true; 614 614 break; 615 case t_eph:: IRNSS:616 haveGnss[t_eph:: IRNSS] = true;615 case t_eph::NavIC: 616 haveGnss[t_eph::NavIC] = true; 617 617 break; 618 618 case t_eph::SBAS: … … 779 779 ephs.append(new t_ephBDS(*dynamic_cast<t_ephBDS*>(eph))); 780 780 } 781 else if (eph->system() == t_eph:: IRNSS) {781 else if (eph->system() == t_eph::NavIC) { 782 782 ephs.append(new t_ephGPS(*dynamic_cast<t_ephGPS*>(eph))); 783 783 } -
trunk/BNC/src/rinex/rnxnavfile.cpp
r10603 r10619 411 411 fmt.append("%1 N: GNSS NAV DATA C: BDS"); 412 412 break; 413 case t_eph:: IRNSS:414 fmt.append("%1 N: GNSS NAV DATA I: IRNSS");413 case t_eph::NavIC: 414 fmt.append("%1 N: GNSS NAV DATA I: NavIC"); 415 415 break; 416 416 case t_eph::SBAS: -
trunk/BNC/src/rinex/rnxobsfile.cpp
r10599 r10619 1371 1371 const t_rnxSat& rnxSat = epo->rnxSat[ii]; 1372 1372 if (_header._obsTypes[rnxSat.prn.system()].size() > 0) { 1373 if (_header.version() < 3.0) { // exclude new GNSS such as BDS, QZSS, IRNSS, etc.1373 if (_header.version() < 3.0) { // exclude new GNSS such as BDS, QZSS, NavIC, etc. 1374 1374 if (rnxSat.prn.system() != 'G' && rnxSat.prn.system() != 'R' && 1375 1375 rnxSat.prn.system() != 'E' && rnxSat.prn.system() != 'S' && -
trunk/BNC/src/rinex/rnxobsfile.h
r10587 r10619 237 237 const t_rnxSat& rnxSat = epo->rnxSat[ii]; 238 238 if (header._obsTypes[rnxSat.prn.system()].size() > 0) { 239 if (header.version() < 3.0) { // exclude new GNSS such as BDS, QZSS, IRNSS, etc.239 if (header.version() < 3.0) { // exclude new GNSS such as BDS, QZSS, NavIC, etc. 240 240 if (rnxSat.prn.system() != 'G' && rnxSat.prn.system() != 'R' && 241 241 rnxSat.prn.system() != 'E' && rnxSat.prn.system() != 'S' ) {
Note:
See TracChangeset
for help on using the changeset viewer.