Skip to content

Commit f63b27e

Browse files
committedJun 13, 2021
add comments to costmap_local_params.yaml
1 parent 229dba9 commit f63b27e

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,35 @@
1+
# http://wiki.ros.org/costmap_2d/flat
12
local_costmap:
3+
# The global frame for the costmap to operate in.
24
global_frame: odom
5+
# The name of the frame for the base link of the robot.
36
robot_base_frame: base_footprint
47

8+
# The frequency in Hz for the map to be updated.
59
update_frequency: 10.0
10+
# The frequency in Hz for the map to be publish display information.
611
publish_frequency: 10.0
7-
transform_tolerance: 0.5
12+
# Specifies the delay in transform (tf) data that is tolerable in seconds.
13+
# This parameter serves as a safeguard to losing a link in the tf tree while
14+
# still allowing an amount of latency the user is comfortable with to exist in the system.
15+
# For example, a transform being 0.2 seconds out-of-date may be tolerable,
16+
# but a transform being 8 seconds out of date is not.
17+
# If the tf transform between the coordinate frames specified by the global_frame and
18+
# robot_base_frame parameters is transform_tolerance seconds older than ros::Time::now(),
19+
# then the navigation stack will stop the robot.
20+
transform_tolerance: 0.5
821

9-
static_map: false
22+
# Whether or not to use the static map to initialize the costmap.
23+
# If the rolling_window parameter is set to true, this parameter must be set to false.
24+
static_map: false
25+
# Whether or not to use a rolling window version of the costmap.
26+
# If the static_map parameter is set to true, this parameter must be set to false.
1027
rolling_window: true
28+
# The following parameters are overwritten if "static_map" is set to true,
29+
# and their original values will be restored when "static_map" is set back to false.
30+
# The width of the map in meters.
1131
width: 3
32+
# The height of the map in meters.
1233
height: 3
34+
# The resolution of the map in meters/cell.
1335
resolution: 0.05

0 commit comments

Comments
 (0)
Please sign in to comment.