Changeset 9397 in ntrip


Ignore:
Timestamp:
Mar 30, 2021, 4:35:52 PM (3 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/rinex/rnxobsfile.h

    r8802 r9397  
    3939
    4040#define defaultRnxObsVersion2 2.11
    41 #define defaultRnxObsVersion3 3.04
     41#define defaultRnxObsVersion3 3.05
    4242
    4343class t_rnxObsHeader {
     
    123123    t_prn                   prn;
    124124    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;}
    126126  };
    127127
     
    229229      }
    230230    }
    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
    233233    if (header.version() >= 3.0) {
    234234      writeEpochV3(stream, header, &epoLocal);
Note: See TracChangeset for help on using the changeset viewer.