mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 08:08:42 +00:00
Fix Gaps - Don't fill stationary gaps shorter than tolerance
Continuation of e75ab10
This commit is contained in:
@@ -262,7 +262,7 @@ FixGaps::postProcess(RideFile *ride, DataProcessorConfig *config=0, QString op="
|
||||
}
|
||||
|
||||
// stationary or greater than stop seconds... fill with zeroes
|
||||
} else if (stationary || gap > stop) {
|
||||
} else if (stationary && gap >= tolerance || gap > stop) {
|
||||
|
||||
dropouts++;
|
||||
dropouttime += gap;
|
||||
|
||||
Reference in New Issue
Block a user