adjust BS to DP scaling factor

This should have been part of commit 6a514f3.
This commit is contained in:
Sean Rhea
2009-12-12 22:31:05 -05:00
parent a609738cca
commit 3c72be18ff

View File

@@ -51,7 +51,7 @@ class DanielsPoints : public RideMetric {
if (ride->deviceType() == QString("Manual CSV")) {
// Manual entry: use BS from dataPoints with a scaling factor
// that works about right for long, steady rides.
double scaling_factor = 11.0 / 58.0;
double scaling_factor = 0.55;
score = ride->dataPoints().first()->bs * scaling_factor;
return;
}