1
+ # http://wiki.ros.org/costmap_2d/flat
1
2
local_costmap :
3
+ # The global frame for the costmap to operate in.
2
4
global_frame : odom
5
+ # The name of the frame for the base link of the robot.
3
6
robot_base_frame : base_footprint
4
7
8
+ # The frequency in Hz for the map to be updated.
5
9
update_frequency : 10.0
10
+ # The frequency in Hz for the map to be publish display information.
6
11
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
8
21
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.
10
27
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.
11
31
width : 3
32
+ # The height of the map in meters.
12
33
height : 3
34
+ # The resolution of the map in meters/cell.
13
35
resolution : 0.05
0 commit comments