-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The PickleFiles #12
Comments
Hi there. This proof of concept doesn't have functions to save to csv at the moment but you can easily do so by adding Pandas.to_csv() or similar function in the plotting .py files/functions. Pandas also supports other file export formats like json. |
Steering wheel values are frequently signed numerical data. The code assumes everything is unsigned data which will look like "jumps" from a very small value to a large value as the data moves past 0. It's a non-trivial problem to automatically detect whether data is signed or unsigned. If you ctrl+f for "signed" in the code I believe there's a comment where this assumption is implemented. You can update that conversation to manually force everything to use 2s compliment or other strategy to correctly convert from binary to decimal. |
Where can I extract all the Data which is plotted at the end ?
I want to plot my own plots in MATLAB and need a matrix which contains the arb id, id position and alle values for all sampletimes.
Are those information on the pickle files? I am not able to open those files with python...(?)
The text was updated successfully, but these errors were encountered: