roslaunch ros2 equivalent to 'rosparam command="load"'
What is the ros2 equivalent to '<rosparam cmd="load" ..=""/>'?
Looks like there are three possible cases:
- loading parameters in the root of the parameter server
- loading parameters privately into a node
- loading parameters in a "group namespace"
For example, how would you translate the following ROS1 roslaunch file that contains these three cases?
<launch>
<rosparam command="load" file="$(find mypackage)/config/config.yaml" />
<node pkg="mypackage" name="mynode" type="mynode">
<rosparam command="load" file="$(find mypackage)/config/node_config.yaml" />
</node>
<group ns="myns"/>
<rosparam command="load" file="$(find mypackage)/config/node_config.yaml" />
</group>
</launch>