How can I run rqt_plot with topics from launchfile?
I have the following launchfile.
<launch>
<group ns='Axel'>
<node pkg='quad_control' name='coverage_planner' type='coverage_planner.py'/>
<node pkg='quad_control' name='planar_integrator' type='planar_integrator.py'/>
<node pkg='rqt_plot' name='rqt_plot' type='rqt_plot' args='/Axel/pose/x:y:theta'/>
<param name='others_names' type='str' value='Bo Calle David'/>
</group>
</launch>
I expected that rqt_plot
would be running with the topics that I specified in the args
field.
But no, it runs with whatever topic it was running when it was launched the previous time.
How can I make rqt_plot
run from launchfile with the topics of my choice?