IH5File

IH5File provides opening of HDF5 files and loading of datasets and groups compatible with ISCE routines.

Documentation

class isce3.io.IH5File.IH5File

Wrapper for pyIH5File.

find(name, start, dtype='BOTH')

Get a list of datasets with a given name relative to a starting path in HDF5 file.

Parameters
  • name (str) – Dataset name to search for.

  • start (str) – Starting path.

  • dtype (Optional[str]) – Specify to return ‘DATASET’, ‘GROUP’, or ‘BOTH’.

Returns

List of datasets found.

Return type

datasets (list)

openGroup(name)

Open an HDF5 group.

Parameters

name (str) – Group name to search for.

Returns

pyIGroup.

Return type

group (pyIGroup)