Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 1.71 KB

README.md

File metadata and controls

10 lines (7 loc) · 1.71 KB

Kalman-based positioning and navigation in Python

This repo illustrates the Kalman filter implementation in Python for wireless positioning and navigation system especially for UWB-based localization. The Kalman class was originally written for smoothing the location data achieved from UWB-based positioning in our previous repo. The example use-case of the filter includes both the simulated data and the real-world data extracted from the UWB-hardwares namely DWM1001 from Decawave. For wireless positioning and navigation system using Kalman-based filters, a motion (or) kinematic model is necessary to provide. In this repo, we gave both the constant velocity and acceleartion motion models in the "Helpers" script, which are widely used in point localization such as wireless positioning systems in UWB or GPS.

The use-case and system integration (not necessarily in Python) of Kalman related filters in UWB-based positioning and navigation can also be found in our papers as follow:
(i) A Bidirectional Object Tracking and Navigation System using a True-Range Multilateration Method
(ii) A Comparative Study of UWB-based True-Range Positioning Algorithms using Experimental Data

The dependency of the Kalman class is NumPy while matplotlib is used for the visualization of the sample data. Simply run python example_sim_data.py or the experimental data one to see the sample data results. The following image shows the sample result based on the simulated data.

KF_sample