Ignore:
Timestamp:
Mar 2, 2018, 1:32:20 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
  • branches/BNC_2.12/src/rinex/rnxobsfile.h

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