HDF-NI / hdf5.node

A node module for reading/writing the HDF5 file format.
MIT License
123 stars 40 forks source link

Walk HDF5 data tree? #51

Open bsrdjan opened 6 years ago

bsrdjan commented 6 years ago

Any example how to walk HDF5 data tree using hdf5.node?

Following HDF5 examples, visit and iterate methods shall be used, like done in h5py for example: https://github.com/h5py/h5py/issues/406.

rimmartin commented 6 years ago

Good Idea. I'll add the technique. Will commit probably on the weekend with some hdf5 1.10.x changes

rimmartin commented 6 years ago

Added an iterate on files and groups. https://github.com/HDF-NI/hdf5.node/blob/master/test/test_h5lt.js#L840 more will be added.

rimmartin commented 6 years ago

added recursive visiting on links. Returns an "xpath" of the groups from the root group or the file itself.

looking at the object visiting next