YAXArrays.jl icon indicating copy to clipboard operation
YAXArrays.jl copied to clipboard

Yet Another XArray-like Julia package

Results 172 YAXArrays.jl issues
Sort by recently updated
recently updated
newest added

When I save a cube with small chunk sizes the buffer size is not corrected in `get_copy_buffer_size` which leads to a very slow saving of the data cube. We might...

Hello, I'd like to know how to avoid the following error. I have not been able to build a MWE, so perhaps someone has an idea? I tried saving the...

Before #150 it was possible to give backend kwargs to example set the compression. This seems to be not possible anymore. We would need to find a good way to...

I'm trying the example from the docs: ```julia using Zarr, YAXArrays, Dates, DimensionalData store = "gs://cmip6/CMIP6/ScenarioMIP/DKRZ/MPI-ESM1-2-HR/ssp585/r1i1p1f1/3hr/tas/gn/v20190710/" g = open_dataset(zopen(store, consolidated=true)) c = g["tas"] ct = c[Ti=At(Date("2018-08-01"):Day(10):Date("2050-08-01"))] in_memory = ct.data[:, :,...

This is a speed comparison between Rasters and YAXArrays. This uses the COSMO REA dataset. It seems that YAXArrays has some overhead , but then it doesn't matter much whether...

question
test needed
todo
checkvalidity

We could improve the printing of the Dataset by trying to sort the cubes by shared axes. Currently, if there is one cube without any axes all other cubes will...

Positional argument subsetting works for YAXArrays but does not for Datasets, this should be fixed. An MWE is: ````julia using YAXArrays import DimensionalData as DD using Dates tax = DD.Ti(Date(2001):Day(1):Date(2001,1,10))...

bug

contents of MyPkg/src/MyPkg.jl: ``` using PrecompileTools, YAXArrays, Zarr @setup_workload begin @compile_workload begin A = YAXArray(rand(2,3,4)) savecube(A, tempname(), driver=:zarr) end end ``` strangely, `:zarr` is not found when `using` that package:...

Multiple Datasets in the [Common Data Model V4](https://docs.unidata.ucar.edu/netcdf-java/current/userguide/common_data_model_overview.html#data-access-layer-object-model) can be stored in the same file. Hereby, they are organized in (nested) groups, analog to files in directories and subdirectories. For...

#309 Still needs some docs

help wanted