H5DS.get_label

Retrieve label from specific dataset dimension

Syntax

label = H5DS.get_label(dataset_id,idx)

Description

label = H5DS.get_label(dataset_id,idx) retrieves the label for dimension idx of the dataset dataset_id.

Note

The ordering of the dimension scale indices are the same as the HDF5 library C API.

Examples

fid = H5F.open('example.h5');
world_dset_id = H5D.open(fid,'/g4/world');
label = H5DS.get_label(world_dset_id,0);
H5D.close(world_dset_id);
H5F.close(fid);