Skip to content

Python Logfile Analysis

Michael Lyle edited this page Jan 9, 2016 · 11 revisions

To analyze log files collected from either internal flash or with telemetry using android or GCS you can use a set of scripts written in python. You can find these files in the git repository under the python directory. They require the repository to be checked out in order to support analyzing log files from various versions.

From the dRonin directory, you can launch analysis using the command

./python/shell.py path/to/log/file.tll

You may need the arguments -t if the logfile came from firmware.

This will bring you to an IPython environment where you can inspect data objects and plot graphs. For example to plot the Z gyro you would type:

gyro = uavo_list.as_numpy_array(UAVO_Gyros)
plot(gyro['time'], gyro['Z'])
Clone this wiki locally