Get Feedback from Move Base if goal is reachable
Hi,
I am running the move base navigation package (Local planner DWA, global planner NavfnROS). The problem is, I would like to determine whenever the goal is not reachable. Unfortunately, the documentation of the actions is currently down: http://docs.ros.org/api/move_base_msg...
I suspect the information to be available via the topics
/move_base/feedback
/move_base/status
/move_base/result
Also using the action server:
move_base_client_.sendGoal(goal);
actionlib::SimpleClientGoalState status=move_base_client_.getState();
I could not find any indicator that if the goal is reachable in the status message.
Do you have any idea how to get a notification when the goal is not reachable?
Thanks a lot!!!!