https://github.com/domna/tdm_loader
This modules allows accessing Labview TDM/TDX files to be accessed like numpy structured arrays.
https://github.com/domna/tdm_loader
labview numpy python tdm
Last synced: 9 months ago
JSON representation
This modules allows accessing Labview TDM/TDX files to be accessed like numpy structured arrays.
- Host: GitHub
- URL: https://github.com/domna/tdm_loader
- Owner: domna
- License: other
- Created: 2017-02-10T13:18:53.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-28T13:20:48.000Z (almost 2 years ago)
- Last Synced: 2025-04-21T03:09:45.687Z (9 months ago)
- Topics: labview, numpy, python, tdm
- Language: Python
- Homepage: https://tdm-loader.readthedocs.io
- Size: 810 KB
- Stars: 15
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://pypi.org/project/tdm_loader/)
[](https://github.com/domna/tdm_loader/actions/workflows/pytest.yml)
[](https://coveralls.io/github/domna/tdm_loader?branch=master)
[](https://tdm-loader.readthedocs.io/en/latest/?badge=latest)
This module allows National Instruments TDM/TDX files to be accessed like
NumPy structured arrays.
To install the newest version use::
pip install tdm-loader
Sample usage::
import tdm_loader
data_file = tdm_loader.OpenFile('filename.tdm')
Access a channel by channel group and channel index combination::
data_file.channel(channel_group, channel)
Get a dict of all channels in a channel group:
data_file.channel_dict(channel_group)
Search for a column name. A list of all column names that contain
``search_term`` and their indices will be returned::
data_file.channel_search(search_term)