Skip to main content

Reading LabChart recorded data

Project description

adinstruments_sdk_python

Use this code to read .adicht (Labchart) files into Python. Interfacing with the ADIstruments DLL is done via cffi.

  • The code utilizes the SDK from ADIstruments to read files in Python as NumPy arrays.
  • Currently only works for Windows. Not fixable by me, requires changes by ADInstruments
  • A slightly more fleshed out MATLAB version can be found here.
  • Currently requires Python 3.6-3.14 with some of the newer versions requiring 64 bit Python (this can change but requires some work on my end)

Installation

pip install adi-reader

Support Notes

My ability to work on this code was supported, in part, by a grant from the NIH NIDDK (grant: R21DK140694)

Dependencies

  • cffi
  • NumPy
  • Python 3.7-3.14
    • might be able to do 3.6 but requires future annotations
  • Pandas - optional

Demo code

import adi
f = adi.read_file(r'C:\Users\RNEL\Desktop\test\test_file.adicht')
# All id numbering is 1 based, first channel, first block
# When indexing in Python we need to shift by 1 for 0 based indexing
# Functions however respect the 1 based notation ...

# These may vary for your file ...
channel_id = 2
record_id = 1
data = f.channels[channel_id-1].get_data(record_id)

import matplotlib.pyplot as plt
plt.plot(data)
plt.show()
	

Grabbing data from a specific channel. Some advanced data retrieval functionality is also shown.

import adi
f = adi.read_file(r'C:\Users\RNEL\Desktop\test\test_file.adicht')
#Note, this defaults to a partial, case insensitive match
p = f.get_channel_by_name('pres')

record_id = 1
#time units are in seconds
time,data = p.get_data(record_id,start_time=10,return_time=True)


plt.plot(time,data)
plt.xlabel('time (s)')
plt.ylabel(f'{p.name} ({p.units[record_id]})')
plt.show()

Here's an example of working with comment data.

import adi

fp = r"D:\Data\Duke\PGE2_2017\140414_C_01_pelvic and hypogastric recording PGE2 model .adicht"

f = adi.read_file(fp)

#default is a list, could also return as a dataframe
comments = f.get_comments(return_as='object')

#You can throw a warning or an error (or ignore) unmatched pairs
# - 'ignore'
# - 'error'
# - 'warn'
#You can skip, allow, or throw an error for matches spanning records
# - 'skip'
# - 'allow'
# - 'error'
pairs = comments.get_comment_pairs("start pump","stop pump",unmatched='ignore',record_split="skip")

p_chan = adi.get_channel_by_name('pres')
id_pair = [pairs.id1[0],pairs.id2[0]]
#Passing in a pair of IDs for comment_range is sufficient to identify
#the time range. Note they currently need to be in the same record_id
#
#The record_id input is ignored, so I just pass in -1
time,data = p_chan.get_data(-1, comment_range=id_pair,return_time=True)

import matplotlib.pyplot as plt
plt.plot(time,data)
plt.show()

Data Model

Data are collected in blocks or records, starting at record 1. For each record the channel properties can change (units, sampling rate). Every time settings are changed or recording stops, a new block is created (once recording starts again).

The two primary data types that are exposed through the SDK are:

  • channel data
  • comments - time of comment and text information (along with an id and info on which channel the comment applies to)

There are other things that are collected in LabChart files, but these are not exposed via the SDK.

  • file
    • records
      • timing info
      • comments
    • channels
      • data

Improvements

Feel free to open pull requests or to open issues.

Things I would like to add at some point:

  • a general review tool that plots a file
  • even simpler, plotting a channel with comments
  • better method support for getting specific info
  • better functionality of data retrieval

Change Notes

  • 2026-04-12 :
    • Added 3.14 support
    • Improved documentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adi_reader-0.2.0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adi_reader-0.2.0-py3-none-any.whl (1.5 MB view details)

Uploaded Python 3

File details

Details for the file adi_reader-0.2.0.tar.gz.

File metadata

  • Download URL: adi_reader-0.2.0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for adi_reader-0.2.0.tar.gz
Algorithm Hash digest
SHA256 55e93998407b2cf6e9a347eee7c4cbcf583e4aa3961357124d432806e901a4a5
MD5 6fed64bbce60dd50385f6885dc8fbb74
BLAKE2b-256 0a3199eb78fb548872832bf7e94e9250f57825a79f1cb0f9e839a363590d8d71

See more details on using hashes here.

File details

Details for the file adi_reader-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: adi_reader-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for adi_reader-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0da80dcaa89e9a578fa1809df9e68101ccabfa2d2fbba5b11737b86f7dd99118
MD5 08f0d956af0c13edfe1eadef1bdacbed
BLAKE2b-256 c725f45e4980dd830bdac9c02f1f5f06d2855ac4006737c3ab364dfcc98ed96b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page