Replies: 2 comments
-
ibt = irsdk.IBT()
ibt.open(file_path)
print(ibt.get(0, 'Speed'))
print(ibt.get_all('Speed'))
ibt.close() |
Beta Was this translation helpful? Give feedback.
0 replies
-
Awesome, thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, sorry if this is a silly question.
Python is new to me, and I'm just an engineer trying to perform some data analysis, not a programmer.
I'm attempting to extract data, such as speed, from an IBT file. According to the example in the tutorial, this should work. Reading the CarSetup, as mentioned in a previous question, works fine, but unfortunately, the speed extraction does not seem to be functioning: IndexError: list index out of range
Thank you for your great work!
Beta Was this translation helpful? Give feedback.
All reactions