LDAQ - Streamlined Data Acquisition and Generation
==================================================
What is LDAQ?
-------------
LDAQ stands for **L**\ ightweight **D**\ ata **A**\ c\ **Q**\ uisition, a Python-based toolkit designed to make data collection seamless and efficient. Whether you're a researcher, engineer, or hobbyist, LDAQ offers a powerful yet user-friendly platform to gather
data from a wide range of hardware sources.
.. image:: /docs/source/images/FRF_visualization.gif
:alt: frf_visualization
Key Features:
-------------
- 🐍 **Python-Powered**: Built on the robust and versatile Python language, LDAQ harnesses its power to offer a streamlined data collection process. It's compatible with all Python environments, ensuring ease of integration into your existing workflows.
- 📟 **Diverse Hardware Compatibility**: LDAQ supports a variety of hardware sources, including:
- National Instruments
- Digilent
- Serial communication devices (i.e. Arduino, ESP)
- FLIR Cameras
- Simulated hardware
- 📊 **Advanced Data Visualization & Analysis**: LDAQ doesn’t just collect data; it helps you understand it. With built-in features like real-time signal visualization and Fast Fourier Transform (FFT) analysis, you can dive deep into your data for more insightful discoveries.
- ⚙️ **Customization & Flexibility**: Tailor LDAQ to your specific needs. Whether you're dealing with high-speed data streams or complex signal processing, LDAQ's customizable framework allows you to optimize and accelerate your data acquisition processes.
Getting started
===============
Dive into the world of efficient data acquisition with LDAQ. Our `documentation <https://ldaq.readthedocs.io/en/latest>`_ will guide you through installation, setup, and basic usage to get you up and running in no time.
.. image:: /docs/source/images/getting_started.gif
:alt: demo_gif
Installation
------------
The package can be installed from PyPI using pip:
.. code-block::
pip install LDAQ
Create the acquisition object
-----------------------------
The first step to starting the measurement is to create an acquisition object. Depending on your measurement hardware,
you can select the appropriate acquisition class.
In this example, we use the ``LDAQ.national_instruments.NIAcquisition`` class, which is
a wrapper for the National Instruments DAQmx driver. The class accepts the name of the input task as an argument:
.. code-block:: python
acq = LDAQ.national_instruments.NIAcquisition(input_task_name, acquisition_name='DataSource')
If the ``acquisition_name`` argument is not specified, the name of the acquisition object will be set to the value of ``input_task_name``.
The ``acquisition_name`` argument is important when using multiple acquisition objects in the same measurement, and when specifying the layout of the
live `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_.
Create the ``Core`` object
--------------------------
The ``acq`` object can now be added to the ``LDAQ.Core`` class:
.. code-block:: python
ldaq = LDAQ.Core(acq)
.. note::
To add live visualization of the measurement, the visualization object can be added to the ``LDAQ.Core`` object:
.. code-block:: python
ldaq = LDAQ.Core(acq, visualization=vis)
Read how to prepare the ``vis`` object in the `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_ section.
Set the trigger
---------------
Often the measurement is started when one of the signal excedes a certain level. This can be achieved by setting the trigger on one of the data sources by calling the ``set_trigger`` method:
.. code-block:: python
ldaq.set_trigger(
source='DataSource',
level=100,
channel=0,
duration=11,
presamples=10
)
Where:
- ``source``: the name of the acquisition object on which the trigger is set.
- ``level``: the trigger level.
- ``channel``: the channel on which the trigger is set.
- ``duration``: the duration of the trigger in seconds.
- ``presamples``: the number of samples to be acquired before the trigger is detected.
.. note::
The ``LDAQ.Core`` may seem unnecessary when using a single acquisition source.
However, it enables the simultaneous usage of signal `generation <https://ldaq.readthedocs.io/en/latest/generation.html>`_, live `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_
and `multiple acquisition/generation <https://ldaq.readthedocs.io/en/latest/multiple_sources.html>`_ sources.
Run the measurement
-------------------
The measurement can now be started by calling the ``run`` method:
.. code-block:: python
ldaq.run()
Save the measurement
--------------------
After the measurement is completed, the data can be saved by calling:
.. code-block:: python
ldaq.save_measurement(
name='my_measurement',
root=path_to_save_folder,
timestamp=True,
comment='my comment'
)
Where:
- ``name``: required, the name of the measurement, without extension (``.pkl`` is added automatically).
- ``root``: optional, the path to the folder where the measurement will be saved. If it is not given, the measurement will be saved in the current working directory.
- ``timestamp``: optional, add a timestamp at the beginning of the file name.
- ``comment``: optional, a comment to be saved with the measurement.
What else can I do with LDAQ?
-----------------------------
- Add generation to the ``LDAQ.Core`` object (see `generation <https://ldaq.readthedocs.io/en/latest/generation.html>`_).
- Apply virtual channels to acquisition objects, to perform calculations on the acquired data (see `virtual channels <https://ldaq.readthedocs.io/en/latest/virtual_channels.html>`_).
- Add visualization to the ``LDAQ.Core`` object (see `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_).
- Apply functions to measured data in real-time visualization (see `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_).
- Add multiple acquisition and signal generation objects to ``LDAQ.Core`` (see `multiple sources <https://ldaq.readthedocs.io/en/latest/multiple_sources.html>`_).
- Define a NI Task in your program and use it with ``LDAQ`` (see `NI Task <https://ldaq.readthedocs.io/en/latest/ni_task.html>`_).
- Currently the package supports a limited set of devices from National Instruments, Digilent, FLIR, Basler and devices using serial communication (see `supported devices <https://ldaq.readthedocs.io/en/latest/supported_devices.html>`_).
- Create your own acquisition class by overriding just few methods (see `custom acquisition <https://ldaq.readthedocs.io/en/latest/custom_acquisitions_and_generations.html>`_).
Raw data
{
"_id": null,
"home_page": null,
"name": "LDAQ",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": "\"Tilen Ko\u0161ir, Klemen Zaletelj\" <klemen.zaletelj@fs.uni-lj.si>",
"keywords": "data acquisition, data generation, live visualization",
"author": null,
"author_email": "\"Tilen Ko\u0161ir, Klemen Zaletelj, Janko Slavi\u010d\" <janko.slavic@fs.uni-lj.si>",
"download_url": "https://files.pythonhosted.org/packages/87/a7/8bf094936001126345756998ad77e7fe599f9c520d3c82e86f86abd378f2/ldaq-1.1.0.tar.gz",
"platform": null,
"description": "LDAQ - Streamlined Data Acquisition and Generation\n==================================================\n\nWhat is LDAQ?\n-------------\n\nLDAQ stands for **L**\\ ightweight **D**\\ ata **A**\\ c\\ **Q**\\ uisition, a Python-based toolkit designed to make data collection seamless and efficient. Whether you're a researcher, engineer, or hobbyist, LDAQ offers a powerful yet user-friendly platform to gather \ndata from a wide range of hardware sources.\n\n.. image:: /docs/source/images/FRF_visualization.gif\n :alt: frf_visualization\n\nKey Features:\n-------------\n\n- \ud83d\udc0d **Python-Powered**: Built on the robust and versatile Python language, LDAQ harnesses its power to offer a streamlined data collection process. It's compatible with all Python environments, ensuring ease of integration into your existing workflows.\n\n- \ud83d\udcdf **Diverse Hardware Compatibility**: LDAQ supports a variety of hardware sources, including:\n\n - National Instruments\n\n - Digilent\n\n - Serial communication devices (i.e. Arduino, ESP)\n\n - FLIR Cameras\n\n - Simulated hardware\n\n- \ud83d\udcca **Advanced Data Visualization & Analysis**: LDAQ doesn\u2019t just collect data; it helps you understand it. With built-in features like real-time signal visualization and Fast Fourier Transform (FFT) analysis, you can dive deep into your data for more insightful discoveries.\n\n- \u2699\ufe0f **Customization & Flexibility**: Tailor LDAQ to your specific needs. Whether you're dealing with high-speed data streams or complex signal processing, LDAQ's customizable framework allows you to optimize and accelerate your data acquisition processes.\n\n\nGetting started\n===============\n\nDive into the world of efficient data acquisition with LDAQ. Our `documentation <https://ldaq.readthedocs.io/en/latest>`_ will guide you through installation, setup, and basic usage to get you up and running in no time.\n\n.. image:: /docs/source/images/getting_started.gif\n :alt: demo_gif\n\nInstallation\n------------\n\nThe package can be installed from PyPI using pip:\n\n.. code-block::\n\n pip install LDAQ\n\n\nCreate the acquisition object\n-----------------------------\n\nThe first step to starting the measurement is to create an acquisition object. Depending on your measurement hardware,\nyou can select the appropriate acquisition class. \n\nIn this example, we use the ``LDAQ.national_instruments.NIAcquisition`` class, which is\na wrapper for the National Instruments DAQmx driver. The class accepts the name of the input task as an argument:\n\n.. code-block:: python\n\n acq = LDAQ.national_instruments.NIAcquisition(input_task_name, acquisition_name='DataSource')\n\nIf the ``acquisition_name`` argument is not specified, the name of the acquisition object will be set to the value of ``input_task_name``.\n\nThe ``acquisition_name`` argument is important when using multiple acquisition objects in the same measurement, and when specifying the layout of the\nlive `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_.\n\nCreate the ``Core`` object\n--------------------------\n\nThe ``acq`` object can now be added to the ``LDAQ.Core`` class:\n\n.. code-block:: python\n\n ldaq = LDAQ.Core(acq)\n\n.. note::\n\n To add live visualization of the measurement, the visualization object can be added to the ``LDAQ.Core`` object:\n\n .. code-block:: python\n\n ldaq = LDAQ.Core(acq, visualization=vis)\n\n Read how to prepare the ``vis`` object in the `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_ section.\n\nSet the trigger\n---------------\n\nOften the measurement is started when one of the signal excedes a certain level. This can be achieved by setting the trigger on one of the data sources by calling the ``set_trigger`` method:\n\n.. code-block:: python\n \n ldaq.set_trigger(\n source='DataSource',\n level=100,\n channel=0, \n duration=11, \n presamples=10\n )\n\nWhere:\n\n- ``source``: the name of the acquisition object on which the trigger is set.\n- ``level``: the trigger level.\n- ``channel``: the channel on which the trigger is set.\n- ``duration``: the duration of the trigger in seconds.\n- ``presamples``: the number of samples to be acquired before the trigger is detected.\n\n.. note::\n\n The ``LDAQ.Core`` may seem unnecessary when using a single acquisition source.\n However, it enables the simultaneous usage of signal `generation <https://ldaq.readthedocs.io/en/latest/generation.html>`_, live `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_ \n and `multiple acquisition/generation <https://ldaq.readthedocs.io/en/latest/multiple_sources.html>`_ sources.\n\nRun the measurement\n-------------------\n\nThe measurement can now be started by calling the ``run`` method:\n\n.. code-block:: python\n\n ldaq.run()\n\nSave the measurement\n--------------------\n\nAfter the measurement is completed, the data can be saved by calling:\n\n.. code-block:: python\n\n ldaq.save_measurement(\n name='my_measurement',\n root=path_to_save_folder,\n timestamp=True,\n comment='my comment'\n )\n\nWhere:\n\n- ``name``: required, the name of the measurement, without extension (``.pkl`` is added automatically).\n- ``root``: optional, the path to the folder where the measurement will be saved. If it is not given, the measurement will be saved in the current working directory.\n- ``timestamp``: optional, add a timestamp at the beginning of the file name.\n- ``comment``: optional, a comment to be saved with the measurement.\n\nWhat else can I do with LDAQ?\n-----------------------------\n\n- Add generation to the ``LDAQ.Core`` object (see `generation <https://ldaq.readthedocs.io/en/latest/generation.html>`_).\n- Apply virtual channels to acquisition objects, to perform calculations on the acquired data (see `virtual channels <https://ldaq.readthedocs.io/en/latest/virtual_channels.html>`_).\n- Add visualization to the ``LDAQ.Core`` object (see `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_).\n- Apply functions to measured data in real-time visualization (see `visualization <https://ldaq.readthedocs.io/en/latest/visualization.html>`_).\n- Add multiple acquisition and signal generation objects to ``LDAQ.Core`` (see `multiple sources <https://ldaq.readthedocs.io/en/latest/multiple_sources.html>`_).\n- Define a NI Task in your program and use it with ``LDAQ`` (see `NI Task <https://ldaq.readthedocs.io/en/latest/ni_task.html>`_).\n- Currently the package supports a limited set of devices from National Instruments, Digilent, FLIR, Basler and devices using serial communication (see `supported devices <https://ldaq.readthedocs.io/en/latest/supported_devices.html>`_).\n- Create your own acquisition class by overriding just few methods (see `custom acquisition <https://ldaq.readthedocs.io/en/latest/custom_acquisitions_and_generations.html>`_).",
"bugtrack_url": null,
"license": null,
"summary": "Data acquisition and generation with live visualization.",
"version": "1.1.0",
"project_urls": {
"documentation": "https://ldaq.readthedocs.io/en/latest/",
"homepage": "https://github.com/ladisk/LDAQ",
"source": "https://github.com/ladisk/LDAQ"
},
"split_keywords": [
"data acquisition",
" data generation",
" live visualization"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "5bfa346e6ff18488eb217733342a7e5477848bf5460785d91277a8e28867fedb",
"md5": "61b121b6818d39a560f21500ff6e6587",
"sha256": "69f0f72f4818b14329c7632b713bbc3f75aa32288ccfbb9516281facf4c8e189"
},
"downloads": -1,
"filename": "ldaq-1.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "61b121b6818d39a560f21500ff6e6587",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 115634,
"upload_time": "2025-09-02T08:21:19",
"upload_time_iso_8601": "2025-09-02T08:21:19.076574Z",
"url": "https://files.pythonhosted.org/packages/5b/fa/346e6ff18488eb217733342a7e5477848bf5460785d91277a8e28867fedb/ldaq-1.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87a78bf094936001126345756998ad77e7fe599f9c520d3c82e86f86abd378f2",
"md5": "0bca5531fd093073ab1544451881dbf0",
"sha256": "3de1de9a75857f7cf37fe8c58ae10896ea0b29f547499317c2bf2216aceb262b"
},
"downloads": -1,
"filename": "ldaq-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "0bca5531fd093073ab1544451881dbf0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 12441738,
"upload_time": "2025-09-02T08:21:20",
"upload_time_iso_8601": "2025-09-02T08:21:20.287588Z",
"url": "https://files.pythonhosted.org/packages/87/a7/8bf094936001126345756998ad77e7fe599f9c520d3c82e86f86abd378f2/ldaq-1.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-09-02 08:21:20",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ladisk",
"github_project": "LDAQ",
"travis_ci": true,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "numpy",
"specs": [
[
">=",
"1.11.0"
]
]
},
{
"name": "scipy",
"specs": [
[
">=",
"1.2.0"
]
]
},
{
"name": "matplotlib",
"specs": []
},
{
"name": "pyqtgraph",
"specs": []
},
{
"name": "PyQt5",
"specs": [
[
">=",
"5.15.6"
]
]
},
{
"name": "beautifultable",
"specs": [
[
">=",
"1.1.0"
]
]
},
{
"name": "dill",
"specs": []
},
{
"name": "keyboard",
"specs": []
},
{
"name": "pyTrigger",
"specs": []
},
{
"name": "PyDAQmx",
"specs": []
},
{
"name": "pyserial",
"specs": []
},
{
"name": "nidaqmx",
"specs": []
},
{
"name": "openpyxl",
"specs": []
},
{
"name": "pandas",
"specs": []
},
{
"name": "urllib3",
"specs": [
[
"<",
"2.0"
]
]
},
{
"name": "tqdm",
"specs": []
},
{
"name": "tomli-w",
"specs": []
},
{
"name": "tomli",
"specs": []
}
],
"lcname": "ldaq"
}