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: 766 times
Last updated: Oct 16 '17
What is the best way to make a hexpod robot walk in Gazebo?
Is there any opensource hardware mobile robot platform?
i want to get the initial pose in x,y,theta coordinates of turtlebot in gazebo [closed]
Robot Arm with Depedent Links - Dynamics Limits
Error when using sw_urdf_exporter.
Controller manager not available in ROS2
URDF File - robot jumps and makes small leaps
ros navigation navfn make plan after re-set the initialpose of AMCL
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?