nothing show when I run rostopic echo /nmea_sentence
Hi, I played a utbm_robocar rosbag with "rosbag play utbm_robocar_dataset_20190418_noimage.bag" ,which contains NMEA messages (nmea_msgs/Sentence),it run well.
then I run
rostopic list
, there show:
/clock
/cloud
/hdl32e_left/velodyne_packets
/imu/data
/imu/mag
/imu_data_str
/nmea_sentence
/objects
/received_messages
/rosout
/rosout_agg
/scan
/velocity
Then I run `rostopic echo /nmea_sentence, nothing show in the terminal,why?
I had installed ros-melodic-nmea-msg
Any, idea of what is going on?
I checked rostopic echo /imu/data
or rostopic echo /scan
, it show correctly
I checked rostopic info /nmea_sentence
, it show
Type: nmea_msgs/Sentence
Publishers:
* /play_1604911497764697838 (http://huanghehe:44631/)
Subscribers: None
Thanks in advance
Hi, I played a utbm_robocar rosbag with "rosbag play utbm_robocar_dataset_20190418_noimage.bag" ,which contains NMEA messages (nmea_msgs/Sentence),it run well.
then I run
rostopic list
, there show:
/clock
/cloud
/hdl32e_left/velodyne_packets
/imu/data
/imu/mag
/imu_data_str
/nmea_sentence
/objects
/received_messages
/rosout
/rosout_agg
/scan
/velocity
Then I run `rostopic echo /nmea_sentence, nothing show in the terminal,why?
I had installed ros-melodic-nmea-msg
Any, idea of what is going on?
I checked rostopic echo /imu/data
or rostopic echo /scan
, it show correctly
I checked rostopic info /nmea_sentence
, it show
Type: nmea_msgs/Sentence
Publishers:
* /play_1604911497764697838 (http://huanghehe:44631/)
Subscribers: None
Thanks in advance
Could you please run
rosbag info utbm_robocar_dataset_20190418_noimage.bag
and post the results? You might notice something.'rosbag info utbm_robocar_dataset_20190418_noimage.bag'
topics:
as you said. sorry, I run
rostopic info /nmea_sentence
can see everything, but I runrostopic echo /nmea_sentence
can't see anything. I made a mistake about the question.I suspect this has to do with
nmea_sentence
being of a custom message type. Can you tryrosmsg show nmea_msgs/Sentence
in the same terminal where therostopic echo
doesn't work? I could imagine that it will not work, because the message definitions are not loaded.I also met this problem.Try play bag on another PC,can get the echo data.
If bag file sharing was possible, I can try it on my PC.