Skip to content

Commit

Permalink
adjust params for costmap inflation
Browse files Browse the repository at this point in the history
Signed-off-by: Autumn60 <[email protected]>
  • Loading branch information
Autumn60 committed Sep 4, 2024
1 parent 8519d01 commit 5dda6f6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/**:
ros__parameters:
update_rate: 20.0
update_rate: 20.0 # [Hz]
map_frame_id: "map"
costmap_center_frame_id: "base_link"
costmap_width: 50.0
costmap_resolution: 0.2
costmap_width: 50.0 # [m]
costmap_resolution: 0.2 # [m/cell]
multi_layered_costmap:
layers:
- "cached_lanelet_layer"
Expand All @@ -13,12 +13,13 @@
type: "cached_lanelet"
map_topic: "/map/vector_map"
costmap_topic: "~/debug/cached_costmap"
inflation_radius: 0.6 # [m]
cached_costmap:
min_x: 89607.0
max_x: 89687.0
min_y: 43114.0
max_y: 43194.0
resolution: 0.1
min_x: 89607.0 # [m]
max_x: 89687.0 # [m]
min_y: 43114.0 # [m]
max_y: 43194.0 # [m]
resolution: 0.1 # [m/cell]
predicted_object_layer:
type: "predicted_object"
predicted_objects_topic: "/perception/object_recognition/objects"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
type: "cached_lanelet"
map_topic: "/map/vector_map"
costmap_topic: "~/debug/cached_costmap"
inflation_radius: 0.5
cached_costmap:
min_x: 89607.0
max_x: 89687.0
Expand Down

0 comments on commit 5dda6f6

Please sign in to comment.