Changes to add altitude data to allplot & elevation gained to ride metrics

This commit is contained in:
Thomas Weichmann
2009-08-24 21:39:47 -04:00
committed by Justin Knotzke
parent 2be608410a
commit 5c0bdd8969
18 changed files with 171 additions and 47 deletions

View File

@@ -37,7 +37,7 @@ RideFile *SrmFileReader::openRideFile(QFile &file, QStringList &errors) const
SrmDataPoint *p = i.next();
double nm = p->watts / 2.0 / PI / p->cad * 60.0;
rideFile->appendPoint(p->secs, p->cad, p->hr, p->km,
p->kph, nm, p->watts, p->interval);
p->kph, nm, p->watts, p->alt, p->interval);
}
return rideFile;
}