How to I list a shared parameter to a node
I like to list all shared parameter of a node
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
I like to list all shared parameter of a node
replace NODENAME with your note
for i in rosparam list | grep NODENAME
; do echo -ne "$i \t"; rosparam get $i; echo -e "";done
If you just want the names or values of private parameters that are currently defined for a node, rosparam
can provide them directly:
$ rosparam list /roslaunch
/roslaunch/uris/host_vision_4__34552
$ rosparam get /roslaunch
uris: {host_vision_4__34552: 'http://vision-4:34552/'}
Replace the /roslaunch
above with your desired node name.
Asked: 2011-04-06 02:58:39 -0600
Seen: 613 times
Last updated: Apr 07 '11
Multiple or Conditional Configuration Parameters
Getting all parameter names using C++
Empty parameter in remote launch
Notification when a parameter in param server is changed
ROS sans Master Server/Parameter Server?
dynamic_reconfigure with large parameter sets
Why can't you use floats for accessing parameters in roscpp?