danielhrisca / asammdf

Fast Python reader and editor for ASAM MDF / MF4 (Measurement Data Format) files
GNU Lesser General Public License v3.0
633 stars 224 forks source link

data organizing on a mdf file #995

Closed ghost closed 6 months ago

ghost commented 6 months ago

Python version

Please run the following snippet and write the output here

import platform
import sys
from pprint import pprint

pprint("python=" + sys.version)
pprint("os=" + platform.platform())

try:
    import numpy
    pprint("numpy=" + numpy.__version__)
except ImportError:
    pass

try:
    import asammdf
    pprint("asammdf=" + asammdf.__version__)
except ImportError:
    pass

Code

MDF version

_please write here the file version (you can run print(MDF(file).version))

Code snippet

please write here the code snippet that triggers the error

Traceback

please write here the error traceback

Description

The fastest way to debug is to have the original file. For data protection you can use the static method scramble to scramble all text blocks, and send the scrambled file by e-mail.

Please describe the issue here. Hello. I'm gathering data from test vehicles on field but most of the data are useless for me. For ex: i have a 10 days data, but half of it is vehicle stationary position, just power on. But i need running data. So when i open all the file, i need to delete some regions. On attached file you can see a 11 days of data. But red circles are useless. So i need to select that regions and delete. As a result, a new filtered file should able to be created. Screenshot 2024-03-15 130115

danielhrisca commented 6 months ago

I don't get what your problem is