Skip to main content

ASAM MDF measurement data file parser

Project description

asammdf is a fast parser and editor for ASAM (Associtation for Standardisation of Automation and Measuring Systems) MDF (Measurement Data Format) files.

asammdf supports MDF versions 2 (.dat), 3 (.mdf) and 4 (.mf4).

asammdf works on Python >= 3.6 (for Python 2.7, 3.4 and 3.5 see the 4.x.y releases)

Status

! Travis CI Appveyor CoverAlls Codacy ReadTheDocs
master Build Status Build status Coverage Status Codacy Badge Documentation Status
PyPI conda-forge
PyPI version conda-forge version

Project goals

The main goals for this library are:

  • to be faster than the other Python based mdf libraries
  • to have clean and easy to understand code base
  • to have minimal 3-rd party dependencies

Features

  • create new mdf files from scratch

  • append new channels

  • read unsorted MDF v3 and v4 files

  • read CAN and LIN bus logging files

  • extract CAN and LIN signals from anonymous bus logging measurements

  • filter a subset of channels from original mdf file

  • cut measurement to specified time interval

  • convert to different mdf version

  • export to HDF5, Matlab (v4, v5 and v7.3), CSV and parquet

  • merge multiple files sharing the same internal structure

  • read and save mdf version 4.10 files containing zipped data blocks

  • space optimizations for saved files (no duplicated blocks)

  • split large data blocks (configurable size) for mdf version 4

  • full support (read, append, save) for the following map types (multidimensional array channels):

    • mdf version 3 channels with CDBLOCK

    • mdf version 4 structure channel composition

    • mdf version 4 channel arrays with CNTemplate storage and one of the array types:

      • 0 - array
      • 1 - scaling axis
      • 2 - look-up
  • add and extract attachments for mdf version 4

  • handle large files (for example merging two fileas, each with 14000 channels and 5GB size, on a RaspberryPi)

  • extract channel data, master channel and extra channel information as Signal objects for unified operations with v3 and v4 files

  • time domain operation using the Signal class

    • Pandas data frames are good if all the channels have the same time based
    • a measurement will usually have channels from different sources at different rates
    • the Signal class facilitates operations with such channels
  • graphical interface to visualize channels and perform operations with the files

Major features not implemented (yet)

  • for version 3

    • functionality related to sample reduction block: the samples reduction blocks are simply ignored
  • for version 4

    • experiemental support for MDF v4.20 column oriented storage
    • functionality related to sample reduction block: the samples reduction blocks are simply ignored
    • handling of channel hierarchy: channel hierarchy is ignored
    • full handling of bus logging measurements: currently only CAN and LIN bus logging are implemented with the ability to get signals defined in the attached CAN/LIN database (.arxml or .dbc). Signals can also be extracted from an anonymous bus logging measurement by providing a CAN or LIN database (.dbc or .arxml)
    • handling of unfinished measurements (mdf 4): finalization is attempted when the file is loaded, however the not all the finalization steps are supported
    • full support for remaining mdf 4 channel arrays types
    • xml schema for MDBLOCK: most metadata stored in the comment blocks will not be available
    • full handling of event blocks: events are transfered to the new files (in case of calling methods that return new MDF objects) but no new events can be created
    • channels with default X axis: the defaukt X axis is ignored and the channel group's master channel is used

Usage

from asammdf import MDF

mdf = MDF('sample.mdf')
speed = mdf.get('WheelSpeed')
speed.plot()

important_signals = ['WheelSpeed', 'VehicleSpeed', 'VehicleAcceleration']
# get short measurement with a subset of channels from 10s to 12s
short = mdf.filter(important_signals).cut(start=10, stop=12)

# convert to version 4.10 and save to disk
short.convert('4.10').save('important signals.mf4')

# plot some channels from a huge file
efficient = MDF('huge.mf4')
for signal in efficient.select(['Sensor1', 'Voltage3']):
   signal.plot()

Check the examples folder for extended usage demo, or the documentation http://asammdf.readthedocs.io/en/master/examples.html

https://canlogger.csselectronics.com/canedge-getting-started/log-file-tools/asammdf-api/

Documentation

http://asammdf.readthedocs.io/en/master

And a nicely written tutorial on the CSS Electronics site

Contributing & Support

Please have a look over the contributing guidelines

If you enjoy this library please consider making a donation to the numpy project or to danielhrisca using liberapay <a href="https://liberapay.com/danielhrisca/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a>

Contributors

Thanks to all who contributed with commits to asammdf:

Installation

asammdf is available on

pip install asammdf
# for the GUI 
pip install asammdf[gui]
# or for anaconda
conda install -c conda-forge asammdf

In case a wheel is not present for you OS/Python versions and you lack the proper compiler setup to compile the c-extension code, then you can simply copy-paste the pacakge code to your site-packages. In this way the python fallback code will be used instead of the compiled c-extension code.

Dependencies

asammdf uses the following libraries

  • numpy : the heart that makes all tick
  • numexpr : for algebraic and rational channel conversions
  • wheel : for installation in virtual environments
  • pandas : for DataFrame export
  • canmatrix : to handle CAN/LIN bus logging measurements
  • natsort
  • lxml : for canmatrix arxml support
  • lz4 : to speed up the disk IO peformance

