Changeset 4672 in ntrip
- Timestamp:
- Sep 9, 2012, 10:07:06 AM (12 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 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 -
trunk/BNC/src/src.pro
r4662 r4672 118 118 rinex/reqcedit.h rinex/reqcanalyze.h \ 119 119 rinex/graphwin.h rinex/polarplot.h \ 120 rinex/availplot.h rinex/eleplot.h 121 SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \ 122 rinex/rnxnavfile.cpp rinex/corrfile.cpp \ 120 rinex/availplot.h rinex/eleplot.h \ 121 rinex/dopplot.h 122 SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \ 123 rinex/rnxnavfile.cpp rinex/corrfile.cpp \ 123 124 rinex/reqcedit.cpp rinex/reqcanalyze.cpp \ 124 125 rinex/graphwin.cpp rinex/polarplot.cpp \ 125 rinex/availplot.cpp rinex/eleplot.cpp 126 rinex/availplot.cpp rinex/eleplot.cpp \ 127 rinex/dopplot.cpp 126 128 } 127 129
Note:
See TracChangeset
for help on using the changeset viewer.