NA value and Min Temperature metric

.. allow NA to be used anywhere and skipped on
   the metric trend chart.

.. add a min temperature metric

.. add a chart for tracking temperatures
This commit is contained in:
Mark Liversedge
2015-12-03 14:58:38 +00:00
parent 095f9529d9
commit 2803c8659b
35 changed files with 133 additions and 62 deletions

View File

@@ -44,7 +44,7 @@ SmlParser::SmlParser(RideFile* rideFile) : rideFile(rideFile)
lon = 0;
lat = 0;
hr = 0;
temp = RideFile::NoTemp;
temp = RideFile::NA;
periodic = false;
swimming = false;
header = false;
@@ -74,7 +74,7 @@ SmlParser::startElement(const QString&, const QString&,
watts = 0;
alt = 0;
hr = 0;
temp = RideFile::NoTemp;
temp = RideFile::NA;
periodic = false;
swimming = false;
}