YAXArrays.jl
YAXArrays.jl copied to clipboard
Yet Another XArray-like Julia package
I need to rename an axis for a large data cube so that I would not like to load it and then rename the axis with `renameaxis`and then save it...
When saving a cube to netcdf, the function `savecube` is documented to only accept arguments `(cube,name::String)`. Simply doing `savecube(my_cube, "/my/file/path.nc")` does NOT work for me. Before (when it was called...
This is a first testitem for the extraction of multiple pixels from the same site. Currently using a Table with a column with repeating values just goes through and returns...
I found the source of the type mismatch of opening the esdc or opening it directly from a path. In the esdc function we use zopen to open the path...
We should provide a keyword argument for the openning of a dataset to specify the missing value. Possible values for the missing_value could be NaN, :fill_value, some_value. The open question...
When I apply a map over two cubes which have different internal chunkings which I make align by the setchunks function, I can do the computation but the subsetting into...
Only when I try it as below it does not work, i.e., wrapping the mapCube function in another function: ``` axlist = [ RangeAxis("time", Date(1979,1,1):Day(1):Date(2021,12,31)), RangeAxis("lon", range(-60,-70, length=11)), RangeAxis("lat", range(-30,...
When we run the tests we get the following warning: `WARNING: Wrapping `Vararg` directly in UnionAll is deprecated (wrap the tuple instead).` Apparently this is a deprecation warning which was...
Hi, on Felix's request, here is a wish list for indexing cubes: - For the time axis, can we remove a Date(s) by using -(Date(s)) - Alternatively can we give...
It would be neat, when we could have tab completion of variablenames for subsetting a cube in the Julia REPL. The upstream issue for that is https://github.com/JuliaLang/julia/issues/44287