Skip to content

Commit

Permalink
Making base frame ID for map to base link transform based on base fra…
Browse files Browse the repository at this point in the history
…me ID parameter (#4632)

Signed-off-by: Steve Macenski <[email protected]>
  • Loading branch information
SteveMacenski committed Aug 23, 2024
1 parent 9872f1a commit e980f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nav2_loopback_sim/nav2_loopback_sim/loopback_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def initialPoseCallback(self, msg):
# Adjust map->odom transform based on new initial pose, keeping odom->base_link the same
t_map_to_base_link = TransformStamped()
t_map_to_base_link.header = msg.header
t_map_to_base_link.child_frame_id = 'base_link'
t_map_to_base_link.child_frame_id = self.base_frame_id
t_map_to_base_link.transform.translation.x = self.initial_pose.position.x
t_map_to_base_link.transform.translation.y = self.initial_pose.position.y
t_map_to_base_link.transform.translation.z = 0.0
Expand Down

0 comments on commit e980f7b

Please sign in to comment.