How to use interpolation in Asammdf? (Python)

226 Views Asked by At

I'm trying to read .mdf file and write it to .csv file. I found irregular option(timestamps) but it had inconsistent gap.

How can I get a regular interval of time, say of 0.002s ?

My code is below.

from asammdf import MDF, set_global_option
import pandas as pd


set_global_option("raise_on_multiple_occurrences", False)
data = MDF('example.mdf')

df = data.to_dataframe(use_interpolation=True)
df.to_csv('result.csv')

irregular gap of timestamps

1

There are 1 best solutions below

0
On