Manuel Reis

Results 12 issues of Manuel Reis

Typo on documentation formatting

This changes add a mode option `mode=consolidated` (perhaps best to do it by default when reading and fallback if fails) that will fetch a possibly existing `.zmetadata` file from the...

Hello 👋 We've noticed the difference between reading a remote Zarr dataset [`https://...#mode=s3,zarr`] and local one [`file://....#mode=file,zarr`]: ``` $ time ncdump/ncdump -v tas file://${HOME}/${DATASET}/#mode=zarr | tail -n+2 | md5sum abd28bc55fb9d0c25a3767a43d27110a...

Setting an anonymous prefix with on a bucket doesn't automatically allow listing all sub-prefixes. ## Expected Behavior I expected both commands to succeed like: ``` + mc ls --recursive play-anon/test-anon/download/...

community
triage

After #3090 merged I cannot build the main netcdf branch with: `cmake ../ -DNETCDF_ENABLE_NCZARR=ON -DNETCDF_ENABLE_S3_INTERNAL=ON` This PR tries to fix the most of it but there are a lot of...

Since https://github.com/Unidata/netcdf-c/pull/3090 compiling netcdf when S3 switches are enabled fails for both: autotools: `./configure --enable-s3 --enable-nczarr` (uses `aws-sdk-cpp`) cmake: `cmake ../ -DNETCDF_ENABLE_NCZARR=ON -DNETCDF_ENABLE_S3_INTERNAL=ON` (uses internal `s3` implementation) These are the...

Quick patch for https://github.com/Unidata/netcdf-c/issues/3108. This PR relies on `.zarray` having `chunk` and `shape` keys that are empty arrays, also checking if `.zattrs` contains an empty array for `_ARRAY_DIMENSIONS`. Under this...

This is a draft on how one could test interoperability between netcdf and zarr-python on a systematic manner using python to create datasets to be using by netcdf and vice-versa....

As an example here's some python code that writes a xarray dataset into netcdf and zarr (version 2): ```python import xarray as xr ds = xr.Dataset({'var':123456789}) ds.to_netcdf('xr.nc') ds.to_zarr('xr.zarr') ``` In...

When experimenting with #3068 I bumped into this. I believe it was **not introduced** in such PR and trying with `4.8.1` it works fine. ``` nccopy file://ngc4008_P1D_0_crs.zarr.zip#mode=zarr,zip file:///var/tmp/out.zarr#mode=zarr,file ``` ```...