Changeset 4672 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Sep 9, 2012, 10:07:06 AM (13 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r4671 r4672 53 53 #include "availplot.h" 54 54 #include "eleplot.h" 55 #include "dopplot.h" 55 56 56 57 using namespace std; … … 578 579 t_elePlot* plotZ = new t_elePlot(0, &_availDataMap); 579 580 580 t_ elePlot* plotD = new t_elePlot(0, &_availDataMap);581 t_dopPlot* plotD = new t_dopPlot(0, &_obsStat); 581 582 582 583 QVector<QWidget*> plots; -
trunk/BNC/src/rinex/reqcanalyze.h
r4667 r4672 44 44 QVector<double> _eleDeg; 45 45 QVector<double> _eleTim; 46 }; 47 48 class t_obsStat { 49 public: 50 QVector<double> _mjdX24; 51 QVector<double> _numSat; 52 QVector<double> _PDOP; 53 QVector<double> _GDOP; 46 54 }; 47 55 … … 136 144 QMap<QString, t_allObs> _allObsMap; 137 145 QMap<QString, t_availData> _availDataMap; 138 QVector<double> _numSat; 139 QVector<double> _numSatTim; 146 t_obsStat _obsStat; 140 147 }; 141 148
Note:
See TracChangeset
for help on using the changeset viewer.