Changeset 7144 in ntrip


Ignore:
Timestamp:
Jul 23, 2015, 12:19:39 PM (9 years ago)
Author:
stuerze
Message:

some frequencies added in antex class

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncantex.cpp

    r7141 r7144  
    185185            frqType = t_frequency::R2;
    186186          }
     187          else if (line.indexOf("E01") == 3) {
     188            frqType = t_frequency::E1;
     189          }
     190          else if (line.indexOf("E05") == 3) {
     191            frqType = t_frequency::E5;
     192          }
     193          else if (line.indexOf("E06") == 3) {
     194            frqType = t_frequency::E6;
     195          }
     196          else if (line.indexOf("E07") == 3) {
     197            frqType = t_frequency::E7;
     198          }
     199          else if (line.indexOf("E08") == 3) {
     200            frqType = t_frequency::E8;
     201          }
     202          else if (line.indexOf("C02") == 3) {
     203            frqType = t_frequency::C2;
     204          }
     205          else if (line.indexOf("C06") == 3) {
     206            frqType = t_frequency::C6;
     207          }
     208          else if (line.indexOf("C07") == 3) {
     209            frqType = t_frequency::C7;
     210          }
    187211          if (frqType != t_frequency::dummy) {
    188212            if (newAntMap->frqMap.find(frqType) != newAntMap->frqMap.end()) {
Note: See TracChangeset for help on using the changeset viewer.