kerchunk icon indicating copy to clipboard operation
kerchunk copied to clipboard

Cloud-friendly access to archival data

Results 126 kerchunk issues
Sort by recently updated
recently updated
newest added

This is a proposal to add [all-contributors](https://allcontributors.org/docs/en/bot/installation) bot to `Kerchunk`.

This PR adds a new module called `_grib_idx.py` with private functions and added necessary refactorings

Added the `reinflate` function to reinflate the index.

Taking the first file from here (https://noaa-goes17.s3.amazonaws.com/index.html#ABI-L1b-RadF/2022/001/00/) as an example: The following code: ```python import kerchunk.hdf import json fname = "OR_ABI-L1b-RadF-M6C01_G17_s20220010000320_e20220010009386_c20220010009424.nc" h5chunks = kerchunk.hdf.SingleHdf5ToZarr(fname) refs = h5chunks.translate() with open("test.json", "w")...

I'm working on development of the [rashdf](https://github.com/fema-ffrd/rashdf) library for reading [HEC-RAS](https://www.hec.usace.army.mil/software/hec-ras/) HDF5 data. A big part of the motivation for development of the library is stochastic hydrologic/hydraulic modeling. We want...

I have many *.nc files in a directory that I am opening into a single dataset with kerchunk. The nc files are shape (N,1), where dimension of shape 1 is...