Changeset 5493 in ntrip


Ignore:
Timestamp:
Sep 18, 2013, 5:03:02 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTRover/bncrtrover.cpp

    r5068 r5493  
    335335    if (obsBnc._measdata[iEntry] != 0.0) {
    336336      QByteArray rnxStr = obsBnc.rnxStr(iEntry).toAscii();
    337       if (rnxStr.length() == 3) {
     337      if (rnxStr.length() >= 2) {
     338        if      (rnxStr == "L1") {
     339          rnxStr = "L1C";
     340        }
     341        else if (rnxStr == "L2") {
     342          rnxStr = "L2P";
     343        }
    338344        QByteArray codeType = rnxStr.mid(1);
    339345
Note: See TracChangeset for help on using the changeset viewer.