Changeset 8793 in ntrip


Ignore:
Timestamp:
Aug 15, 2019, 2:38:06 PM (5 years ago)
Author:
stuerze
Message:

minor changes for correct marker and receiver numbers in PPP logfile (rinex v3 style) names

File:
1 edited

Legend:

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

    r8691 r8793  
    140140  _stopFlag = false;
    141141
    142   QString roverName(_opt->_roverName.c_str()), ID9("");
     142  QString roverName(_opt->_roverName.c_str());
     143  QString ID9("");
    143144  QString country;
    144145  QString monNum = "0";
    145146  QString recNum = "0";
     147  if (roverName.length() >= 9) {
     148    monNum = QChar(roverName[4]);
     149    recNum = QChar(roverName[5]);
     150  }
    146151  QString intr = "1 day";
    147152  int     sampl  = 0;
Note: See TracChangeset for help on using the changeset viewer.