File: plotmain.h

package info (click to toggle)
rtklib 2.4.3.b34%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 114,300 kB
  • sloc: cpp: 57,065; ansic: 53,007; makefile: 994; fortran: 987; javascript: 309; sh: 25
file content (520 lines) | stat: -rw-r--r-- 16,737 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
//---------------------------------------------------------------------------
#ifndef plotmainH
#define plotmainH
//---------------------------------------------------------------------------
#include <QTimer>
#include <QElapsedTimer>
#include <QMainWindow>
#include <QFileSystemModel>
#include <QTreeView>

#include "graph.h"
#include "console.h"
#include "rtklib.h"

#include "ui_plotmain.h"

#define MAXNFILE    256                 // max number of solution files
#define MAXSTRBUFF  1024                // max length of stream buffer
#define MAXWAYPNT   4096                // max number of waypoints
#define MAXMAPPATH  4096                // max number of map paths
#define MAXMAPLAYER 12                  // max number of map layers

#define PRGNAME     "RTKPLOT-QT"           // program name

const QChar degreeChar(0260);           // character code of degree (UTF-8)
const QChar up2Char(0262);              // character code of ^2     (UTF-8)

#define DEFTSPAN    600.0               // default time span (s)
#define INTARROW    60.0                // direction arrow interval (s)
#define MAXTDIFF    60.0                // max differential time (s)
#define DOPLIM      30.0                // dop view limit
#define TTOL        DTTOL               // time-differnce tolerance (s)
#define TBRK        300.0               // time to recognize break (s)
#define THRESLIP    0.1                 // slip threshold of LG-jump (m)
#define SIZE_COMP   45                  // compass size (pixels)
#define SIZE_VELC   45                  // velocity circle size (pixels)
#define MIN_RANGE_GE 10.0               // min range for GE view

#define PLOT_TRK    0                   // plot-type: track-plot
#define PLOT_SOLP   1                   // plot-type: position-plot
#define PLOT_SOLV   2                   // plot-type: velocity-plot
#define PLOT_SOLA   3                   // plot-type: accel-plot
#define PLOT_NSAT   4                   // plot-type: number-of-satellite-plot
#define PLOT_RES    5                   // plot-type: residual-plot
#define PLOT_RESE   6                   // plot-type: residual-elevation plot
#define PLOT_OBS    7                   // plot-type: observation-data-plot
#define PLOT_SKY    8                   // plot-type: sky-plot
#define PLOT_DOP    9                   // plot-type: dop-plot
#define PLOT_SNR    10                  // plot-type: snr/mp-plot
#define PLOT_SNRE   11                  // plot-type: snr/mp-el-plot
#define PLOT_MPS    12                  // plot-type: mp-skyplot

#define ORG_STARTPOS 0                  // plot-origin: start position
#define ORG_ENDPOS  1                   // plot-origin: end position
#define ORG_AVEPOS  2                   // plot-origin: average position
#define ORG_FITPOS  3                   // plot-origin: linear-fit position
#define ORG_REFPOS  4                   // plot-origin: reference position
#define ORG_LLHPOS  5                   // plot-origin: lat/lon/hgt position
#define ORG_AUTOPOS 6                   // plot-origin: auto-input position
#define ORG_IMGPOS  7                   // plot-origin: image-center position
#define ORG_MAPPOS  8                   // plot-origin: map center position
#define ORG_PNTPOS  9                   // plot-origin: way-point position

#define TRACEFILE   "rtkplot.trace"     // trace file
#define QCTMPFILE   "rtkplot_qc.temp"   // tempolary file for qc
#define QCERRFILE   "rtkplot_qc.err"    // error file for qc

#define SQR(x)      ((x)*(x))
#define SQRT(x)     ((x)<0.0||(x)!=(x)?0.0:sqrt(x))
#define MAX(x,y)    ((x)>(y)?(x):(y))
#define MIN(x,y)    ((x)<(y)?(x):(y))

