forked from mit-rss/racecar_simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
params.yaml
54 lines (43 loc) · 1.31 KB
/
params.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# The distance between the front and
# rear axle of the racecar
wheelbase: 0.325 # meters
# Limits on the speed and steering angle
max_speed: 4. # meters/second
max_steering_angle: 0.34 # radians
# The rate at which the pose and the lidar publish
update_pose_rate: 0.02
# Lidar simulation parameters
scan_beams: 100
scan_field_of_view: 4.71 # radians
# The distance from the center of the
# rear axis (base_link) to the lidar
scan_distance_to_base_link: 0.275 # meters
# The standard deviation of the noise applied
# to the lidar simulation
scan_std_dev: 0.01 # meters
# The probability threshold for points
# in the occupancy grid to be considered "free".
# Used for the lidar simulator.
map_free_threshold: 0.3
# Enables joystick if true
joy: true
joy_speed_axis: 1
joy_angle_axis: 2
joy_max_speed: 2. # meters/second
# The names of topics to listen and publish to
joy_topic: "/joy"
drive_topic: "/drive"
map_topic: "/map"
distance_transform_topic: "/dt"
scan_topic: "/scan"
pose_topic: "/pose"
odom_topic: "/odom"
pose_rviz_topic: "/initialpose"
# The names of the transformation frames published to
map_frame: "map"
base_frame: "base_link"
scan_frame: "laser"
# Turn this off for mapping
broadcast_transform: true
# Noise to add to odometry twist (first 3 are linear, last 3 are angular)
mu_twist: [0., 0., 0., 0. 0., 0.]