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

How can I find the urdf_tutorial display.launch file

asked 2014-10-04 16:00:34 -0500

sara gravatar image

Hi all, I am looking for this file in my document but failed.

urdf_tutorial display.launch

So how can I find this file in my system?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2014-10-05 04:33:50 -0500

Wolf gravatar image

Maybe you should clarify you question a bit...

I interpret your question a bit, hopefully the answer you expected: Now I assume you can run on your system the following launch

roslaunch urdf_tutorial display.launch

Now you would like to know where the display.launch lies in your file system.

Being able to run

roslaunch urdf_tutorial display.launch

means there is a package urdf_tutorial (In this case it comes along with installation; but answer is valid for any package). On your system. You can enter

roscd urdf_tutorial

to navigate to the package folder. Now it is a good practice to put launch files in the launch sub folder of the package folder. If the package follows this you should see a launch folder when typing

ls

in the urdf_tutorial folder. And when entering the launch folder

cd launch

and typing

ls

you should see the display.launch.

Addition:

You can also run

find -L . -name "display.launch"

in the urdf_tutorial folder to look for the display.launch (in case it is not in the launch folder)

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2014-10-04 16:00:34 -0500

Seen: 1,486 times

Last updated: Oct 05 '14