foxglove proto deserialize #1250
-
I have a ros1bag, and the topic content inside is obtained through protobuf serialization, with a type of std _ msgs/String. Can I directly write a script in Foxglove's user script to deserialize the data? If so, are there any examples that can be referenced |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Nope, this is not supported in Foxglove. Strings that are invalid UTF8 will probably not work. If they do, then you are free to interpret the string data in the user script however you like. But generally storing protobuf inside a ROS 1 bag is not recommended – MCAP is a better choice for that. |
Beta Was this translation helpful? Give feedback.
Nope, this is not supported in Foxglove. Strings that are invalid UTF8 will probably not work. If they do, then you are free to interpret the string data in the user script however you like. But generally storing protobuf inside a ROS 1 bag is not recommended – MCAP is a better choice for that.