-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grouping parameters #69
Comments
I don't think groups are supported yet in |
I would also look forward to this functionality. The question would be how they are displayed. The group name can be inferred pretty simple, but the type of grouping is not stored anywhere. I can imagine three main solutions for this:
|
Hi! Since we struggled with the missing grouping functionality in RQT, we wrote a small standalone application for modifying the parameters of nodes which displays the parameters as a tree: https://github.com/teamspatzenhirn/rig_reconfigure The tool is also published as a separate package and can thus be installed via apt. |
change the following lines from:
to:
like pkg above i also don't like that multiple parameters from diffrent nodes can be visible at the same time. I like this behavior more:
|
Any update for this grouping feature in rqt_configure? I am dealing with a lot of parameters for some nodes, and without the ability to correctly group and even hide/display them, setting parameters with ROS2 is quite cumbersome... |
Hello!
I am looking for a way to separate parameters in certain node to several groups, in a way similar to ROS1 functionality.
Defining the parameters in YAML file allows nesting parameters in subgroups, and these groups can be defined using dot in parameter names, e.g:
node.declare_parameter("group_a.param_b")
I have created the example node to demonstrate the issue. https://gist.github.com/yossioo/c20d2966c9e27e57a3153d9ec176e896
I can see the declared parameters:
Checking the list of parameters shows that the prefixes are indeed recognized by ROS2:
And yet, the parameters are not grouped in the
rqt_reconfigure
interface and are simply presented in a single alphabetically ordered list.Is there a proper way to define parameters so they will be displayed in groups?
The text was updated successfully, but these errors were encountered: