Changeset 4668 in ntrip


Ignore:
Timestamp:
Sep 8, 2012, 6:29:05 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

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

    r4667 r4668  
    215215void t_availPlot::setNumSat(const QVector<double>& _numSatTim,
    216216                            const QVector<double>& _numSat) {
     217  QwtPlotCurve* curve = new QwtPlotCurve("# sat");
     218  curve->setXAxis(QwtPlot::xBottom);
     219  curve->setYAxis(QwtPlot::yRight);
     220  curve->setSamples(_numSatTim, _numSat);
     221  curve->attach(this);
    217222}
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r4667 r4668  
    232232      }
    233233      if ( (iEpo % step) == 0 ) {
     234        if (_numSatTim.size() > 0) {
     235          _numSatTim << _numSatTim.last();
     236          _numSat    << numSat;
     237        }
    234238        _numSatTim << _currEpo->tt.mjddec() * 24.0;
    235239        _numSat    << numSat;
Note: See TracChangeset for help on using the changeset viewer.