| 1 |
|
|---|
| 2 | /* -------------------------------------------------------------------------
|
|---|
| 3 | * BKG NTRIP Client
|
|---|
| 4 | * -------------------------------------------------------------------------
|
|---|
| 5 | *
|
|---|
| 6 | * Class: t_polarPlot
|
|---|
| 7 | *
|
|---|
| 8 | * Purpose: Polar Plot
|
|---|
| 9 | *
|
|---|
| 10 | * Author: L. Mervart
|
|---|
| 11 | *
|
|---|
| 12 | * Created: 23-Jun-2012
|
|---|
| 13 | *
|
|---|
| 14 | * Changes:
|
|---|
| 15 | *
|
|---|
| 16 | * -----------------------------------------------------------------------*/
|
|---|
| 17 |
|
|---|
| 18 | #include <qpen.h>
|
|---|
| 19 | #include <qwt_series_data.h>
|
|---|
| 20 | #include <qwt_symbol.h>
|
|---|
| 21 | #include <qwt_legend.h>
|
|---|
| 22 | #include <qwt_polar_grid.h>
|
|---|
| 23 | #include <qwt_polar_curve.h>
|
|---|
| 24 | #include <qwt_polar_marker.h>
|
|---|
| 25 | #include <qwt_scale_engine.h>
|
|---|
| 26 |
|
|---|
| 27 | #include "polarplot.h"
|
|---|
| 28 |
|
|---|
| 29 | const QwtInterval zenithInterval(0.0, 90.0);
|
|---|
| 30 | const QwtInterval azimuthInterval(0.0, 360.0);
|
|---|
| 31 |
|
|---|
| 32 | // Data Class
|
|---|
| 33 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 34 | class Data: public QwtSeriesData<QwtPointPolar> {
|
|---|
| 35 | public:
|
|---|
| 36 | Data(const QwtInterval &zenithInterval,
|
|---|
| 37 | const QwtInterval &azimuthInterval, size_t size) :
|
|---|
| 38 | _zenithInterval(zenithInterval), _azimuthInterval(azimuthInterval),
|
|---|
| 39 | _size(size) {}
|
|---|
| 40 |
|
|---|
| 41 | virtual size_t size() const {return _size;}
|
|---|
| 42 |
|
|---|
| 43 | protected:
|
|---|
| 44 | QwtInterval _zenithInterval;
|
|---|
| 45 | QwtInterval _azimuthInterval;
|
|---|
| 46 | size_t _size;
|
|---|
| 47 | };
|
|---|
| 48 |
|
|---|
| 49 | // Spiral Data Class
|
|---|
| 50 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 51 | class SpiralData: public Data {
|
|---|
| 52 | public:
|
|---|
| 53 | SpiralData(const QwtInterval &zenithInterval,
|
|---|
| 54 | const QwtInterval &azimuthInterval, size_t size) :
|
|---|
| 55 | Data(zenithInterval, azimuthInterval, size) {}
|
|---|
| 56 |
|
|---|
| 57 | virtual QwtPointPolar sample(size_t ii) const {
|
|---|
| 58 | const double stepA = 4 * _azimuthInterval.width() / _size;
|
|---|
| 59 | const double aa = _azimuthInterval.minValue() + ii * stepA;
|
|---|
| 60 |
|
|---|
| 61 | const double stepR = _zenithInterval.width() / _size;
|
|---|
| 62 | const double rr = _zenithInterval.minValue() + ii * stepR;
|
|---|
| 63 |
|
|---|
| 64 | return QwtPointPolar(aa, rr);
|
|---|
| 65 | }
|
|---|
| 66 |
|
|---|
| 67 | virtual QRectF boundingRect() const {
|
|---|
| 68 | if (d_boundingRect.width() < 0.0) {
|
|---|
| 69 | d_boundingRect = qwtBoundingRect(*this);
|
|---|
| 70 | }
|
|---|
| 71 | return d_boundingRect;
|
|---|
| 72 | }
|
|---|
| 73 | };
|
|---|
| 74 |
|
|---|
| 75 | // Constructor
|
|---|
| 76 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 77 | t_polarPlot::t_polarPlot( QWidget *parent ) :
|
|---|
| 78 | QwtPolarPlot(QwtText("Polar Plot"), parent) {
|
|---|
| 79 |
|
|---|
| 80 | setPlotBackground(Qt::white);
|
|---|
| 81 |
|
|---|
| 82 | // Scales
|
|---|
| 83 | // ------
|
|---|
| 84 | setScale(QwtPolar::Radius,
|
|---|
| 85 | zenithInterval.minValue(), zenithInterval.maxValue());
|
|---|
| 86 |
|
|---|
| 87 | setScale(QwtPolar::Azimuth,
|
|---|
| 88 | azimuthInterval.minValue(), azimuthInterval.maxValue(),
|
|---|
| 89 | azimuthInterval.width() / 12);
|
|---|
| 90 |
|
|---|
| 91 | // Grids, Axes
|
|---|
| 92 | // -----------
|
|---|
| 93 | QwtPolarGrid* grid = new QwtPolarGrid();
|
|---|
| 94 | grid->setPen(QPen(Qt::black));
|
|---|
| 95 | for ( int scaleId = 0; scaleId < QwtPolar::ScaleCount; scaleId++ ) {
|
|---|
| 96 | grid->showGrid(scaleId);
|
|---|
| 97 | }
|
|---|
| 98 |
|
|---|
| 99 | grid->setAxisPen(QwtPolar::AxisAzimuth, QPen(Qt::black));
|
|---|
| 100 |
|
|---|
| 101 | grid->showAxis(QwtPolar::AxisAzimuth, true);
|
|---|
| 102 | grid->showAxis(QwtPolar::AxisTop, true);
|
|---|
| 103 | grid->showAxis(QwtPolar::AxisBottom, false);
|
|---|
| 104 | grid->showAxis(QwtPolar::AxisLeft, false);
|
|---|
| 105 | grid->showAxis(QwtPolar::AxisRight, false);
|
|---|
| 106 |
|
|---|
| 107 | grid->showGrid(QwtPolar::Azimuth, true);
|
|---|
| 108 | grid->showGrid(QwtPolar::Radius, true);
|
|---|
| 109 |
|
|---|
| 110 | grid->attach(this);
|
|---|
| 111 |
|
|---|
| 112 | // Curves
|
|---|
| 113 | // ------
|
|---|
| 114 | QwtPolarCurve* curve = createCurve();
|
|---|
| 115 | curve->attach(this);
|
|---|
| 116 |
|
|---|
| 117 | // Legend
|
|---|
| 118 | // ------
|
|---|
| 119 | QwtLegend *legend = new QwtLegend;
|
|---|
| 120 | insertLegend(legend, QwtPolarPlot::BottomLegend);
|
|---|
| 121 | }
|
|---|
| 122 |
|
|---|
| 123 | // Destructor
|
|---|
| 124 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 125 | t_polarPlot::~t_polarPlot() {
|
|---|
| 126 | }
|
|---|
| 127 |
|
|---|
| 128 | //
|
|---|
| 129 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 130 | QwtPolarCurve* t_polarPlot::createCurve() const {
|
|---|
| 131 | const int numPoints = 200;
|
|---|
| 132 | QwtPolarCurve* curve = new QwtPolarCurve();
|
|---|
| 133 | curve->setStyle(QwtPolarCurve::NoCurve); // draw only symbols
|
|---|
| 134 | curve->setSymbol(new QwtSymbol(QwtSymbol::Ellipse,
|
|---|
| 135 | QBrush(Qt::red), QPen(Qt::red),
|
|---|
| 136 | QSize(3, 3)));
|
|---|
| 137 | curve->setData(new SpiralData(zenithInterval, azimuthInterval, numPoints));
|
|---|
| 138 | return curve;
|
|---|
| 139 | }
|
|---|