- Timestamp:
- Sep 8, 2012, 4:53:31 PM (12 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r4617 r4659 52 52 #include "polarplot.h" 53 53 #include "availplot.h" 54 #include "zenplot.h" 54 55 55 56 using namespace std; … … 410 411 double aziDeg = 0.0; 411 412 double zenDeg = 0.0; 413 bool zenFlag = false; 412 414 413 415 // Loop over all Epochs within one Chunk of Data … … 443 445 aziDeg = azSat * 180.0/M_PI; 444 446 zenDeg = 90.0 - eleSat * 180.0/M_PI; 447 zenFlag = true; 445 448 } 446 449 } … … 529 532 _availDataMap[prn]._L2ok << mjdX24; 530 533 } 534 } 535 if (zenFlag) { 536 _availDataMap[prn]._zenTim << mjdX24; 537 _availDataMap[prn]._zenDeg << zenDeg; 531 538 } 532 539 … … 566 573 if (dynamic_cast<bncApp*>(qApp)->GUIenabled()) { 567 574 568 t_availPlot* plot = new t_availPlot(0, &_availDataMap); 569 plot->setTitle(title); 575 t_availPlot* plotA = new t_availPlot(0, &_availDataMap); 576 plotA->setTitle(title); 577 578 t_zenPlot* plotZ = new t_zenPlot(0, &_availDataMap); 579 plotZ->setTitle(title); 570 580 571 581 QVector<QWidget*> plots; 572 plots << plot ;582 plots << plotA << plotZ; 573 583 t_graphWin* graphWin = new t_graphWin(0, fileName, plots, 0, 0); 574 584 graphWin->show(); -
trunk/BNC/src/rinex/reqcanalyze.h
r4607 r4659 42 42 QVector<double> _L1gap; 43 43 QVector<double> _L2gap; 44 QVector<double> _zenDeg; 45 QVector<double> _zenTim; 44 46 }; 45 47 -
trunk/BNC/src/src.pro
r4652 r4659 118 118 rinex/reqcedit.h rinex/reqcanalyze.h \ 119 119 rinex/graphwin.h rinex/polarplot.h \ 120 rinex/availplot.h 120 rinex/availplot.h rinex/zenplot.h 121 121 SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \ 122 122 rinex/rnxnavfile.cpp rinex/corrfile.cpp \ 123 123 rinex/reqcedit.cpp rinex/reqcanalyze.cpp \ 124 124 rinex/graphwin.cpp rinex/polarplot.cpp \ 125 rinex/availplot.cpp 125 rinex/availplot.cpp rinex/zenplot.cpp 126 126 } 127 127
Note:
See TracChangeset
for help on using the changeset viewer.