CycleView & more

This commit is contained in:
Martin Bauer
2020-07-15 15:53:16 +02:00
parent 23eb634c30
commit 39632d4eec
9 changed files with 165 additions and 46 deletions

View File

@@ -30,11 +30,11 @@ const INITIAL_SETTINGS = {
swimTrackerHost: "192.168.178.110",
analysis: {
peaksPerLap: 30,
peaksPerLap: 30,
windowSizeInSecs: 5,
numMeasurementsPerSec: 10,
kgFactor: 1.0 / 700.0,
kgFactor: 1.0 / 701.0,
peakDetector: 'SIMPLE', // either 'SIMPLE' or 'ZSCORE'
peakDetectorSimpleThreshold: 2000,
@@ -42,6 +42,9 @@ const INITIAL_SETTINGS = {
peakDetectorZScoreLag: 8, // peak detector z-score values
peakDetectorZScoreThreshold: 2,
peakDetectorZScoreInfluence: 0.1,
activeTimeThreshold: 300,
movingAverageWindowSize: 10*5,
}
};