Skip to content

Commit b182b06

Browse files
author
Lorenzo
committed
Restore generic defaults in core config for PR
- Reset map_frame to 'map' and base_frame to 'base_link' (standard ROS) - Reset map_length to 15.0m default - Reset use_sim_time default to 'false' - Excavator-specific configs remain in mole_perception_bringup
1 parent e6c7ce4 commit b182b06

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

elevation_mapping_cupy/config/core/core_param.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ elevation_mapping_node:
22
ros__parameters:
33
#### Basic parameters ########
44
resolution: 0.1 # resolution in m.
5-
map_length: 20.0 # map's size in m.
5+
map_length: 15.0 # map's size in m.
66
sensor_noise_factor: 0.05 # point's noise is sensor_noise_factor*z^2 (z is distance from sensor).
77
mahalanobis_thresh: 2.0 # points outside this distance is outlier.
88
outlier_variance: 0.0`1 # if point is outlier, add this value to the cell.
@@ -44,9 +44,9 @@ elevation_mapping_node:
4444
overlap_clear_range_xy: 4.0 # xy range [m] for clearing overlapped area. this defines the valid area for overlap clearance. (used for multi floor setting)
4545
overlap_clear_range_z: 2.0 # z range [m] for clearing overlapped area. cells outside this range will be cleared. (used for multi floor setting)
4646

47-
map_frame: 'BASE' # The map frame where the odometry source uses.
48-
base_frame: 'BASE' # The robot's base frame. This frame will be a center of the map.
49-
corrected_map_frame: 'BASE'
47+
map_frame: 'map' # The map frame where the odometry source uses.
48+
base_frame: 'base_link' # The robot's base frame. This frame will be a center of the map.
49+
corrected_map_frame: 'map'
5050

5151

5252
# map_frame: 'World' # The map frame where the odometry source uses.

elevation_mapping_cupy/launch/elevation_mapping.launch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def generate_launch_description():
3838

3939
use_sim_time_arg = DeclareLaunchArgument(
4040
'use_sim_time',
41-
default_value='true',
41+
default_value='false',
4242
description='Use simulation clock if true'
4343
)
4444

0 commit comments

Comments
 (0)