Changeset 4659 in ntrip


Ignore:
Timestamp:
Sep 8, 2012, 4:53:31 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 added
3 edited

Legend:

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

    r4617 r4659  
    5252#include "polarplot.h"
    5353#include "availplot.h"
     54#include "zenplot.h"
    5455
    5556using namespace std;
     
    410411    double  aziDeg  = 0.0;
    411412    double  zenDeg  = 0.0;
     413    bool    zenFlag = false;
    412414
    413415    // Loop over all Epochs within one Chunk of Data
     
    443445            aziDeg = azSat * 180.0/M_PI;
    444446            zenDeg = 90.0 - eleSat * 180.0/M_PI;
     447            zenFlag = true;
    445448          }
    446449        }
     
    529532        _availDataMap[prn]._L2ok << mjdX24;
    530533      }
     534    }
     535    if (zenFlag) {
     536      _availDataMap[prn]._zenTim << mjdX24;
     537      _availDataMap[prn]._zenDeg << zenDeg;
    531538    }
    532539
     
    566573  if (dynamic_cast<bncApp*>(qApp)->GUIenabled()) {
    567574
    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);
    570580
    571581    QVector<QWidget*> plots;
    572     plots << plot;
     582    plots << plotA << plotZ;
    573583    t_graphWin* graphWin = new t_graphWin(0, fileName, plots, 0, 0);
    574584    graphWin->show();
  • trunk/BNC/src/rinex/reqcanalyze.h

    r4607 r4659  
    4242  QVector<double> _L1gap;
    4343  QVector<double> _L2gap;
     44  QVector<double> _zenDeg;
     45  QVector<double> _zenTim;
    4446};
    4547
  • trunk/BNC/src/src.pro

    r4652 r4659  
    118118             rinex/reqcedit.h         rinex/reqcanalyze.h  \
    119119             rinex/graphwin.h         rinex/polarplot.h    \
    120              rinex/availplot.h
     120             rinex/availplot.h        rinex/zenplot.h
    121121  SOURCES += rinex/bncpostprocess.cpp rinex/rnxobsfile.cpp \
    122122             rinex/rnxnavfile.cpp     rinex/corrfile.cpp   \
    123123             rinex/reqcedit.cpp       rinex/reqcanalyze.cpp \
    124124             rinex/graphwin.cpp       rinex/polarplot.cpp   \
    125              rinex/availplot.cpp
     125             rinex/availplot.cpp      rinex/zenplot.cpp
    126126}
    127127
Note: See TracChangeset for help on using the changeset viewer.