Changeset 8354 in ntrip for trunk/BNC/src/rinex/rnxnavfile.cpp


Ignore:
Timestamp:
May 18, 2018, 2:24:46 PM (6 years ago)
Author:
stuerze
Message:

inidividual satellite system will eb considerred during concatenation of epehemris files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/rnxnavfile.cpp

    r8204 r8354  
    294294  }
    295295  else {
    296     *_stream << QString("%1           N: GNSS NAV DATA    M: MIXED")
     296    QString fmt;
     297    t_eph::e_type sys = satSystem();
     298    switch(sys) {
     299      case t_eph::GPS:
     300        fmt.append("%1           N: GNSS NAV DATA    G: GPS");
     301        break;
     302      case t_eph::GLONASS:
     303        fmt.append("%1           N: GNSS NAV DATA    R: GLONASS");
     304        break;
     305      case t_eph::Galileo:
     306        fmt.append("%1           N: GNSS NAV DATA    E: Galileo");
     307        break;
     308      case t_eph::QZSS:
     309        fmt.append("%1           N: GNSS NAV DATA    J: QZSS");
     310        break;
     311      case t_eph::BDS:
     312        fmt.append("%1           N: GNSS NAV DATA    C: BDS");
     313        break;
     314      case t_eph::IRNSS:
     315        fmt.append("%1           N: GNSS NAV DATA    I: IRNSS");
     316        break;
     317      case t_eph::SBAS:
     318        fmt.append("%1           N: GNSS NAV DATA    S: SBAS");
     319        break;
     320      case t_eph::unknown:
     321        fmt.append("%1           N: GNSS NAV DATA    M: MIXED");
     322        break;
     323    }
     324    *_stream << fmt
    297325      .arg(_header._version, 9, 'f', 2)
    298326      .leftJustified(60)
Note: See TracChangeset for help on using the changeset viewer.