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,6 +149,18 @@ RideFileTableModel::setHeadings(RideFile::SeriesType series)
headings_ << tr("tHb");
headingsType << RideFile::tHb;
}
if (series == RideFile::rcad || ride->areDataPresent()->rcad) {
headings_ << tr("Run Cadence");
headingsType << RideFile::rcad;
}
if (series == RideFile::rvert || ride->areDataPresent()->rvert) {
headings_ << tr("Vertical Oscillation");
headingsType << RideFile::rvert;
}
if (series == RideFile::rcontact || ride->areDataPresent()->rcontact) {
headings_ << tr("GCT");
headingsType << RideFile::rcontact;
}
if (series == RideFile::interval || ride->areDataPresent()->interval) {
headings_ << tr("Interval");
headingsType << RideFile::interval;