Changeset 10754 in ntrip for trunk/BNC/src/upload


Ignore:
Timestamp:
Sep 2, 2025, 1:23:45 PM (3 months ago)
Author:
stuerze
Message:

initial preparation for adding the new RTCM-SSR format

Location:
trunk/BNC/src/upload
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/upload/bncephuploadcaster.cpp

    r10619 r10754  
    2727bncEphUploadCaster::bncEphUploadCaster() : bncEphUser(true) {
    2828  bncSettings settings;
    29   int     sampl    = settings.value("uploadSamplRtcmEph").toInt();
     29  int sampl = settings.value("uploadSamplRtcmEph").toInt();
    3030
    31   // List of upload casters
    32   // ----------------------
     31  // List of upload ephUploadCasters
     32  // -------------------------------
    3333  int iRow = -1;
    3434  QListIterator<QString> it(settings.value("uploadEphMountpointsOut").toStringList());
  • trunk/BNC/src/upload/bncrtnetuploadcaster.cpp

    r10667 r10754  
    7070    else if (_ssrFormat == "RTCM-SSR") {
    7171        _ssrCorr = new SsrCorrRtcm();
     72    }
     73    else if (ssrFormat == "RTCM-NEW-SSR") {
     74      _ssrCorr = new SsrCorrRtcmNew();
    7275    }
    7376
  • trunk/BNC/src/upload/bncrtnetuploadcaster.h

    r10657 r10754  
    88#include "ephemeris.h"
    99#include "../RTCM3/clock_and_orbit/clock_orbit_rtcm.h"
     10#include "../RTCM3/clock_and_orbit/clock_orbit_rtcm_new.h"
    1011#include "../RTCM3/clock_and_orbit/clock_orbit_igs.h"
    1112#include "../RTCM3/crs.h"
     
    5455
    5556    QString        _casterID;
    56     bncEphUser* _ephUser;
     57    bncEphUser*    _ephUser;
    5758    QString        _rtnetStreamBuffer;
    5859    QString        _crdTrafoStr;
Note: See TracChangeset for help on using the changeset viewer.