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 try to save a YAXArray with eltype Float16 I get the error below: I am not sure whether this is a problem which should be better solved in...

Currently, indexing by Sets isn't supported: ```julia using EarthDataLab ds = esdd() a = [:cot, :ctt] ds[a] # Works fine s = Set(a) ds[s] #No method matching getindex(DataSet, Set) #...

I would like to exclude one variable from a Dataset e.g. ```julia using Pkg cd("/Net/Groups/BGI/work_3/OEMC/oemc_towers/") Pkg.activate("/Net/Groups/BGI/work_3/OEMC/oemc_towers/") using YAXArrays, CairoMakie, YAXArraysToolbox, Zarr, Statistics, DiskArrays, DiskArrayTools, Revise, DataFrames, CSV, Plots, ProgressMeter, DimensionalData...

It used to work to do `cube[time=datetime]` in a `@distributed` for loop before the breaking change to DimensionalData. Now it should work with `cube[Ti=At(datetime)]`, but it hangs and does nothing....

documentation

Hello! I play with climate simulations, with Dataset/files being in separate Zarr directory. I'd like the combine them into a single YAXArray, but so far, I have not succeeded. Here's...

Not sure if it's a good idea to export the selectors from DimensionalData.jl package: Selectors are wrappers that indicate that passed values are not the array indices, but values to...

i don't see anywhere in the code or docs an API to get the chunk size. is there one? for now i'm using `[x[end] for x in A.chunks[1]]`, which seems...

documentation
enhancement

In the documentation, an important section on how to extract values a bunch of lat lon pairs is gone. To my mind, it would be important to have something on...

a function `save` could replace `savedataset` & `savecube`. If save is passed a Cube it would call `savecube`, if it was passed Dataset it could call `savedataset` save would also...

enhancement

Maybe an exported function Dataset instead of open_dataset would be better and if Dataset was used to read a Cube it could return a Dataset. This would be a bit...