extern const QString PTypes[];

class FreqDialog;
class MapOptDialog;
class MapView;
class SpanDialog;
class ConnectDialog;
class SkyImgDialog;
class PlotOptDialog;
class AboutDialog;
class PntDialog;
class FileSelDialog;
class TextViewer;
class VecMapDialog;

class QEvent;
class QMouseEvent;
class QFocusEvent;
class QKeyEvent;
class QResizeEvent;
class QShowEvent;
class QWheelEvent;
class QPaintEVent;

// time-position class ------------------------------------------------------
class TIMEPOS
{
private:
    int nmax_;
    TIMEPOS(TIMEPOS &){}

public:
    int n;
    gtime_t *t;
    double *x, *y, *z, *xs, *ys, *zs, *xys;
    int *q;
    TIMEPOS(int nmax, int sflg);
    ~TIMEPOS();
    TIMEPOS *tdiff(void);
    TIMEPOS *diff(const TIMEPOS *pos2, int qflag);
};

// rtkplot class ------------------------------------------------------------
class Plot : public QMainWindow, public Ui::Plot
{
    Q_OBJECT

protected:
    void mousePressEvent(QMouseEvent*);
    void mouseReleaseEvent(QMouseEvent*);
    void mouseDoubleClickEvent(QMouseEvent*);
    void wheelEvent(QWheelEvent*);
    void closeEvent(QCloseEvent*);
    void keyPressEvent(QKeyEvent *);
    void showEvent(QShowEvent*);
    void resizeEvent(QResizeEvent *);
    void leaveEvent(QEvent*);
    void dragEnterEvent(QDragEnterEvent *event);
    void dropEvent(QDropEvent *event);
    void paintEvent(QPaintEvent *event);

    void mouseMove(QMouseEvent*);
public slots:
    void MenuOpenSol1Click();
    void MenuOpenSol2Click();
    void MenuOpenMapImageClick();
    void MenuOpenShapeClick();
    void MenuOpenObsClick();
    void MenuOpenNavClick();
    void MenuOpenElevMaskClick();
    void MenuConnectClick();
    void MenuDisconnectClick();
    void MenuPortClick();
    void MenuReloadClick();
    void MenuClearClick();
    void MenuQuitClick();

    void MenuTimeClick();
    void MenuMapImgClick();
    void MenuWaypointClick();
    void MenuSrcSolClick();
    void MenuSrcObsClick();
    void MenuCopyClick();
    void MenuOptionsClick();

    void MenuToolBarClick();
    void MenuStatusBarClick();
    void MenuMonitor1Click();
    void MenuMonitor2Click();
    void MenuMapViewClick();
    void MenuCenterOriClick();
    void MenuFitHorizClick();
    void MenuFitVertClick();
    void MenuShowTrackClick();
    void MenuFixHorizClick();
    void MenuFixVertClick();
    void MenuShowMapClick();
    void MenuShowImgClick();
    void MenuShowGridClick();
    void MenuAnimStartClick();
    void MenuAnimStopClick();
    void MenuAboutClick();

    void BtnConnectClick();
    void BtnSol1Click();
    void BtnSol2Click();
    void BtnSol12Click();
    void BtnSol1DblClick();
    void BtnSol2DblClick();
    void BtnOn1Click();
    void BtnOn2Click();
    void BtnOn3Click();
    void BtnRangeListClick();
    void BtnAnimateClick();
    void BtnFreqClick();

    void PlotTypeSChange();
    void QFlagChange();
    void ObsTypeChange();
    void DopTypeChange();
    void SatListChange();
    void TimeScrollChange();
    void RangeListClick();

    void TimerTimer();

