Replies: 4 comments
-
Hello, that's a good question. The problem is that at the moment there are no standard formats to save Mavlink messages (https://mavlink.io/en/file_formats/), therefore it's not possible to write a parser. Anyway, the procedure is slightly or less the following:
I'd really like to add a parser to the library, but i need to know how the CSV was generated, whether it's a standard format and what are the specifics of this format. |
Beta Was this translation helpful? Give feedback.
-
@aler9 I think you can add a parser with a pseudo standard base on your experience. And people will use it and probably it will become the standard. The problem is that there is no tool for that right now therefore you can do it and add a disclaimer that it is not a regulated standard. ;) |
Beta Was this translation helpful? Give feedback.
-
Hi @teocci I'm also trying to create a log-based simulation and came across this issue. Were you able to create something that does this, or find anything similar? Thanks |
Beta Was this translation helpful? Give feedback.
-
If anyone is able to find any finalized standard or pseudo-standard to save Mavlink (other than Wireshark's pcap), i'm willing to add support for it... |
Beta Was this translation helpful? Give feedback.
-
Hello @aler9:
I used this library for a couple of projects and I really like it.
Now, I was implementing a csv parser to reproduce a drone flight session. I have log files like this this one:
I was thinking if it could be way to read this file to generate events and "replay" the flight session
Could you give me a hit if is possible to parser a file using your library. If is possible which functions should I use? I think I can use
EndpointCustom
to create events but what I missing is the normalization of the file to the ingested by the endpoint.Beta Was this translation helpful? Give feedback.
All reactions