Changeset 10533 in ntrip for trunk/BNC/src/GPSDecoder.h


Ignore:
Timestamp:
Sep 17, 2024, 4:55:28 PM (8 weeks ago)
Author:
stuerze
Message:

Service and RTCM CRS encoding and decoding as well as Helmert parameter decoding added + some re-organisation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/GPSDecoder.h

    r8235 r10533  
    2727
    2828#include <iostream>
     29#include <iomanip>
    2930#include <vector>
    3031#include <string>
     
    3536#include "bnctime.h"
    3637#include "satObs.h"
     38#include "crs.h"
    3739
    3840class bncRinex;
     41using namespace std;
    3942
    4043class GPSDecoder {
     
    9295
    9396  /** List of observations */
    94   QList<t_satObs>      _obsList;
    95   QList<int>           _typeList;  // RTCM message types
    96   QList<t_antInfo>     _antType;   // RTCM antenna descriptor
    97   QList<t_recInfo>     _recType;   // RTCM receiver descriptor
    98   QList<t_antRefPoint> _antList;   // RTCM antenna XYZ
    99   QString              _gloFrq;    // GLONASS slot
    100   bncRinex*            _rnx;       // RINEX writer
     97  QList<t_satObs>         _obsList;
     98  QList<int>              _typeList;           // RTCM message types
     99  QList<t_antInfo>        _antType;            // RTCM antenna descriptor
     100  QList<t_recInfo>        _recType;            // RTCM receiver descriptor
     101  QList<t_antRefPoint>    _antList;            // RTCM antenna XYZ
     102  QList<t_helmertPar>     _helmertPar;     // List of Helmert parameter sets
     103  QList<t_serviceCrs>     _serviceCrs;         // Service CRS
     104  QList<t_rtcmCrs>        _rtcmCrs;            // RTCM CRS
     105  QString                 _gloFrq;             // GLONASS slot
     106  bncRinex*               _rnx;                // RINEX writer
    101107};
    102108
Note: See TracChangeset for help on using the changeset viewer.