Replies: 1 comment 2 replies
-
This is by design (expected). Foxglove will listen for transforms on all valid topics which publish transforms. There is no way to disable specific transform topics. If you want to prevent Foxglove from consuming a transform topic you'll need to avoid publishing it. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a bagfile that contains transform messages on the
/tf
and/tf_static
topics. I usually playback the bags but without playing back all the transforms (e.g., playodom->base_link
but notmap->odom
). My way to do this is to playback the bag while remapping the transform topics to/tf:=/bag/tf
and/tf_static:=/bag/tf_static
, then I have a node that selects the transforms to map from/bag/tf
to/tf
.However, I noticed that when I do that foxglove still views the messages on the remapped topics (i.e.,
/bag/tf
and/bag/tf_static
), which I do not want it to do (rviz doesn't do that). It seems that foxgloves publishes the transforms published on any topic.How can I specify which topics foxglove should listen to for the
Transforms
section?Beta Was this translation helpful? Give feedback.
All reactions