Robotics StackExchange | Archived questions

CHOMP can only support joint-space goals

I'm currently working in my robot environment with CHOMP planner. Related to this problem i also get next error:

[ INFO] [1550694858.830375540]: Planning request received for MoveGroup action. Forwarding to planning pipeline.
[ERROR] [1550694858.846278197]: Only joint-space goals are supported
[ INFO] [1550694858.847631594]: Execution request received
[ INFO] [1550694859.230634123]: Completed trajectory execution with status SUCCEEDED ...

Python file for execution is the following:

    pose_goal = geometry_msgs.msg.Pose()
    pose_goal.orientation.x = 0.0
    pose_goal.orientation.y = 0.906702180222

    pose_goal.orientation.z =  0.0
    pose_goal.orientation.w = 0.42177145041
    pose_goal.position.x = 1.0
    pose_goal.position.y = 1.0
    pose_goal.position.z = 0.5

    group.set_pose_target(pose_goal)

    # plan to goal
    plan = group.plan()
    # execute plan
    group.execute(plan)

    group.stop()
    group.clear_pose_targets()

With OMPL and even STOMP everything working just fine. (are in the same package, just another launch file) Any advice is welcome, thanks.

Asked by DieterWuytens on 2019-02-20 15:46:18 UTC

Comments

I also have the same problem here... any help would be appreciated.

Asked by caioviturino on 2019-07-02 17:04:17 UTC

Hello, I know this is old but did you figure it out ? I have a similar issue... Thanks

Asked by edote on 2020-03-11 10:44:43 UTC

I have the same issue, Has anyone figured it out? I could only found it is coming from here: https://github.com/ros-planning/moveit/blob/9202830ef0955fa38c5d421eb60403017959ddd3/moveit_planners/chomp/chomp_motion_planner/src/chomp_planner.cpp#L82

Asked by burakaksoy on 2022-05-16 19:11:10 UTC

Answers