You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Bio-Logic .mpr parser exits with an error if it encounters an unknown column ID. This made sense at the time of writing because I had no way of knowing the data type of the new column and thus how many bytes it would take up in the file.
This means that it is probably safe to assume that any new unknown columns will also be 32-bit floats. This will make it possible to load the file despite the presence of unknown columns.
The text was updated successfully, but these errors were encountered:
Currently the Bio-Logic .mpr parser exits with an error if it encounters an unknown column ID. This made sense at the time of writing because I had no way of knowing the data type of the new column and thus how many bytes it would take up in the file.
Looking at the file history, it seems that all new columns added in the past three years have been '<f4' (32-bit float). https://github.com/echemdata/galvani/blame/master/galvani/BioLogic.py
This means that it is probably safe to assume that any new unknown columns will also be 32-bit floats. This will make it possible to load the file despite the presence of unknown columns.
The text was updated successfully, but these errors were encountered: