Skip to content

Commit

Permalink
adapted to boulder env
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasGrutter committed Feb 5, 2025
1 parent 1fa47ae commit baee45d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elevation_mapping_cupy/config/core/core_param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ elevation_mapping_node:
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)
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)

map_frame: 'World' # The map frame where the odometry source uses.
map_frame: 'map' # The map frame where the odometry source uses.
base_frame: 'BASE' # The robot's base frame. This frame will be a center of the map.
corrected_map_frame: 'World'
corrected_map_frame: 'map'


# map_frame: 'World' # The map frame where the odometry source uses.
Expand Down
3 changes: 3 additions & 0 deletions elevation_mapping_cupy/elevation_mapping_cupy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
import sys
from .parameter import Parameter


from .elevation_mapping import ElevationMap
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
import importlib
import inspect
from dataclasses import dataclass
import sys
from ruamel.yaml import YAML

from inspect import signature


Expand Down

0 comments on commit baee45d

Please sign in to comment.