    void MenuSaveDopClick();
    void MenuSaveImageClick();
    void MenuVisAnaClick();
    void MenuFixCentClick();
    void MenuSaveSnrMpClick();
    void MenuOpenSkyImageClick();
    void MenuSkyImgClick();
    void MenuShowSkyplotClick();
    void MenuPlotMapViewClick();
    void MenuMaxClick();
    void MenuSaveElMaskClick();
    void MenuMapLayerClick();
    void BtnMessage2Click();
    void MenuOpenWaypointClick();
    void MenuSaveWaypointClick();
    void MenuBrowseClick();

    void FileListClick(QModelIndex);
    void DirSelChange(QModelIndex);
    void DirSelSelected(QModelIndex);
    void DriveSelChanged();
    void FilterClick();
    void BtnDirSelClick();

private:
    bool eventFilter(QObject *obj, QEvent *event);
    QTreeView *DirSelector;
    QFileSystemModel *fileModel, *dirModel;
    QString Dir;

    QPixmap Buff;
    QImage MapImage;
    QImage SkyImageI;
    Graph *GraphT;
    Graph *GraphG[3];
    Graph *GraphR;
    Graph *GraphS;
    Graph *GraphE[2];
    Console *Console1, *Console2;
    QStringList OpenFiles;
    QStringList SolFiles[2];
    QStringList ObsFiles;
    QStringList NavFiles;

    stream_t Stream[2];
    stream_t StrTimeSync;
    solbuf_t SolData[2];
    solstatbuf_t SolStat[2];
    int SolIndex[2];
    obs_t Obs;
    nav_t Nav;
    sta_t Sta;
    double *Az, *El, *Mp[NFREQ+NEXOBS];
    char StrBuff[1024];
    int NStrBuff;
    QTimer Timer;
    QElapsedTimer updateTime;
    
    gtime_t OEpoch;
    int FormWidth, FormHeight;
    int ConnectState, OpenRaw;
    int NObs, *IndexObs, ObsIndex;
    int Week;
    int Flush, PlotType;
    int NSolF1, NSolF2, NObsF, NNavF;
    int SatMask[MAXSAT], SatSel[MAXSAT];
    int SimObs;
    
    int Drag, Xn, Yn;
    double X0, Y0, Xc, Yc, Xs, Ys, Xcent, Xcent0;
    uint32_t MouseDownTick;
    
    int GEState, GEDataState[2];
    double GEHeading;

    void ReadSolStat(const QStringList &files, int sel);
    int ReadObsRnx(const QStringList &files, obs_t *obs, nav_t *nav, sta_t *sta);
    void ReadMapTag(const QString &file);
    void ReadShapeFile(const QStringList &file);
    void GenVisData(void);
    void SaveDop(const QString &file);
    void SaveSnrMp(const QString &file);
    void SaveElMask(const QString &file);
    void Connect(void);
    void Disconnect(void);
    void ConnectPath(const QString &path, int ch);
    int CheckObs(const QString &file);
    void UpdateObs(int nobs);
    void UpdateMp(void);
    void ClearObs(void);
    void ClearSol(void);
    void Clear(void);
    void Refresh(void);
    void Reload(void);
    void ReadWaitStart(void);
    void ReadWaitEnd(void);
    
    void UpdateDisp(void);
    void UpdateType(int type);
    void UpdatePlotType(void);
    void UpdateSatList(void);
    void UpdateObsType(void);
    void UpdateSize(void);
    void UpdateColor(void);
    void UpdateTime(void);
    void UpdateOrigin(void);
    void UpdateSatMask(void);
    void UpdateSatSel(void);
    void UpdateInfo(void);
    void UpdateTimeSol(void);
    void UpdateTimeObs(void);
    void UpdateInfoSol(void);
    void UpdateInfoObs(void);
    void UpdatePoint(int x, int y);
    void UpdateEnable(void);
    void FitTime(void);
    void SetRange(int all, double range);
    void FitRange(int all);
    
