Changeset 8294 in ntrip


Ignore:
Timestamp:
Mar 2, 2018, 1:31:21 PM (6 years ago)
Author:
stuerze
Message:

minor changes to allow GPS, GLONASS, Galileo and SBAS observations in RINEX v2.11 only

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/rnxobsfile.h

    r8127 r8294  
    219219      const t_rnxSat& rnxSat = epo->rnxSat[ii];
    220220      if (header._obsTypes[rnxSat.prn.system()].size() > 0) {
     221        if (header.version() < 3.0) { // exclude new GNSS such as BDS, QZSS, IRNSS, etc.
     222            if (rnxSat.prn.system() != 'G' && rnxSat.prn.system() != 'R' &&
     223                rnxSat.prn.system() != 'E' && rnxSat.prn.system() != 'S') {
     224              continue;
     225            }
     226        }
    221227        epoLocal.rnxSat.push_back(rnxSat);
    222228      }
Note: See TracChangeset for help on using the changeset viewer.