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.
- A slightly more flushed out Matlab version can be found here.
Installation
pip install adi-reader
Test 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()
Dependencies
- NumPy
- Python 3.6-3.8
Setup for other Python versions
- Running the code might require compiling the cffi code depending on your Python version.
- This requires running cffi_build.py in the adi package.
- This might require installing cffi as well as some version of Visual Studio.
- The currently released code was compiled for Python 3.6-3.8 on Visual Studio 14.0 or greater was required.
For upgrading to 3.8, I installed Python 3.8. Within the interpreter I ran the following:
import subprocess
import sys
#https://stackoverflow.com/questions/12332975/installing-python-module-within-code
def install(package):
subprocess.call([sys.executable, "-m", "pip", "install", package])
install("cffi")
import os
#This would need to be changed based on where you keep the code
os.chdir('G:/repos/python/adinstruments_sdk_python/adi')
exec(open("cffi_build.py").read())
Improvements
This was written extremely quickly and is missing some features. Feel free to open pull requests or to open issues.
Project details
Release history Release notifications | RSS feed
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.0.4.tar.gz
(772.8 kB
view hashes)
Built Distribution
adi_reader-0.0.4-py3-none-any.whl
(785.8 kB
view hashes)
Close
Hashes for adi_reader-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3f59ba2ceffd788bb52b342c8a87b9173fc46fc3fcb27cf3a0a41a92ecbe78d |
|
MD5 | 63e1b36ba1c9e7a9bf3456ced74f56a3 |
|
BLAKE2b-256 | 68eb06ff73aba54b950b2d4c18a7e26f3b6c58c9b7b3345af86841fd421eabf4 |