xdf: utilities to read and convert xdf to hdf5¶
-
class
tesfdmtools.hdf.xdf.
Xdf
(path=None, filename=None, noise=False, noiselength=0)[source]¶ Read old format XDF file.
- Kwargs:
path = path where file can be selected when filename is None.
filename = xdf file to be read. When None, query for file.
noise = if True, read noise data from first record
noiselength = length of noise data
Iterator class.
- Returns:
Dictionary with the record data
Example of use:
xfile=Xdf() for record in xfile: ...process record...