Changeset 9158 in ntrip for trunk/BNC/src/pppRun.cpp


Ignore:
Timestamp:
Oct 1, 2020, 3:19:04 PM (4 years ago)
Author:
stuerze
Message:

the default RINEX version in BNC is changed from version 2 to verision 3

File:
1 edited

Legend:

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

    r8824 r9158  
    179179        country;
    180180
    181   bool v3filenames = settings.value("PPP/v3filenames").toBool();
     181  bool v2filenames = settings.value("PPP/v2filenames").toBool();
    182182  QString logFileSkl = settings.value("PPP/logPath").toString();
    183183  int l = logFileSkl.length();
     
    189189      logFileSkl += QDir::separator();
    190190    }
    191     if (v3filenames) {
     191    if (!v2filenames) {
    192192      logFileSkl = logFileSkl + ID9 + "${V3}" + distStr + ".ppp";
    193193    }
     
    207207      nmeaFileSkl += QDir::separator();
    208208    }
    209     if (v3filenames) {
     209    if (!v2filenames) {
    210210      nmeaFileSkl = nmeaFileSkl + ID9 + "${V3}" + distStr + ".nmea";
    211211    }
     
    224224      snxtroFileSkl += QDir::separator();
    225225    }
    226     if (v3filenames) {
     226    if (!v2filenames) {
    227227      snxtroFileSkl = snxtroFileSkl + ID9 + "${V3}" + distStr + ".tra";
    228228    }
Note: See TracChangeset for help on using the changeset viewer.