mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m-thesis-introduction.git
synced 2024-12-22 11:33:32 +01:00
ZH: time_diffs read with beacon names as string
This commit is contained in:
parent
d9cfc5d077
commit
5e4e3c73ac
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ def read_baseline_time_diffs_hdf5(fname):
|
||||||
|
|
||||||
group = fp[group_name]
|
group = fp[group_name]
|
||||||
|
|
||||||
names = group[base_dset_name][:]
|
names = group[base_dset_name][:].astype(str)
|
||||||
|
|
||||||
dset = group[dset_name]
|
dset = group[dset_name]
|
||||||
time_diffs = dset[:,0]
|
time_diffs = dset[:,0]
|
||||||
|
|
Loading…
Reference in a new issue