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

@@ -100,7 +100,9 @@ FitlogParser::startElement( const QString&, const QString&,
// now add
rideFile->appendPoint(point.secs,point.cad,point.hr,point.km,point.kph,point.nm,
point.watts,point.alt,point.lon,point.lat, point.headwind,
0.0, RideFile::NoTemp, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, point.interval);
0.0, RideFile::NoTemp, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0,// running dynamics
point.interval);
}
return true;
}