Closed willnil closed 3 years ago
In ROS 2, there is no parameter server by default. So in ROS 2, urdf_parser_py
is a pure parsing library; you can use it to parse an XML, but how you get that XML is up to you.
In the future, please ask questions like this on https://answers.ros.org, which is our centralized place for Questions and Answers. I'm going to close this one out.
Yes I am aware that there is no default parameter server in ROS 2. I cloned the foxy-devel branch and the from_parameter_server
function is still there.
Yes I am aware that there is no default parameter server in ROS 2. I cloned the foxy-devel branch and the
from_parameter_server
function is still there.
Oh, I see. We removed it from the ros2
branch in #63 , but we never backported that to foxy-devel. Feel free to open up a backport PR, I'll be happy to review.
I am using the ROS 2 Foxy branch and the from_parameter_server function has to import rospy (Link), so this is not compatible in the ROS 2 working space.
I compared also the code in ros2 branch and I see the from_paramater_server is removed. So what is the better approach to retrieve the robot model from the ROS 2 parameter server? Thank you