Dataviewer

Implementation of a Dataviewer for Shepherd-Recordings

The Shepherd-Testbed produces voltage-, current and gpio-traces that can be post-processed by a datalib. The datalib serves as a documentation for the internal h5-structure for shepherd as well as a tool for creating, reading and modifying the recordings. There is also some basic plotting implemented based on matplotlib, but a fast and responsive data-viewer would be extremely helpful as recordings can span over several days and may include up to 30 - 100 shepherd-nodes.

A data-viewer would allow to identify points of interest by quickly skimming over the dataset. The ability to zoom into the traces is a required feature. As it is also possible to sample digital signals it would be also nice to have an option to decode protocols like uart.

The implementation would be preferably based on an existing software. On the first look sigrok & pulseview look promising. Pulseview seems to support several input-formats, so a converter should suffice. But maybe it is also possible to extend Pulseview to support the shepherd-hdf5-format directly.

Current Situation

Each Shepherd Node produces:

  • IV-Samples (voltage & current) with 100 kHz and 18bit resolution

  • event based gpio-sampling of 10 pins (with at least one high-speed capable uart good for 4 - 10 MBaud)

The datalib allows to plot parts of the ivsample-recording ⇾ CLI-Interface ⇾ Plot IVSamples. Multiplots for several recordings are supported, as well as prior downsampling.

There is a basic implementation of a viewer based on DPG. It is limited to one recording, only IVSamples and is not optimized at all. So recordings >60s are challenging because there is no downsampling depending on the zoom-levels.

The Saleae Logic tool has an open api and file format, but does only support gpio- and voltage-traces. Shepherd features also current-traces or derived power-traces.

Tests with timeseries-databases were done. TimescaleDB and InfluxDB are both to slow to handle the live data of 30 nodes in the testbed. So currently the database-idea was put on hold for a pure file-based approach.

Goals

From high to lower priority:

  • have an interactive viewer for iv-sample-data and gpio-traces with timestamps

  • a web-viewer would be helpful for the testbed itself

  • a standalone viewer would also be desired (but can be the wrapped web-viewer)

  • preferably written in python (like all other high-level shepherd-tools)

  • allow to overlay several recordings or plot them in individual graphs (no overlay but in series) with the same timebase (both has advantages)

  • decoding digital protocols like uart and spi

  • search / highlight points of interest ⇾ tbd

Side-notes:

  • data-conversion is OK ⇾ probably a more performant format and a chain of downsamples are needed to handle the performance on large overviews

  • in terms of usability and functionality the tool Saleae Logic is regarded as a role model

Milestones / Steps

TBD, proposal:

  • prepare an overview of options

  • prototype experiments

  • decision how to proceed

  • redefine goals and possible features

  • working version of the viewer

Test-Data