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
I get GridBased plugin failed to plan from (10.38, 0.41) to (10.35, -3.65): "Start occupied". when calling ComputePathThroughPoses (although it's really not occupied). Setting it dynamically to e.g. 0.1 fixes the issue
Additional information
The text was updated successfully, but these errors were encountered:
That is not a valid configuration, there must be a non-zero value for the minimum turning radius. The motion model requires a turning radius to compute the minimum turning arcs. It does not support point changes, as that would be discontinuous and therefore infeasible kinematically by the motion model's formulation. If you didn't need a feasible planner, you could use Smac 2D, NavFn, or Theta* as potential other options that don't rely on feasibility constraints.
Otherwise, you could also use the State Lattice planner, which can be configured with a minimum control set with in-place rotations that would be virtually allowing stop and rotate maneuvers (in conjunction with some minimum turning radius turning moves as well). That is just with the generator we provide that you can configure easily. If you want something more bespoke, that is part of the value of the State Lattice planner; you can create your own minimum control set / generator and we provide the file format that they're read into the planner to use by. The generator we provide is good for many types of robots and situations, but bespoke situations or 'abnormal' robot configurations would need to create their own
Bug report
Required Info:
Steps to reproduce issue
Expected behavior
Actual behavior
I get
GridBased plugin failed to plan from (10.38, 0.41) to (10.35, -3.65): "Start occupied".
when callingComputePathThroughPoses
(although it's really not occupied). Setting it dynamically to e.g. 0.1 fixes the issueAdditional information
The text was updated successfully, but these errors were encountered: