Robotics StackExchange | Archived questions

How to add ignition msgs to ROS?

I want to use gazebo plugins that use ignition messages in ROS project. I have installed libignition-msgs* libraries, but when I list all the types of messages in ROS with this command $ rosmsg list There is no ignition type of message.

How can I load the ignition-msgs into ROS?

Asked by kump on 2018-09-24 11:55:46 UTC

Comments

Afaik, ignition-msgs is a protobuf based library. ROS 1 does not use Protobuf for its messaging, so using Protobuf msgs directly would seem to be impossible.

Asked by gvdhoorn on 2018-09-24 12:03:45 UTC

Also: you may want to ask this question on the Gazebo Answers site, as they are the developers and maintainers of Ignition.

Asked by gvdhoorn on 2018-09-24 12:05:06 UTC

Answers

when I list all the types of messages in ROS

Ignition messages are different from ROS messages, so you need a different command. Try

ign msg -l

Asked by chapulina on 2021-09-26 21:09:47 UTC

Comments