mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-16 01:19:57 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user