James Mudd
James Mudd
Note on Java 11 with Hamcrest 2.1
Its exactly the same issue on Java 11 with Hamcrest v2.2 and on Java 8 with Hamcrest v2.2
Yes that works. Ok so what would be needed for this is 2 extra signatures for `hasEntry` - `hasEntry(K key, Matcher
Thanks for the comment. I would really like to add this feature and I don't think it would be too much work. Unfortunately this is a spare time project for...
I have had a look at this and have a WIP branch https://github.com/jamesmudd/jhdf/tree/slicing-support I actually think adding basic slicing support will not be very long task. You didn't say whay...
There is now a PR #361 which adds support for slicing of contiguous datasets. Here is a jar [jhdf-0.6.6-slice-beta.zip](https://github.com/jamesmudd/jhdf/files/8327979/jhdf-0.6.6-slice-beta.zip) with built from the PR (needs to be renamed `.zip` →...
@slathi18 are the datasets in your files contiguous or chunked? If they are contiguous then this jar might already work for you.
https://github.com/jamesmudd/jhdf/pull/361 adds support for contiguous datasets. This is released in v0.6.6. Support for chunked datasets still needs to be implemented.
Generate test file ``` import h5py import numpy as np def write_chunked_datasets(f): data = np.arange(1024) f.create_dataset('1024', data=data, dtype='i4', chunks=(1,)) f.create_dataset('1024_zip', data=data, dtype='i4', chunks=(1,), compression="gzip") data = np.arange(1025) f.create_dataset('1025', data=data, dtype='i4',...
Thanks for raising the issue. I would like to add writing support and its currently a work in progress. I have implemented a few of the prerequisites e.g. the Jenkins...