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

document difference between dynamic and static ros2 frames #2631

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ The **ROS 2 Frame** component depends on Transform Service, which is provided by
**ROS 2 Frame** component handles namespace, frame id, and joint name associated with an entity, which is a part of a robot.
Many other components such as sensors and controllers depend on it. **ROS 2 Frame** works internally with these components to
ensure namespacing of topics, sending of proper `frame_id` in each message, and broadcasting of transforms to `/tf` and `/tf_static` topics.
The transformation is continously updated and published to `/tf` if the entity contains a JointComponent (which is not a fixed joint)
or an ArticulatedComponent. Otherwise, it will be published once on the `/tf_static` topic and not updated even if the entity moves.