Add Garmin Running Dynamics Data

.. read from FIT/TCX
.. write to JSON
.. view in Editor

NOTE: They are not on any of the charts yet.
This commit is contained in:
Mark Liversedge
2014-09-25 14:31:06 +01:00
parent 36e7fb7caf
commit f4d902dcbb
35 changed files with 198 additions and 42 deletions

View File

@@ -149,7 +149,7 @@ SlfParser::endElement( const QString&, const QString&, const QString& qName)
distance *= KM_PER_MILE;
alt *= FEET_PER_METER;
}
rideFile->appendPoint(secs, cadence, hr, distance, speed, torque, power, alt, lon, lat, headwind, 0.0, RideFile::NoTemp, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, lap);
rideFile->appendPoint(secs, cadence, hr, distance, speed, torque, power, alt, lon, lat, headwind, 0.0, RideFile::NoTemp, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, lap);
secs += samplingRate;
}
}