I try ILNumerics.IO.HDF5 and can not read the following data:
- Variable length strings in Datasets and Attributes.
- Datasets with variable length arrays. Each cell contain a array of numbers, which are histograms.
- Compound data, ie. Datasets with structs containing some numbers.
In HDFView 2.10.1 I can read this data: https://anonfiles.com/file/13756916026cafc4e4ec7c333f235bda
How can I use ILNumerics.IO.HDF5 with this data?
I found an other post with suggestion to read string as char. But with the variable length string an exception is thrown: "Error reading data from the attribute!"
var file = new H5File("test.h5");
H5Dataset ds1 = file.First<H5Dataset>("Wind");
var att = ds1.Attributes["Aggregator"];
var value = att.Get<char>();