Changeset 9397 in ntrip for branches/BNC_2.12/src/rinex
- Timestamp:
- Mar 30, 2021, 4:35:52 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/rinex/rnxobsfile.h
r8802 r9397 39 39 40 40 #define defaultRnxObsVersion2 2.11 41 #define defaultRnxObsVersion3 3.0 441 #define defaultRnxObsVersion3 3.05 42 42 43 43 class t_rnxObsHeader { … … 123 123 t_prn prn; 124 124 QMap<QString, t_rnxObs> obs; 125 static bool prnSort(const t_rnxSat rnxSat1, const t_rnxSat rnxSat2) {return rnxSat1.prn < rnxSat2.prn;} 125 static bool prnSort(const t_rnxSat rnxSat1, const t_rnxSat rnxSat2) {return rnxSat1.prn < rnxSat2.prn;} 126 126 }; 127 127 … … 229 229 } 230 230 } 231 std::stable_sort(epoLocal.rnxSat.begin(), epoLocal.rnxSat.end(), t_rnxSat::prnSort); 232 231 std::stable_sort(epoLocal.rnxSat.begin(), epoLocal.rnxSat.end(), t_rnxSat::prnSort); 232 233 233 if (header.version() >= 3.0) { 234 234 writeEpochV3(stream, header, &epoLocal);
Note:
See TracChangeset
for help on using the changeset viewer.