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

I am constructing a mask from an existing cube by mapping a function which returns a boolean. This results in a cube with eltype Union{Missing, Bool}. Since this cube comes...

Currently, when I have two cubes of the same size with the same size, but different axis positions, the map of these two cubes would fail because we check for...

I have a seasonal prediction dataset with 16 variables. It seems that thay all inherit the same definition, which is one of the 16 variables. What we should get: ```python...

If we get a larger than memory output we currently get the following error, when we don't load Zarr. We should be either falling back to other backends that might...

We could hold the YAXDefaults values via Preferences.jl so that the values would be consistent across different Julia runs. https://github.com/JuliaPackaging/Preferences.jl

I was trying to write up an example for the JuliaClimate meta issue about julia packages for the CMIP6 data https://github.com/JuliaClimate/meta/issues/17 and I ran into the following error with trying...

Running `mapslices` on a Dataset should return another Dataset, instead it returns an odd cube: ```julia using YAXArrays a = YAXArray(ones(10,10,10)) b = YAXArray(ones(10,10,10)) c = YAXArray(ones(10,10,10)) axes = Dict(:Dim_1...

The following fails at several levels: If I do the following ```Julia axlist = [ RangeAxis("other", 1:4), RangeAxis("time", range(1, 20, length=20)), RangeAxis("lon", range(-66.4598,-66.4598, length=1)), RangeAxis("lat", range(-33.4648, -33.4648, length=1)), ] data...

When loading Rasters.jl and YAXArrays, there is a warning, stuff still seems to work. Not sure if this is the fault of Rasters.jl or YAXArrays.jl. I am posting here, because...

When I compute the difference of two cubes with map from cubes with different chunksizes, the computation is done correctly and I can access the data but I can't use...