An application to display telemetry data recorded by Assetto Corsa Competizione.
It is build around bokeh and displays various figures that are inspired by the ACC MoTec i2 workspace. See also this article.
The folder for the telemetry files is set via an env variable. All ld files in that folder are listed in a table, split up lap-by-lap. One or more laps can be selected and the data is displayed in the various tabs after hitting the 'Load' button.
pip3 install -r requirements.txt
After cloning the repo, also checkout the submodules with git submodule update --init
.
export TELEMETRY_FOLDER=='/../Documents/Assetto Corsa Competizione/MoTeC'
bokeh serve --show .
There is also a docker image
docker build -t acctelemetry .
docker run --name acctelemetry -p 5100:5100 -e ORIGIN=www.example.com:5100 -d --rm acctelemetry