ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Have you looked at base_local_planner_params.yaml in turtlebot_navigation/param? This yaml sets some parameters for TrajectoryPlannerROS. Please check it out! I think that this yaml is useful for you.

Have you looked at base_local_planner_params.yaml in turtlebot_navigation/param? This yaml sets some parameters for TrajectoryPlannerROS. Please check it out! I think that this yaml is useful for you.you. In case of eband_planner_params.yaml, contents of yaml is following.

EBandPlannerROS:

#TRAJECTORY CONTROL
 differential_drive: true
 max_acceleration: 0.5

# velocity limits
 max_vel_lin: 0.6
 max_vel_th: 0.8
 min_vel_lin: 0.1
 min_vel_th: 0.0
 min_in_place_vel_th: 0.0
 in_place_trans_vel: 0.0

# goal tolerance
 xy_goal_tolerance: 0.2
 yaw_goal_tolerance: 0.2

# angular velocity PID
 k_prop_; 0.75

#eband parameters

You will need to check more detailed of Parameter by yourself.