Drone state estimators @ LSY. Contains model free (smoothing) and model based (EKF, UKF) state estimators for drones.
Simply install with pip
pip install drone-estimatorsClone repository and install repository:
git clone git@github.com:utiasDSL/drone-estimators.git
cd drone-estimators
pixi installNow activate the jazzy environment and install the package in editable mode
pixi shell -e jazzy
uv pip install -e .If you want to have the drone-models in editable mode, simply install them too with pip, i.e.,
cd ../drone-models
uv pip install -e .Either use the estimators directly:
from drone_estimators.estimator import KalmanFilteror run the ROS2 node with:
python -m drone_estimators.ros_nodes.ros2_nodeFor the latter, you can either add your specific drone to be estimated with default settings or add all drones to the estimators.toml file (editable mode), which can be passed as an argument
python -m drone_estimators.ros_nodes.ros2_node --drone <your_drone>
python -m drone_estimators.ros_nodes.ros2_node --settings <path/to/your/estimators.toml>