mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
parent
29147e1b8b
commit
10d2fe4431
@ -74,17 +74,19 @@ Track::Track(const TrackData &data) : _data(data), _pause(0)
|
|||||||
|
|
||||||
for (int i = 0; i < _data.size(); i++) {
|
for (int i = 0; i < _data.size(); i++) {
|
||||||
const SegmentData &sd = _data.at(i);
|
const SegmentData &sd = _data.at(i);
|
||||||
|
_segments.append(Segment());
|
||||||
if (sd.isEmpty())
|
if (sd.isEmpty())
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// precompute distances, times, speeds and acceleration
|
// precompute distances, times, speeds and acceleration
|
||||||
QVector<qreal> acceleration;
|
QVector<qreal> acceleration;
|
||||||
|
|
||||||
_segments.append(Segment());
|
|
||||||
Segment &seg = _segments.last();
|
Segment &seg = _segments.last();
|
||||||
|
|
||||||
seg.distance.append(i ? _segments.at(i-1).distance.last() : 0);
|
seg.distance.append(i && !_segments.at(i-1).distance.isEmpty()
|
||||||
seg.time.append(i ? _segments.at(i-1).time.last() :
|
? _segments.at(i-1).distance.last() : 0);
|
||||||
|
seg.time.append(i && !_segments.at(i-1).time.isEmpty()
|
||||||
|
? _segments.at(i-1).time.last() :
|
||||||
sd.first().hasTimestamp() ? 0 : NAN);
|
sd.first().hasTimestamp() ? 0 : NAN);
|
||||||
seg.speed.append(sd.first().hasTimestamp() ? 0 : NAN);
|
seg.speed.append(sd.first().hasTimestamp() ? 0 : NAN);
|
||||||
acceleration.append(sd.first().hasTimestamp() ? 0 : NAN);
|
acceleration.append(sd.first().hasTimestamp() ? 0 : NAN);
|
||||||
|
Loading…
Reference in New Issue
Block a user