1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/speedgraph.cpp
2015-10-17 12:08:30 +02:00

59 lines
1.1 KiB
C++

#include "speedgraph.h"
#include <QDebug>
SpeedGraph::SpeedGraph(QWidget *parent) : Graph(parent)
{
_max = 0;
Graph::setXLabel(tr("Distance"));
Graph::setYLabel(tr("Speed"));
Graph::setXUnits(tr("km"));
Graph::setYUnits(tr("km/h"));
Graph::setXScale(0.001);
Graph::setYScale(3.6);
Graph::setPrecision(1);
}
void SpeedGraph::loadGPX(const GPX &gpx)
{
QVector<QPointF> data;
qreal max = 0, sum = 0, w = 0, avg;
gpx.speedGraph(data);
if (data.isEmpty())
return;
avg = gpx.distance() / gpx.time();
_avg.append(QPointF(gpx.distance(), avg));
for (int i = 0; i < data.size(); i++)
max = qMax(max, data.at(i).y());
sum = 0; w = 0;
for (QList<QPointF>::iterator it = _avg.begin(); it != _avg.end(); it++) {
sum += it->y() * it->x();
w += it->x();
}
avg = sum / w;
_max = qMax(_max, max);
addInfo(tr("Average"), QString::number(avg * _yScale, 'f', 1) + " "
+ _yUnits);
addInfo(tr("Maximum"), QString::number(_max * _yScale, 'f', 1) + " "
+ _yUnits);
Graph::loadData(data);
}
void SpeedGraph::clear()
{
_max = 0;
_avg.clear();
Graph::clear();
}