The hdf5prop at:
allows to create a handle into an HDF5 file, without actually loading it. This means one can handle very large data sets, larger than memory, and only get selected portions directly from file.
Installation requires first to get:
and then this hdf5prop (which overloads an updated h5datacreate)
Example:
- a=hdf5prop('/home/farhi/dev/iFit/Data/153265_153282.hdf','entry1/data1/DATA')
One needs to know the exact path to data sets.
This could be done in:
- read_hdf5: line 91: val = H5D.read to val = hdf5prop(filename, ...)
- read_hdf5: line 75: h5read(...)
The hdf5prop at:
allows to create a handle into an HDF5 file, without actually loading it. This means one can handle very large data sets, larger than memory, and only get selected portions directly from file.
Installation requires first to get:
and then this hdf5prop (which overloads an updated h5datacreate)
Example:
One needs to know the exact path to data sets.
This could be done in: