loading hdf files fixed (i think so)
This commit is contained in:
parent
5ea601efc8
commit
a70946381f
1 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,8 @@ def cs_render(cs_path,settings = {},hdf_path = ""):
|
||||||
- dictionary with settings (optional)
|
- dictionary with settings (optional)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
hdf=neo_util.HDF(hdf_path)
|
hdf=neo_util.HDF()
|
||||||
|
hdf.readFile(hdf_path)
|
||||||
for key in settings.keys():
|
for key in settings.keys():
|
||||||
hdf.setValue(key,str(settings[key]))
|
hdf.setValue(key,str(settings[key]))
|
||||||
cs= neo_cs.CS(hdf)
|
cs= neo_cs.CS(hdf)
|
||||||
|
|
Loading…
Reference in a new issue