Brian Benjamin Maranville
Brian Benjamin Maranville
Sure, I would be open to doing so. What kind of interface did you have in mind? Something like the h5py approach here https://docs.h5py.org/en/stable/high/dims.html?
I looked at the underlying HDF5 libraries, and it seems straightforward. Exposing the minimal write/create/modify functions you listed from the HDF5 API would be quick. Would that be useful? I...
Ok, write support is in v0.6.8 - please give it a try. Documentation can be found in the CHANGELOG or [the release notes](https://github.com/usnistgov/h5wasm/releases/tag/v0.6.8) I'll leave this open because basic read...
This is purely from curiosity, but what projects are you working on that will involve writing netcdf4 files with h5wasm?
I was surprised that requests for write functionality came in before requests for read functionality! My reason for getting into the hdf5-in-the-browser game was to support web-based visualization and inspection...
I have one further question - the HDF5 mapping spec for NetCDF4 indicates that all groups should be created with link and attribute creation order preserved, and that all datasets...
I implemented this in a branch, but never merged it. I'll make a PR out of it soon. https://github.com/usnistgov/h5wasm/tree/track_order
PR in progress: #82 Currently, there is just one flag `track_order` when creating new groups, and it applies to links (fields) as well as attributes. Is there a strong use...
The `track_order` flag for `Dataset` and `Group` creation has been added in the just-published h5wasm v0.7.7
The ROS3 driver makes HTTP requests directly from the C-code (using CURL), which is not really possible in WebAssembly. You can call back into Javascript to make requests, or you...