smoothing¶
-
class
gps_helper.smoothing.LowPassFilter(alpha)[source]¶ Low pass filter implementation.
Methods
next_sample(x)Process the next sample.
-
class
gps_helper.smoothing.MovingAverageFilter(n)[source]¶ Moving average filter implementation.
Methods
next_sample(x)Process the next sample.
-
class
gps_helper.smoothing.RecursiveAverage[source]¶ Recursive average filter implementation.
Methods
next_sample(x)Process the next data sample.