Some errors when using GlobalPlanner
I used navfn / NavfnROS as a global planner, it can correctly plan the path from the starting point to the target. But it seems that it does not support the A * algorithm.
So I used global_planner / GlobalPlanner instead. When I use the default parameters, it can complete the path planning correctly as navfn / NavfnROS; when I set use_dijkstra: false
, although the robot can finally reach the target point, the following error will be displayed during this process:
[ERROR] [1587748810.128568179]: NO PATH!
[ERROR] [1587748810.128656787]: Failed to get a plan from potential when a legal potential was found. This shouldn't happen.
It seems that these errors did not affect the path planning, but I want to know why these errors occur.
Has anyone else encountered the same problem?