Parse Rhythmia ablation file
Full example code: examples/parser/rhythmia_ablation.py
Note
Ablation data is not contained in the main matlab file. A separate export is needed.
Simply pass your ablation file to the reader to get a dataframe with ablation points.
from dgmr.parser import RhythmiaReader
ablation_file = "path_to_your_ablation_file"
data = RhythmiaReader.load_ablation(ablation_file)
print(data[:5])
Output: pandas DataFrame with coordinates of the ablation points.