[ROS2] CLI Parameter remapping for launch file
Hi all,
I'm using ROS2 Eloquent. Is there a way to remap a parameter by command line using the $ ros2 launch
command?
I explain it better: my launch file loads the parameters for my node from some YAML files, but sometimes I want to test other parameters without modifying the YAML file using some kind of CLI overload. I'd like to use something like we do in ROS1:
$ ros2 launch <my_package> <my_launch> param_name:=overloaded_value
I guess I can use Python arguments, but I do not know if there is a better way.
Thank you Walter