Using HDF5DotNet, can anyone point me at example code, which will open an hdf5 file, extract the contents of a dataset, and print the contents to standard output?

So far I have the following:

        H5.Open();
        var h5 = H5F.open("example.h5", H5F.OpenMode.ACC_RDONLY);
        var dataset = H5D.open(h5, "/Timings/aaPCBTimes");
        var space = H5D.getSpace(dataset);
        var size = H5S.getSimpleExtentDims(space);

Then it gets a bit confusing.

I actually want to do some processing on the contents of the dataset but I think once I have dump to standard output I can work it out from there.

UPDATE: I've hacked around this sufficient to solve my own problem. I failed to realise a dataset was a multi-array - I thought it was more like a db table. In the unlikely event anyone is interested,

double[,] dataArray = new double[size[0], 6];
var wrapArray = new H5Array<double>(dataArray);
var dataType = H5D.getType(d);
H5D.read(dataset, dataType, wrapArray);
Console.WriteLine(dataArray[0, 0]);
link|improve this question

3  
I want to point out that having H5, h5, H5F, H5S and H5D as variable names is bad form. The first two differ only by case. The others by only a single letter. – Inuyasha Oct 29 '11 at 15:21
1  
Yes. H5, H5F, H5S, and H5D are all provided by the API - HDF5DotNet - C++/CLI Wrapper of the HDF5 Library. If you follow the link, you can also enjoy H5A, H5E, H5G, H5I, H5L, H5O, H5P, and H5R. I'm looking for a code sample because I'm not keen to spend much time studying this interface. – Crosbie Oct 29 '11 at 15:49
All I can say is: lolcry. – Inuyasha Oct 29 '11 at 16:13
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.