Tag associated with opaque data type
tag = H5T.get_tag(type_id)
tag = H5T.get_tag(type_id)
returns the
tag associated with the opaque data type specified by type_id
.
fid = H5F.open('example.h5'); dset_id = H5D.open(fid,'/g3/opaque'); dtype_id = H5D.get_type(dset_id); tag = H5T.get_tag(dtype_id);