-
Notifications
You must be signed in to change notification settings - Fork 13.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use UTM_GLOBAL_POSITION for collision avoidance #11262
Comments
@bresch I think the ask here is that this triggers the same safety maneuver as currently ADSB_VEHICLE - which would mean adding UTM_GLOBAL_POSITION in mavlink_receiver.cpp where ADSB_VEHICLE is already handled. |
Thank you @LorenzMeier . Indeed UTM_GLOBAL_POSITION should trigger same safety maneuver as ADSB_VEHICLE. |
@bresch @LorenzMeier any progress on this topic? |
Before implementing we need to decide how |
@LorenzMeier no one assigned? |
We need to work on this because collision avoidance is definitely needed between UAV's |
I've started looking into this, and I have a question. |
Another question I have is how to map |
@ItsTimmy When this is done, can you please let me know so we can create docs - along the lines of http://docs.px4.io/master/en/advanced_features/traffic_avoidance_adsb.html FWIW (I'm not in charge) If it were me I would make transponder_target into a generic message - ie with next_lat, next_lon, and renamed vehicle_id so it can be used for both purposes. I'd proceed with the naive implementation (ie not use next_lat, next_lon). This could be done quite quickly and the effort of adding the additional support for next waypoint could be dealt with as a constrained and separate problem. |
@ItsTimmy hi Timothy
|
➤ Timothy Scott commented: PR here: #12452 Note: Notify the following people when this is merged:
|
Describe problem solved by the proposed feature
At the moment there is no collision avoidance feature based on position reports from other drones available. The only collision avoidance is done for manned aircraft traffic based on ADSB_VEHICLE message provided by a ADSB receiver connected to FMU.
With considering other drone positions as well for collision avoidance drone operation safety can be significantly improved when multiple drones share the same airspace.
UTM_GLOBAL_POSITION message broadcasted by a drone and implemented with #10873 provides all the necessary information similar to ADSB_VEHICLE.
Describe your preferred solution
Use UTM_GLOBAL_POSITION message similar to ADSB_VEHICLE for collision avoidance.
Describe possible alternatives
n/a
Additional context
Cooperative awareness is mandatory in future UTM concepts to allow multiple drone operations within same airspace.
The text was updated successfully, but these errors were encountered: