Changeset 7879 in ntrip


Ignore:
Timestamp:
Apr 21, 2016, 11:29:27 AM (8 years ago)
Author:
stuerze
Message:

minor changes regarding the names of RINEX OBS files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bncrinex.cpp

    r7864 r7879  
    306306
    307307  QString ID4 = _statID.left(4);
     308  ID4 = ID4.toUpper();
    308309
    309310  // Check name conflict
     
    323324
    324325  QString sklExt = settings.value("rnxSkel").toString();
     326  QString sklPre;
    325327  if (!sklExt.isEmpty()) {
    326328    if (sklExt.indexOf("skl",0, Qt::CaseSensitive) != -1)  {
    327       ID4 = ID4.toLower();
     329      sklPre = ID4.toLower();
    328330    } else if (sklExt.indexOf("SKL",0, Qt::CaseSensitive) != -1) {
    329       ID4 = ID4.toUpper();
    330     }
    331     _sklName = path + ID4 + distStr + "." + sklExt;
     331      sklPre = ID4.toUpper();
     332    }
     333    _sklName = path + sklPre + distStr + "." + sklExt;
    332334  }
    333335
Note: See TracChangeset for help on using the changeset viewer.