Changeset 6253 in ntrip


Ignore:
Timestamp:
Oct 22, 2014, 4:10:54 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6251 r6253  
    11241124
    11251125  for (int iType = 0; iType < rnxObsFile->nTypes(sys); iType++) {
    1126     QString type = rnxObsFile->obsType(sys, iType);
     1126    QString type   = rnxObsFile->obsType(sys, iType);
     1127    QString typeV3 = rnxObsFile->obsType(sys, iType, 3.0); // may or may not differ from type
    11271128    if (rnxSat.obs.contains(type)) {
    11281129      const t_rnxObs& rnxObs = rnxSat.obs[type];
    11291130      if (rnxObs.value != 0.0) {
    1130         string type2ch(type.mid(1).toAscii().data());
     1131        string type2ch(typeV3.mid(1).toAscii().data());
    11311132       
    11321133        t_frqObs* frqObs = 0;
     
    11431144        }
    11441145       
    1145         switch( type.toAscii().data()[0] ) {
     1146        switch( typeV3.toAscii().data()[0] ) {
    11461147        case 'C':
    11471148          frqObs->_codeValid = true;
Note: See TracChangeset for help on using the changeset viewer.