Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/nav2 local costmap #73

Merged
merged 3 commits into from
Nov 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions orange_navigation/config/navigation2_params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,21 +179,21 @@ controller_server_rclcpp_node:
local_costmap:
local_costmap:
ros__parameters:
update_frequency: 5.0
publish_frequency: 2.0
update_frequency: 10.0
publish_frequency: 5.0
global_frame: odom
robot_base_frame: base_footprint
use_sim_time: True
rolling_window: true
width: 8
height: 8
resolution: 0.05
footprint: "[ [0.2, 0.33], [0.2, -0.33], [-0.65, -0.33], [-0.65, 0.33] ]"
footprint: "[ [0.40, 0.45], [0.40, -0.45], [-0.70, -0.45], [-0.70, 0.45] ]"
plugins: ["obstacle_layer", "inflation_layer"]
inflation_layer:
plugin: "nav2_costmap_2d::InflationLayer"
inflation_radius: 0.2
cost_scaling_factor: 30.0
inflation_radius: 0.3
cost_scaling_factor: 25.0
obstacle_layer:
plugin: "nav2_costmap_2d::ObstacleLayer"
enabled: True
Expand All @@ -204,6 +204,8 @@ local_costmap:
clearing: True
marking: True
data_type: "LaserScan"
clearing_radius: 1.0
raytrace_range: 5.0
static_layer:
map_subscribe_transient_local: True
always_send_full_costmap: True
Expand Down
Loading