It is possible to data from topics in xslx file ?
I had read subscriber to recieve data and now curious about save that data instead of real time in xslx format (not using bag files). Are there any ways to do it?
Would a CSV file of some kind be okay? One that could be imported into Excel? If so generating CSV files directly in code is easy in C++ and Python (in Python you could use built-in CSV writers like
numpy.savetxt
or the CSV module).There are also some tools for converting bag files to CSV (e.g. rosbag_to_csv) or
rostopic echo -p -b <bagname> /topicname > <csvfilename>
. If you need XLSX, you could look into something like xlswriter PythonI've used xlsxwriter to write xlsx files from a bag file and it's very easy to use.