Retrieve robot name
Is there a way to retrieve robot name from the urdf in c++? Or any other way to get it? Thanks
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | Q&A answers.ros.org |
Is there a way to retrieve robot name from the urdf in c++? Or any other way to get it? Thanks
Hi @muttidrhummer!
I have created a video that answer exactly this question.
Summarizing, this can be accomplished by loading a URDF file, parsing it and calling the getName() method of the C++ Urdf model.
To see how to load and parse a URDF file, you can follow the Parse a urdf file tutorial.
After you create your parser.cpp
, before the return 0;
you should add
ROS_INFO("The robot name is: %s", model.getName().c_str());
to print the name of the robot on the URDF file, as we can see on the code below:
#include <urdf/model.h>
#include "ros/ros.h"
int main(int argc, char** argv){
ros::init(argc, argv, "my_parser");
if (argc != 2){
ROS_ERROR("Need a urdf file as argument");
return -1;
}
std::string urdf_file = argv[1];
urdf::Model model;
if (!model.initFile(urdf_file)){
ROS_ERROR("Failed to parse urdf file");
return -1;
}
ROS_INFO("Successfully parsed urdf file");
ROS_INFO("The robot name is: %s", model.getName().c_str());
return 0;
}
After compile the code and generate the executable called parser
following the Parse a urdf file tutorial, you can call it with the path of the URDF file as argument.
Something like:
rosrun your_package_name parser /path/to/your/file.urdf
If you still have any doubt, just check the video.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2017-10-03 11:34:58 -0500
Seen: 811 times
Last updated: Oct 16 '17
Solidworks to URDF plugin for robot arm
Interfacing Rtabmap and Robot_Localization
How to add a tf between Gripper camera and base_link in UR5
Prevent topics in custom node from being prefixed by node name
How can I use ROS with my delta robot?
Implement ROS on a custom Robot: what steps?
robot-model-visualization in ros hydro
any reason you need the name? There's got to be an easier way, but you could read the robot description from the parameter server then parse the xml string. If you know you're going to need the name why not load the name into the parameter server in your launch file?