Replies: 1 comment 2 replies
-
Motion planning: If you are fine with stopping at each waypoint, you can use the goTo command, see https://github.com/USC-ACTLab/crazyswarm/blob/master/ros_ws/src/crazyswarm/scripts/waypoints.py. Otherwise, you will need to use a trajectory planner to precompute trajectories (e.g., https://doi.org/10.1109/TRO.2018.2853613), and execute them, see https://github.com/USC-ACTLab/crazyswarm/blob/master/ros_ws/src/crazyswarm/scripts/swap6v.py. Display: you can use the |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am working on multi UAV path planning algorithm (simulation), and I would like to have the waypoints in a CSV file such that:
UAV#1
[x0,y0,z0]....[xn,yn,n]
.
.
.
UAV#n
[x0,y0,z0]....[xn,yn,n]
Then I want to know how to generate the trajectories at first and then display them simultaneously on the 3D plane.
Thank you
Beta Was this translation helpful? Give feedback.
All reactions