ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Question about tutorial "Publishing Odometry Information over ROS"

asked 2018-05-26 10:20:37 -0600

topkek gravatar image

http://wiki.ros.org/navigation/Tutori...

it says:

Add the dependancy to your package's manifest.xml

<depend package="tf"/>
<depend package="nav_msgs"/>

i dont have manifest.xml, i have package.xml and if i add it there it returns errors. where do i put it and how do i run the code from tutorial??

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2018-05-27 12:52:35 -0600

mntan gravatar image

manifest.xml is used in the legacy rosbuild build system while package.xml is used in the catkin build system

In package.xml, you need to add the following lines:

<build_depend>nav_msgs</build_depend>
<build_depend>tf</build_depend>

<run_depend>nav_msgs</run_depend>
<run_depend>tf</run_depend>

In addition, you can find the complete code for this tutorial at this link:

https://github.com/ros-planning/navig...

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2018-05-26 10:20:37 -0600

Seen: 139 times

Last updated: May 27 '18