Changeset 9032 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Aug 27, 2020, 8:16:09 AM (4 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3Decoder.cpp

    r9025 r9032  
    16311631       * else. */
    16321632      if ((id >= 1057 && id <= 1068) ||
    1633             (id >= 1240 && id <= 1270) ||
    1634                       (id == 4076)) {
     1633          (id >= 1240 && id <= 1270) ||
     1634                  (id == 4076)) {
    16351635        RTCM3coDecoder::e_type type = RTCM3coDecoder::e_type::RTCMssr;
    16361636        if (id == 4076) {
  • trunk/BNC/src/RTCM3/RTCM3coDecoder.h

    r9025 r9032  
    2727
    2828#include <fstream>
    29 
    3029#include <QByteArray>
    3130#include <QList>
    3231#include <QMap>
    33 
    3432#include "GPSDecoder.h"
    3533#include "../RTCM3/clock_and_orbit/clock_orbit_igs.h"
    3634#include "../RTCM3/clock_and_orbit/clock_orbit_rtcm.h"
    3735
    38 //class SsrCorr;
    39 
    40   class RTCM3coDecoder : public QObject, public GPSDecoder{
     36  class RTCM3coDecoder : public QObject, public GPSDecoder {
    4137Q_OBJECT
    4238 public:
  • trunk/BNC/src/RTCM3/bits.h

    r9025 r9032  
    9191
    9292#define GETFLOATSIGNM(b, a, c) { \
    93 int l; \
     93  int l; \
    9494  LOADBITS(a) \
    9595  l = (bitfield<<(64-numbits))>>(64-1); \
  • trunk/BNC/src/upload/bncrtnetuploadcaster.cpp

    r9025 r9032  
    3434    const QString& rnxFileName, int PID, int SID, int IOD, int iRow) :
    3535    bncUploadCaster(mountpoint, outHost, outPort, ntripVersion, userName, password, iRow, 0) {
    36 qDebug() << "bncRtnetUploadCaster";
    3736
    3837  if (!mountpoint.isEmpty()) {
     
    245244//
    246245////////////////////////////////////////////////////////////////////////////
    247 void bncRtnetUploadCaster::decodeRtnetStream(char* buffer, int bufLen) {qDebug() << "decodeRtnetStream";
    248   qDebug() << "decodeRtnetStream";
     246void bncRtnetUploadCaster::decodeRtnetStream(char* buffer, int bufLen) {
     247
    249248  QMutexLocker locker(&_mutex);
    250249
     
    393392    ColumnVector rtnClk; rtnClk.ReSize(3); rtnClk = 0.0;          // [m, m/s, m/s²]
    394393    ColumnVector rtnClkSig; rtnClkSig.ReSize(3); rtnClkSig = 0.0; // [m, m/s, m/s²]
    395 
    396394    t_prn prn;
    397395
     
    483481        QString key;
    484482        int numVal = 0;
    485         in >> key;qDebug() << key;
     483        in >> key;
    486484        if (in.status() != QTextStream::Ok) {
    487485          break;
     
    734732  }
    735733
    736 
    737734  QByteArray hlpBufferCo;
    738735
  • trunk/BNC/src/upload/bncrtnetuploadcaster.h

    r9025 r9032  
    1313class bncClockRinex;
    1414class bncSP3;
    15 class SsrCorr;
    1615
    1716class bncRtnetUploadCaster : public bncUploadCaster {
     
    2019  bncRtnetUploadCaster(const QString& mountpoint,
    2120                  const QString& outHost, int outPort,
    22                   const QString& ntripVersion,
    23                   const QString& userName,const QString& password,
     21                  const QString& ntripVersion, const QString& userName,
     22                  const QString& password,
    2423                  const QString& crdTrafo, const QString& ssrFormat,
    25                   bool  CoM, const QString& sp3FileName,
     24                  bool  CoM,
     25                  const QString& sp3FileName,
    2626                  const QString& rnxFileName,
    2727                  int PID, int SID, int IOD, int iRow);
Note: See TracChangeset for help on using the changeset viewer.