optional dependencies needed for exports

  • h5py : for HDF5 export
  • scipy : for Matlab v4 and v5 .mat export
  • hdf5storage : for Matlab v7.3 .mat export
  • fastparquet : for parquet export

other optional dependencies

  • PyQt5 : for GUI tool
  • pyqtgraph : for GUI tool and Signal plotting
  • matplotlib : as fallback for Signal plotting
  • cChardet : to detect non-standard unicode encodings
  • chardet : to detect non-standard unicode encodings

Benchmarks

http://asammdf.readthedocs.io/en/master/benchmarks.html

Project details


Release history Release notifications | RSS feed

This version

6.1.0

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

asammdf-6.1.0-cp38-cp38-win_amd64.whl (526.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

asammdf-6.1.0-cp38-cp38-win32.whl (525.3 kB view details)

Uploaded CPython 3.8 Windows x86

asammdf-6.1.0-cp38-cp38-macosx_10_15_x86_64.whl (523.6 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

asammdf-6.1.0-cp37-cp37m-win_amd64.whl (526.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

asammdf-6.1.0-cp37-cp37m-macosx_10_15_x86_64.whl (523.6 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

asammdf-6.1.0-cp36-cp36m-win_amd64.whl (526.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

asammdf-6.1.0-cp36-cp36m-win32.whl (525.3 kB view details)

Uploaded CPython 3.6m Windows x86

asammdf-6.1.0-cp36-cp36m-macosx_10_15_x86_64.whl (523.6 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

File details

Details for the file asammdf-6.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: asammdf-6.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 526.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e3e5f34a8df0e6a7029fbe73ef951334aeedd68a2a81780d55dda9dcaab86b95
MD5 ffc79c46a9ef2230d197c6e4d19e3da5
BLAKE2b-256 e611c81bba3b0495636b2e60a1f7309b0eb4fdbe5f37baef1280350fada4d430

See more details on using hashes here.

File details

Details for the file asammdf-6.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: asammdf-6.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 525.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d12fa114d66871d6a816bc8e45b1ee7104bcc0a052df23f4cd740f2824cc0650
MD5 770e72579ca3a1943f260bd83c33ec38
BLAKE2b-256 1a482660b05dc2e69035cf6b738a8de3d7abe08ad05aeb7518958ae1454a1eba

See more details on using hashes here.

File details

Details for the file asammdf-6.1.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: asammdf-6.1.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 523.6 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.1.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3785d8a14f638905a0c56e5ff6bab2b41eaab1b798509c3c5037485eaf0e0605
MD5 1e8343711b596e04059ff62a90de538b
BLAKE2b-256 6e73f6ac7fb597d9ecc9f49f25057a4f2bf7c18da1925b6c56977a45d706a61d

See more details on using hashes here.

File details

Details for the file asammdf-6.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: asammdf-6.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 526.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 822174b6b7f7c0968b231f961e436c11794a6db84039b731a81c272745a413ae
MD5 945972a93e4c21f227d6b5e30efda494
BLAKE2b-256 87d54e7cbd24aa388b80600f103d60d971f41b3f505c0ea0f8c2e7e365410caf

See more details on using hashes here.

File details

Details for the file asammdf-6.1.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: asammdf-6.1.0-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 523.6 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.1.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb94c2752bda60a9ed9984a1d36b9afe5d14ffc6a0dd17dea17491d7470bfc74
MD5 9f6cb80f3efc97fafd6dfb26f477e9e2
BLAKE2b-256 77d6a751974fd8014810069731b11035a665d0e84b80cbefcebe7c6846a8af69

See more details on using hashes here.

File details

Details for the file asammdf-6.1.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: asammdf-6.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 526.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c18f9654f1de0147852bd2409ebd2b420c2fc2ebb1e08458f1c37ae121d289e8
MD5 5d595c402cc6fefd0ae609560fbedbf1
BLAKE2b-256 15f15213d4121ab1bdde11e3c412596918faeb68ae72db17bfb4af4e2346eddb

See more details on using hashes here.

File details

Details for the file asammdf-6.1.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: asammdf-6.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 525.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 def7a3e3338072423a1ef9bbd8f35dabfc55c96491feb2fbfc6f95f6703d87b5
MD5 cf0e1a180c187f93d12f11aae2aa138e
BLAKE2b-256 e1d0bae3e783ec4a87042f9a6995d17549e57dff1c627d7c282cc4a927add305

See more details on using hashes here.

File details

Details for the file asammdf-6.1.0-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: asammdf-6.1.0-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 523.6 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.7

File hashes

Hashes for asammdf-6.1.0-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f88ec2db6661bf288441bd922ce36f9b012d636d18328fa1bd4e8e2004a9b690
MD5 ab13e31c757863a0c5fe3947f850c218
BLAKE2b-256 32f2fc77c21d3d8b121644b3f665590dea3f87df17cbbac393f82cffe144ea39

See more details on using hashes here.

Supported by

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