Changeset 10619 in ntrip for trunk/BNC/src/rinex


Ignore:
Timestamp:
Mar 11, 2025, 4:26:59 PM (8 days ago)
Author:
stuerze
Message:

IRNSS replaced by NavIC

Location:
trunk/BNC/src/rinex
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcedit.cpp

    r10614 r10619  
    613613        haveGnss[t_eph::QZSS] = true;
    614614        break;
    615       case t_eph::IRNSS:
    616         haveGnss[t_eph::IRNSS] = true;
     615      case t_eph::NavIC:
     616        haveGnss[t_eph::NavIC] = true;
    617617        break;
    618618      case t_eph::SBAS:
     
    779779        ephs.append(new t_ephBDS(*dynamic_cast<t_ephBDS*>(eph)));
    780780      }
    781       else if (eph->system() == t_eph::IRNSS) {
     781      else if (eph->system() == t_eph::NavIC) {
    782782        ephs.append(new t_ephGPS(*dynamic_cast<t_ephGPS*>(eph)));
    783783      }
  • trunk/BNC/src/rinex/rnxnavfile.cpp

    r10603 r10619  
    411411        fmt.append("%1           N: GNSS NAV DATA    C: BDS");
    412412        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");
    415415        break;
    416416      case t_eph::SBAS:
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r10599 r10619  
    13711371    const t_rnxSat& rnxSat = epo->rnxSat[ii];
    13721372    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.
    13741374          if (rnxSat.prn.system() != 'G' && rnxSat.prn.system() != 'R' &&
    13751375              rnxSat.prn.system() != 'E' && rnxSat.prn.system() != 'S' &&
  • trunk/BNC/src/rinex/rnxobsfile.h

    r10587 r10619  
    237237      const t_rnxSat& rnxSat = epo->rnxSat[ii];
    238238      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.
    240240            if (rnxSat.prn.system() != 'G' && rnxSat.prn.system() != 'R' &&
    241241                rnxSat.prn.system() != 'E' && rnxSat.prn.system() != 'S' ) {
Note: See TracChangeset for help on using the changeset viewer.