source: ntrip/trunk/BNC/src/upload/bncrtnetuploadcaster.h@ 4803

Last change on this file since 4803 was 4803, checked in by mervart, 11 years ago
File size: 1.7 KB
RevLine 
[3224]1#ifndef BNCRTNETUPLOADCASTER_H
2#define BNCRTNETUPLOADCASTER_H
[3222]3
[3224]4#include <newmat.h>
5#include "bncuploadcaster.h"
[3222]6#include "bnctime.h"
[3225]7#include "ephemeris.h"
8extern "C" {
[3224]9#include "clock_orbit_rtcm.h"
[3225]10}
[3222]11
[3224]12class bncEphUser;
[3222]13class bncoutf;
14class bncClockRinex;
15class bncSP3;
16
[3224]17class bncRtnetUploadCaster : public bncUploadCaster {
[3222]18 Q_OBJECT
19 public:
[3224]20 bncRtnetUploadCaster(const QString& mountpoint,
[3222]21 const QString& outHost, int outPort,
22 const QString& password,
23 const QString& crdTrafo, bool CoM,
24 const QString& sp3FileName,
25 const QString& rnxFileName,
[4111]26 int PID, int SID, int IOD, int iRow);
[3226]27 void decodeRtnetStream(char* buffer, int bufLen);
[3222]28 protected:
[3224]29 virtual ~bncRtnetUploadCaster();
[3222]30 private:
31 void processSatellite(t_eph* eph, int GPSweek,
32 double GPSweeks, const QString& prn,
33 const ColumnVector& xx,
34 struct ClockOrbit::SatData* sd,
35 QString& outLine);
[4803]36 void crdTrafo(int GPSWeek, ColumnVector& xyz, double& dc);
[3222]37
38 bncEphUser* _ephUser;
39 QString _rtnetStreamBuffer;
40 QString _crdTrafo;
41 bool _CoM;
[4111]42 int _PID;
43 int _SID;
44 int _IOD;
[4174]45 double _samplRtcmEphCorr;
[3222]46 double _dx;
47 double _dy;
48 double _dz;
49 double _dxr;
50 double _dyr;
51 double _dzr;
52 double _ox;
53 double _oy;
54 double _oz;
55 double _oxr;
56 double _oyr;
57 double _ozr;
58 double _sc;
59 double _scr;
60 double _t0;
61 bncClockRinex* _rnx;
62 bncSP3* _sp3;
[3753]63 QMap<QString, t_eph*>* _usedEph;
[3222]64};
65
66#endif
Note: See TracBrowser for help on using the repository browser.