Merge commit 'f7c3dc2' into HEAD

# Conflicts:
#	src/nodeClass.js
This commit is contained in:
znetsixe
2026-03-31 18:11:37 +02:00
4 changed files with 476 additions and 28 deletions

View File

@@ -385,7 +385,7 @@ class Measurement {
const lowPass = this.lowPassFilter(arr); // Apply low-pass filter
const highPass = this.highPassFilter(arr); // Apply high-pass filter
return arr.map((val, idx) => lowPass + highPass - val).pop(); // Combine the filters
return arr.map((val, _idx) => lowPass + highPass - val).pop(); // Combine the filters
}
weightedMovingAverage(arr) {
@@ -565,7 +565,7 @@ const configuration = {
enabled: true,
},
functionality: {
positionVsParent: "upstream"
positionVsParent: POSITIONS.UPSTREAM
}
};