Changeset 8802 in ntrip for branches/BNC_2.12/src/rinex/rnxobsfile.cpp
- Timestamp:
- Sep 20, 2019, 2:50:50 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/rinex/rnxobsfile.cpp
r8745 r8802 1315 1315 const t_rnxSat& rnxSat = epo->rnxSat[ii]; 1316 1316 if (_header._obsTypes[rnxSat.prn.system()].size() > 0) { 1317 if (_header.version() < 3.0) { // exclude new GNSS such as BDS, QZSS, IRNSS, etc. 1318 if (rnxSat.prn.system() != 'G' && rnxSat.prn.system() != 'R' && 1319 rnxSat.prn.system() != 'E' && rnxSat.prn.system() != 'S' && 1320 rnxSat.prn.system() != 'I') { 1321 continue; 1322 } 1323 } 1317 1324 epoLocal.rnxSat.push_back(rnxSat); 1318 1325 } 1319 1326 } 1320 1327 std::stable_sort(epoLocal.rnxSat.begin(), epoLocal.rnxSat.end(), t_rnxSat::prnSort); 1328 1321 1329 if (version() < 3.0) { 1322 1330 return writeEpochV2(_stream, _header, &epoLocal);
Note:
See TracChangeset
for help on using the changeset viewer.