    void SetCentX(double c);
    void SetScaleX(double s);
    void MouseDownTrk(int X, int Y);
    void MouseDownSol(int X, int Y);
    void MouseDownObs(int X, int Y);
    void MouseMoveTrk(int X, int Y, double dx, double dy, double dxs, double dys);
    void MouseMoveSol(int X, int Y, double dx, double dy, double dxs, double dys);
    void MouseMoveObs(int X, int Y, double dx, double dy, double dxs, double dys);

    void DrawTrk(QPainter &g,int level);
    void DrawTrkImage(QPainter &g,int level);
    void DrawTrkMap(QPainter &g,int level);
    void DrawTrkPath(QPainter &g,int level);
    void DrawTrkPnt(QPainter &g,const TIMEPOS *pos, int level, int style);
    void DrawTrkPos(QPainter &g,const double *rr, int type, int siz, QColor color, const QString &label);
    void DrawTrkStat(QPainter &g,const TIMEPOS *pos, const QString &header, int p);
    void DrawTrkError(QPainter &g,const TIMEPOS *pos, int style);
    void DrawTrkArrow(QPainter &g,const TIMEPOS *pos);
    void DrawTrkVel(QPainter &g,const TIMEPOS *vel);
    void DrawLabel(Graph *,QPainter &g, const QPoint &p, const QString &label, int ha, int va);
    void DrawMark(Graph *,QPainter &g, const QPoint &p, int mark, const QColor &color, int size, int rot);
    void DrawSol(QPainter &g,int level, int type);
    void DrawSolPnt(QPainter &g,const TIMEPOS *pos, int level, int style);
    void DrawSolStat(QPainter &g,const TIMEPOS *pos, const QString &unit, int p);
    void DrawNsat(QPainter &g,int level);
    void DrawRes(QPainter &g,int level);
    void DrawResE(QPainter &g,int level);
    void DrawPolyS(Graph *,QPainter &c, double *x, double *y, int n,
                           const QColor &color, int style);
    
    void DrawObs(QPainter &g,int level);
    void DrawObsSlip(QPainter &g,double *yp);
    void DrawObsEphem(QPainter &g,double *yp);
    void DrawSkyImage(QPainter &g,int level);
    void DrawSky(QPainter &g,int level);
    void DrawDop(QPainter &g,int level);
    void DrawDopStat(QPainter &g,double *dop, int *ns, int n);
    void DrawSnr(QPainter &g,int level);
    void DrawSnrE(QPainter &g,int level);
    void DrawMpS(QPainter &g,int level);
    
    TIMEPOS *SolToPos(solbuf_t *sol, int index, int qflag, int type);
    TIMEPOS *SolToNsat(solbuf_t *sol, int index, int qflag);
    
    void PosToXyz(gtime_t time, const double *rr, int type, double *xyz);
    void CovToXyz(const double *rr, const float *qr, int type,
                                    double *xyzs);
    void CalcStats(const double *x, int n, double ref, double &ave,
                                    double &std, double &rms);
    int FitPos(gtime_t *time, double *opos, double *ovel);
    
    QString LatLonStr(const double *pos, int ndec);
    QColor ObsColor(const obsd_t *obs, double az, double el);
    QColor SysColor(int sat);
    QColor SnrColor(double snr);
    QColor MpColor(double mp);
    void ReadStaPos(const QString &file, const QString &sta, double *rr);
    int SearchPos(int x, int y);
    void TimeSpan(gtime_t *ts, gtime_t *te, double *tint);
    double TimePos(gtime_t time);
    void TimeStr(gtime_t time, int n, int tsys, QString &str);
    int ExecCmd(const QString &cmd, const QStringList &opt);
    void ShowMsg(const QString &msg);
    void ShowLegend (QString *msgs);
    void LoadOpt();
    void SaveOpt();
    
