Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the base_link->base_footprint transform #116

Open
hello-binit opened this issue Mar 20, 2024 · 0 comments
Open

Remove the base_link->base_footprint transform #116

hello-binit opened this issue Mar 20, 2024 · 0 comments

Comments

@hello-binit
Copy link
Contributor

The driver publishes a transform from base_link to base_footprint, but the transform is always an identity.

b = TransformStamped()
b.header.stamp = current_time
b.header.frame_id = self.base_frame_id
b.child_frame_id = "base_footprint"
b.transform.translation.x = 0.0
b.transform.translation.y = 0.0
b.transform.translation.z = 0.0
b.transform.rotation.x = 0.0
b.transform.rotation.y = 0.0
b.transform.rotation.z = 0.0
b.transform.rotation.w = 1.0
self.tf_broadcaster.sendTransform(b)

The Nav 2 AMCL base_frame_id parameter is set to the base_footprint link, but it's not clear why base_link wasn't used.

base_frame_id: "base_footprint"

Try using base_link instead and remove the base_link -> base_footprint transform if it is not needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant