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

just tried to calculate a mean seasonal cycle and got the following error: ```julia julia> damsc = mean.(DimensionalData.groupby(da, Ti => dayofyear);) ERROR: ArgumentError: Unable to determine chunksize of non-range views....

bug

When a path is specified the output should always written to that path and not just kept in memory. I think, that this needs to be changed here, but it...

When I am trying to set the output of mapCube via the OutDims path and backend combination to a netcdf file I get the following error: ```julia rqatrend(path::AbstractString; thresh=2, outpath=tempname()*".zarr",overwrite=false,...

enhancement

This error is preventing users from creating YAXArrays of Strings} and Unions that contain Strings. closes #410

Not sure if I'm creating false memories but I thought in the past I could create YAXArrays with mixed types? ```julia test_x = stack(Vector{Union{Int,String}}[[1, "Test"], [2, "Test2"]]) YAXArray(test_x) ``` ```julia...

In this MWE: ```julia lst = randn(200,200) lst = ( Dim{:x}(1:size(lst)[1]), Dim{:y}(1:size(lst)[2]), ) lst_cube = YAXArray(axlist, lst) ``` if I try: ```julia lst_cube.properties = Dict("dummy1" => 200) ``` I got:...

documentation

I'm running some code on two separate computers and have experienced an issue where after an update, most approaches to indexing stopped working on one computer, but not the other....

bug

Hello: I have to select data within a geographical window given as longitudes east and west and latitudes north and south. But the spatial coordinate of my data is "values",...

documentation

In this section of the docs on [handling axes names](https://juliadatacubes.github.io/YAXArrays.jl/dev/UserGuide/faq#Extract-the-axes-names-from-a-Cube) it is stated: > WARNING > To get the axes of a YAXArray use the dims function instead of the...

`convert(Matrix, x')` is so slow that I haven't gotten it to finish. `convert(Matrix, x)` works just fine. ```julia julia> using YAXArrays, Zarr julia> path = "~/data/DataCube/v3.0.2/esdc-8d-0.25deg-1x720x1440-3.0.2.zarr" "~/data/DataCube/v3.0.2/esdc-8d-0.25deg-1x720x1440-3.0.2.zarr" julia> ds =...

bug