How does elevation smoothing best work? #55
Unanswered
richardpbull
asked this question in
Q&A
Replies: 1 comment 1 reply
-
This provides a good visual example of smoothing noise from tracks' x or y points... For APPLY_ELEVATION_SMOOTHING, ELEVATION_SMOOTHING_THRESHOLD & ELEVATION_SMOOTHING_SPIKES_THRESHOLD Would increasing ELEVATION_SMOOTHING_THRESHOLD might eventually result in points being ignored and the cumulative distance then decreasing? Or is it only the elevation that is not included in the cumulative elevation change summary? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Could you explain a little how this elevation smoothing works please? Looking into it a little it is a definitely a mistake to rely on single values. Often elevation can vary by 10m over a distance of 2m simply because of the relative accuracy of location over spot altitude in GPS devices.
Do you have advice for reasonable settings for the thresholds?
many thanks!
`
/**
* Apply elevation gain/loss smoothing? If true, the threshold in
* ELEVATION_SMOOTHING_THRESHOLD and ELEVATION_SMOOTHING_SPIKES_THRESHOLD (if not null) applies
* @var bool
*/
public static $APPLY_ELEVATION_SMOOTHING = true;
`
Beta Was this translation helpful? Give feedback.
All reactions