Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 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 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-28T13:20:48.000Z (9 months ago)
- Last Synced: 2024-10-12T00:26:31.922Z (2 months ago)
- Topics: labview, numpy, python, tdm
- Language: Python
- Homepage: https://tdm-loader.readthedocs.io
- Size: 810 KB
- Stars: 15
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![PyPI](https://img.shields.io/pypi/v/tdm_loader)](https://pypi.org/project/tdm_loader/)
[![Pytest](https://github.com/domna/tdm_loader/actions/workflows/pytest.yml/badge.svg)](https://github.com/domna/tdm_loader/actions/workflows/pytest.yml)
[![Coverage Status](https://coveralls.io/repos/github/domna/tdm_loader/badge.svg?branch=master)](https://coveralls.io/github/domna/tdm_loader?branch=master)
[![Documentation Status](https://readthedocs.org/projects/tdm_loader/badge/?version=latest)](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)