You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a multi-robot scenario, before delegating a task for a robot we frequently need to consider the distance between the actual position of a candidate robot and the position where the action should be executed.
Although this distance can be calculated when necessary, this on-the-fly calculation may not be very efficient if we need to calculate it frequently.
While implementing a planner, a nice to have feature would be a service accessible at the beginning of the simulation that could be used to get the distance between two points of interest (poi).
Ex: distance = map_resource.shortest_path_distance(poi1, poi2)
The idea is to map the shortest routes between two points before starting the simulation. The points of interest should be created as part of the map.
The routes could be part of the map or automatically discovered before initing the 'map_resource'.
The text was updated successfully, but these errors were encountered:
gabrielsr
changed the title
Automatically map the paths
Automatically map shortest distance between two points
Sep 5, 2020
gabrielsr
changed the title
Automatically map shortest distance between two points
Automatically map the shortest distance between points of interest
Sep 5, 2020
In a multi-robot scenario, before delegating a task for a robot we frequently need to consider the distance between the actual position of a candidate robot and the position where the action should be executed.
Although this distance can be calculated when necessary, this on-the-fly calculation may not be very efficient if we need to calculate it frequently.
While implementing a planner, a nice to have feature would be a service accessible at the beginning of the simulation that could be used to get the distance between two points of interest (poi).
Ex:
distance = map_resource.shortest_path_distance(poi1, poi2)
The idea is to map the shortest routes between two points before starting the simulation. The points of interest should be created as part of the map.
The routes could be part of the map or automatically discovered before initing the 'map_resource'.
The text was updated successfully, but these errors were encountered: