You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Testing version: Windows version of the release candidate from S3
The HDF5 ENUM type at h5compass is treated as 2-byte signed integer. In compass you just see numbers like 0,1,2,......
The information about ENUM is lost. This is the snippet of h5dump output. I think compass can at least provide the mapping of enum to the integer number.
File: ftp://ftp.hdfgroup.uiuc.edu/pub/outgoing/HDFCompass/kent-files/hdf5-handler-fake/ntypes.h5
Testing version: Windows version of the release candidate from S3
The HDF5 ENUM type at h5compass is treated as 2-byte signed integer. In compass you just see numbers like 0,1,2,......
The information about ENUM is lost. This is the snippet of h5dump output. I think compass can at least provide the mapping of enum to the integer number.
DATATYPE H5T_ENUM {
H5T_STD_I16LE;
"RED" 0;
"GREEN" 1;
"BLUE" 2;
"YELLOW" 3;
"PINK" 4;
"PURPLE" 5;
"ORANGE" 6;
"WHITE" 7;
}
DATASPACE SIMPLE { ( 100, 200 ) / ( 100, 200 ) }
DATA {
(0,0): RED, PURPLE, BLUE, WHITE, PINK, GREEN, ORANGE, YELLOW, RED,
.....
The text was updated successfully, but these errors were encountered: