Cannot use rqt_plot to plot ardrone/navdata
I am new to ros. I just starting working with the tum_simulator, ardrone_autonomy and tum_ardrone packages. I am using the simulation in tum_simulator and not an actual drone. I would like to plot...
View ArticleAnswer by jayess for I am new to ros. I just starting working with the...
With `rqt_plot` you need specify what data (message attribute) you're trying to plot, as messages can be composed of many other messages (which the `Navdata` message is). If it were to just plot an...
View ArticleComment by jayess for With rqt_plot you need specify what data (message...
Also, if you look at https://answers.ros.org/question/72739/cant-plot-some-messages-types-on-rqt_plot/ you'll see that you need to have the message definitions (`cvg_sim_msgs` package) and you may need...
View ArticleComment by jayess for With rqt_plot you need specify what data (message...
Did you install the `cvg_sim_msgs` package?
View ArticleComment by jayess for With rqt_plot you need specify what data (message...
Are you using a simulator or a real drone? That message is telling you that you're missing the `cvg_sim_msgs` package. This error should be solved using another question.
View ArticleComment by Ishi for With rqt_plot you need specify what data (message...
When I run **rostopic type /ardrone/navdata/vx** I get *ardrone_autonomy/Navdata vx float32*
View ArticleComment by Ishi for With rqt_plot you need specify what data (message...
I tried what you said and i get the error: *TopicCompleter.update_topics(): could not get message class for topic type "cvg_sim_msgs/Altimeter" on topic "/altimeter"* I tried to plot the horizontal...
View ArticleComment by Ishi for With rqt_plot you need specify what data (message...
I installed the tum_simulator package and ran catkin_make. **cvg_sim_msgs** is within the tum_simulator.
View ArticleComment by jayess for With rqt_plot you need specify what data (message...
Did you run source ~/catkin_ws/devel/setup.bash after compiliing?
View ArticleComment by Ishi for With rqt_plot you need specify what data (message...
I am using a simulator.
View ArticleComment by Ishi for With rqt_plot you need specify what data (message...
I did run **source ~/catkin_ws/devel/setup.bash**
View Article