Changeset 8168 in ntrip for trunk/BNC/src/bncconst.h


Ignore:
Timestamp:
Oct 26, 2017, 2:44:32 PM (6 years ago)
Author:
stuerze
Message:

IRNSS support is added in RINEX QC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncconst.h

    r7243 r8168  
    3232class t_frequency {
    3333 public:
    34   enum type {dummy = 0, G1, G2, G5, R1, R2, 
    35                         E1, // E1  / 1575.42         
    36                         E5, // E5a / 1176.45         
    37                         E7, // E5b / 1207.140         
    38                         E8, // E5(E5a+E5b) / 1191.795 
     34  enum type {dummy = 0, G1, G2, G5, R1, R2,
     35                        E1, // E1  / 1575.42
     36                        E5, // E5a / 1176.45
     37                        E7, // E5b / 1207.140
     38                        E8, // E5(E5a+E5b) / 1191.795
    3939                        E6, // E6  / 1278.75
    4040                        J1, // 1575.42
     
    4747                        C7, // 1207.14
    4848                        C6, // 1268.52
     49                        I5, // 1176.45
     50                        I9, // 2492.028
    4951             max};
    5052
     
    6971    else if (tt == C7) return "C7";
    7072    else if (tt == C6) return "C6";
     73    else if (tt == I5) return "I5";
     74    else if (tt == I9) return "I9";
    7175    return std::string();
    7276  }
     
    9195    else if (s == "C7") return C7;
    9296    else if (s == "C6") return C6;
     97    else if (s == "I5") return I5;
     98    else if (s == "I9") return I9;
    9399    return type();
    94100  }
Note: See TracChangeset for help on using the changeset viewer.