Changeset 10532 in ntrip for trunk/BNC/src/rinex


Ignore:
Timestamp:
Sep 13, 2024, 5:43:34 PM (9 days 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

Location:
trunk/BNC/src/rinex
Files:
2 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);
  • trunk/BNC/src/rinex/rnxobsfile.h

    r10127 r10532  
    7979  QString         _usedSystems;
    8080  double          _version;
     81  int             _configuredVersion;
    8182  double          _interval;
    8283  QString         _antennaNumber;
Note: See TracChangeset for help on using the changeset viewer.