    FreqDialog * freqDialog;
    MapOptDialog *mapOptDialog;
    MapView *mapView;
    SpanDialog *spanDialog;
    ConnectDialog *connectDialog;
    SkyImgDialog *skyImgDialog;
    PlotOptDialog *plotOptDialog;
    AboutDialog *aboutDialog;
    PntDialog *pntDialog;
    FileSelDialog *fileSelDialog;
    TextViewer *viewer;
    VecMapDialog *vecMapDialog;

public:
    QImage SkyImageR;
    QString IniFile;
    QString MapImageFile;
    QString SkyImageFile;
    QString RnxOpts;
    tle_t TLEData;
    QFont Font;
    gis_t Gis;

    // connection settings
    int RtStream[2];
    QString RtPath1, RtPath2;
    QString StrPaths[2][3];
    QString StrCmds[2][2];
    int StrCmdEna[2][2];
    int RtFormat[2];
    int RtConnType;
    int RtTimeForm;
    int RtDegForm;
    QString RtFieldSep;
    int RtTimeOutTime;
    int RtReConnTime;
    double ElMaskData[361];
    
    // time options 
    int TimeEna[3];
    gtime_t TimeStart;
    gtime_t TimeEnd;
    double TimeInt;
    
    // map options 
    int MapSize[2], MapScaleEq;
    double MapScaleX, MapScaleY;
    double MapLat, MapLon;
    int PointType;
    
    // sky image options 
    int SkySize[2], SkyDestCorr, SkyElMask, SkyRes, SkyFlip, SkyBinarize;
    double SkyCent[2], SkyScale, SkyScaleR, SkyFov[3], SkyDest[10];
    double SkyBinThres1, SkyBinThres2;
    
    // plot options 
    int TimeLabel;
    int LatLonFmt;
    int ShowStats;
    int ShowSlip;
    int ShowHalfC;
    int ShowEph;
    double ElMask;
    int ElMaskP;
    int HideLowSat;
    double MaxDop, MaxMP;
    int NavSys;
    QString ExSats;
    int ShowErr;
    int ShowArrow;
    int ShowGLabel;
    int ShowLabel;
    int ShowCompass;
    int ShowScale;
    int AutoScale;
    double YRange;
    int RtBuffSize;
    int TimeSyncOut;
    int TimeSyncPort;
    int Origin;
    int RcvPos;
    double OOPos[3];
    QColor MColor[2][8]; // {{mark1 0-7},{mark2 0-7}}
    QColor CColor[4];    // {background,grid,text,line}
    QColor MapColor[MAXMAPLAYER]; // mapcolors line
    QColor MapColorF[MAXMAPLAYER]; // mapcolors fill
    int PlotStyle;
    int MarkSize;
    int AnimCycle;
    int RefCycle;
    int Trace;
    QString FontName;
    int FontSize;
    QString ShapeFile;
    QString TLEFile;
    QString TLESatFile;
    // map view options
    int MapApi;
    QString MapStrs[6][3],ApiKey;
    
    QString Title;
    QString PntName[MAXWAYPNT];
    double PntPos[MAXWAYPNT][3];
    int NWayPnt, SelWayPnt;
    int OPosType;
    double OPos[3], OVel[3];
    
    QString StrHistory [10];
    
    void ReadSol(const QStringList &files, int sel);
    void ReadObs(const QStringList &files);
    void ReadNav(const QStringList &files);
    void ReadMapData(const QString &file);
    void ReadSkyData(const QString &file);
    void ReadGpxFile(const QString &file);
    void ReadPosFile(const QString &file);
    void ReadWaypoint(const QString &file);
    void SaveGpxFile(const QString &file);
    void SavePosFile(const QString &file);
    void SaveWaypoint(const QString &file);
    void ReadSkyTag(const QString &file);
    void UpdateSky(void);
    void UpdatePlot (void);
    void GenObsSlip(int *LLI);
    void ReadElMaskData(const QString &file);
    int GetCurrentPos(double *rr);
    int GetCenterPos(double *rr);
    void SetTrkCent(double lat, double lon);
    void Refresh_MapView(void);

    explicit Plot(QWidget* parent=NULL);
    ~Plot();
};

//---------------------------------------------------------------------------
#endif