YAXArrays.jl
YAXArrays.jl copied to clipboard
Yet Another XArray-like Julia package
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....
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,...
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:...
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....
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",...
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 =...