Changeset 10532 in ntrip for trunk/BNC/src/rinex/rnxobsfile.cpp


Ignore:
Timestamp:
Sep 13, 2024, 5:43:34 PM (8 weeks ago)
Author:
stuerze
Message:

bug fixed: obs types from skl file are used now to write them into RINEX version 3 or 4 observation files as configured

File:
1 edited

Legend:

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

    r10525 r10532  
    6565  bncSettings settings;
    6666  _writeRinexOnlyWithSklObsTypes = settings.value("rnxOnlyWithSKL").toBool();
    67 
     67  _configuredVersion = settings.value("rnxVersion").toInt();
    6868}
    6969
     
    217217    else if (key == "SYS / # / OBS TYPES") {
    218218      if (_version == 0.0) {
    219         _version = defaultRnxObsVersion3;
     219        _version = versionFromInt(_configuredVersion);
    220220      }
    221221      QTextStream* in = new QTextStream(value.toLatin1(), QIODevice::ReadOnly);
Note: See TracChangeset for help on using the changeset viewer.