Skip to content

Python Logfile Analysis

raemin edited this page Mar 10, 2017 · 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.

(Regular)User

The easiest solution is to download the windows binary version, as published by mlyle in the dRonin forum (http://jar.lyle.org/~mlyle/logview-20170306.zip for dRonin "Artifice"). Alternatively it's easy to install the official Python package.

  1. install python
  2. install dronin package: from the command prompt type pip3 install dRonin[all]
  3. The logviewer is under C:\Program Files\Python\Python??\Scripts\dronin-logview.exe (?? is the python version)

Later on it is easy to upgrade the logviewer:

  1. from the command prompt type pip3 install --upgrade dRonin[all]

Developper

In order to work on the latest sourcecode instead, 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