Changeset 4672 in ntrip for trunk/BNC/src/rinex


Ignore:
Timestamp:
Sep 9, 2012, 10:07:06 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r4671 r4672  
    5353#include "availplot.h"
    5454#include "eleplot.h"
     55#include "dopplot.h"
    5556
    5657using namespace std;
     
    578579    t_elePlot* plotZ = new t_elePlot(0, &_availDataMap);
    579580
    580     t_elePlot* plotD = new t_elePlot(0, &_availDataMap);
     581    t_dopPlot* plotD = new t_dopPlot(0, &_obsStat);
    581582
    582583    QVector<QWidget*> plots;
  • trunk/BNC/src/rinex/reqcanalyze.h

    r4667 r4672  
    4444  QVector<double> _eleDeg;
    4545  QVector<double> _eleTim;
     46};
     47
     48class t_obsStat {
     49 public:
     50  QVector<double> _mjdX24;
     51  QVector<double> _numSat;
     52  QVector<double> _PDOP;
     53  QVector<double> _GDOP;
    4654};
    4755
     
    136144  QMap<QString, t_allObs>    _allObsMap;
    137145  QMap<QString, t_availData> _availDataMap;
    138   QVector<double>            _numSat;
    139   QVector<double>            _numSatTim;
     146  t_obsStat                  _obsStat;
    140147};
    141148
Note: See TracChangeset for help on using the changeset viewer.