-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for multi component datafields (XY-dataset) #30
Comments
Hi Jan, thanks for using the package and creating the issue! You're welcome to provide a PR to support XY data. To do this you have to collect all Lines 206 to 220 in befda07
Best regards, |
Hi,
I tried to parse a file with a single channel containing a XY-dataset. This means it contains a component group with two components one for the xdata (here a timestamp in seconds) and one for the ydata (here without unit).
It looks like the library does not parse multiple components properly, meaning it can only open
timestamped ASCI
andnormal datasets
. When having multiple components in one group the xdata is still filled via thexstepwidth
from theCD
key which is not applicable in this case.IMCtermite/lib/imc_channel.hpp
Lines 478 to 482 in befda07
Steps to reproduce:
XY_dataset_example.zip
I am using
version 2.0.20
withpython 3.11
on linux.I am willing to create a PR but I am wondering how we can determine which blocks belong together. Because for parsing the xdata in the same way as the ydata for XY-datasets we have to make sure we have to corresponding
CC
,CP
,CD
,NT
,CR
,CN
andCb
keys. Does this require a change in channel parsing? Maybe by adding component group and component vectors to represent the right structure?Best regards,
Jan
The text was updated successfully, but these errors were encountered: