On different .mpr files I get the following errors when trying to use: mpr_f = BioLogic.MPRfile(f)
Column ID 182 after column Capacitance discharge/µF is unknown
Column ID 215 after column (Q-Qo)/mA.h is unknown
Column ID 475 after column |I h7|/A is unknown
Fiddling around in Biologic.py, I was able to determine the appropriate buffer sizes (maybe)
# 175: ("ColID_175", "<f4"),
# 176: ("ColID_176", "<f4"),
# 177: ("ColID_177", "<f4"),
# 182: ("ColID_182", "<f8"), #<f4 doesn't work
# 215: ("ColID_215", "<f4"),
# 475: ("ColID_475", "<f4"),
# 478: ("ColID_478", "<f4"),
# 481: ("ColID_481", "<f4"),
# 503: ("ColID_503", "<u4"), #<u1, <u4, <f4, <f8 don't work
I don't have the corresponding .mpt files yet, but perhaps I can get them to identify the column headers.
Used pip install git+https://github.com/echemdata/galvani
`pip show galvani' gives Version: 0.4.1 - which appears to be the latest version.
On different .mpr files I get the following errors when trying to use:
mpr_f = BioLogic.MPRfile(f)Column ID 182 after column Capacitance discharge/µF is unknownColumn ID 215 after column (Q-Qo)/mA.h is unknownColumn ID 475 after column |I h7|/A is unknownFiddling around in Biologic.py, I was able to determine the appropriate buffer sizes (maybe)
I don't have the corresponding .mpt files yet, but perhaps I can get them to identify the column headers.
Used
pip install git+https://github.com/echemdata/galvani`pip show galvani' gives Version: 0.4.1 - which appears to be the latest version.