1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/GUI/powergraph.cpp

92 lines
1.6 KiB
C++
Raw Normal View History

#include <QLocale>
2017-11-26 18:54:03 +01:00
#include "data/data.h"
#include "powergraphitem.h"
2016-11-06 03:28:08 +01:00
#include "powergraph.h"
PowerGraph::PowerGraph(QWidget *parent) : GraphTab(parent)
{
_showTracks = true;
GraphView::setYUnits(tr("W"));
setYLabel(tr("Power"));
setSliderPrecision(1);
}
void PowerGraph::setInfo()
{
if (_showTracks) {
QLocale l(QLocale::system());
GraphView::addInfo(tr("Average"), l.toString(avg() * yScale()
2016-11-06 03:28:08 +01:00
+ yOffset(), 'f', 1) + UNIT_SPACE + yUnits());
GraphView::addInfo(tr("Maximum"), l.toString(max() * yScale()
2016-11-06 03:28:08 +01:00
+ yOffset(), 'f', 1) + UNIT_SPACE + yUnits());
} else
clearInfo();
}
QList<GraphItem*> PowerGraph::loadData(const Data &data)
2016-11-06 03:28:08 +01:00
{
QList<GraphItem*> graphs;
2016-11-06 03:28:08 +01:00
for (int i = 0; i < data.tracks().count(); i++) {
2019-01-31 01:46:53 +01:00
const Track &track = data.tracks().at(i);
const Graph &graph = track.power();
2016-11-06 03:28:08 +01:00
2019-01-31 01:46:53 +01:00
if (!graph.isValid()) {
2016-11-06 03:28:08 +01:00
skipColor();
graphs.append(0);
} else {
PowerGraphItem *gi = new PowerGraphItem(graph, _graphType);
GraphView::addGraph(gi);
2019-01-31 01:46:53 +01:00
_avg.append(QPointF(track.distance(), gi->avg()));
graphs.append(gi);
2016-11-06 03:28:08 +01:00
}
}
for (int i = 0; i < data.routes().count(); i++) {
2016-11-06 03:28:08 +01:00
skipColor();
graphs.append(0);
}
2016-11-06 03:28:08 +01:00
2019-01-31 01:46:53 +01:00
for (int i = 0; i < data.areas().count(); i++)
skipColor();
2016-11-06 03:28:08 +01:00
setInfo();
redraw();
return graphs;
2016-11-06 03:28:08 +01:00
}
qreal PowerGraph::avg() const
{
qreal sum = 0, w = 0;
QList<QPointF>::const_iterator it;
for (it = _avg.begin(); it != _avg.end(); it++) {
sum += it->y() * it->x();
w += it->x();
}
return (sum / w);
}
void PowerGraph::clear()
{
_avg.clear();
2019-03-05 22:34:50 +01:00
GraphTab::clear();
2016-11-06 03:28:08 +01:00
}
void PowerGraph::showTracks(bool show)
{
_showTracks = show;
showGraph(show);
setInfo();
redraw();
}