Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dimos/hardware/sensors/lidar/fastlio2/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def start(self) -> None:
def _on_odom_for_tf(self, msg: Odometry) -> None:
self.tf.publish(
Transform(
frame_id=self.frame_id,
frame_id=self.config.frame_id,
child_frame_id=self.config.child_frame_id,
translation=Vector3(
msg.pose.position.x,
Expand Down
2 changes: 1 addition & 1 deletion dimos/msgs/nav_msgs/OccupancyGrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def to_rerun(
opacity: float = 1.0,
cost_range: tuple[int, int] | None = None,
background: str | None = None,
color_lookup_table: np.ndarray | None = None,
color_lookup_table: NDArray[np.uint8] | None = None,
) -> Archetype:
"""Convert to 3D textured mesh overlay on floor plane.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

from typing import Any

import rerun as rr

from dimos.core.global_config import global_config
from dimos.mapping.costmapper import costmap_to_rerun
from dimos.msgs.nav_msgs.Path import Path
Expand All @@ -32,6 +30,8 @@


def _g1_path_colors(path: Path) -> Any:
import rerun as rr

# Empty geometry instead of None so the stale path actually clears.
if not path.poses:
return rr.LineStrips3D([])
Expand Down
Loading