YAXArrays.jl
YAXArrays.jl copied to clipboard
Yet Another XArray-like Julia package
currently, we don't see the new release version in the gh-pages branch. Any hints? @asinghvi17
In the docs there's an example on how to concatenate cubes with different variables, so I was wondering if it is possible to concatenate cubes with same variables but on...
I am not entirely sure what the purpose of the .zmetadata file is and therefore I am not sure whether this is supposed to be written or not. This is...
Links to [ESDL study 3](https://juliadatacubes.github.io/YAXArrays.jl/dev/tutorials/examples_from_esdl_study_3) and [ESDL study 4](https://juliadatacubes.github.io/YAXArrays.jl/dev/tutorials/examples_from_esdl_study_4) in the docs are broken:
Is it possible to subset a cube according to a BitVector index along a specific dimension?
Hey! I'm in the process of uploading new docs for yax. I would like to put together a list of packages for the Julia Geo Ecosystem, maybe closely related to...
When we show a list of YAXArrays the data is shown and not the metadata overview. This can make showing quite slow because we pay the reading overhead to get...
Opening a set of NetCDF results in error through multiple ways: ```julia using YAXArrays, NetCDF filelist = readdir("Path/to/NetCDF/directory", join = true) Cube = YAXArrays.Datasets.open_mfdataset(filelist) # ERROR: KeyError: key :Ti not...
why the change from D1, D2 here to Dim{:D1}, Dim{:D2} when converting a dimarray to a yaxarray? ``` julia> using DimensionalData, YAXArrays, YAXArrayBase julia> DimensionalData.@dim D1 julia> DimensionalData.@dim D2 julia>...
it's slower when converting yax to dd: ``` julia> using YAXArrays, YAXArrayBase, DimensionalData, BenchmarkTools julia> yax = YAXArray(rand(10, 20, 5)); julia> dd = yaxconvert(DimArray, yax); julia> @benchmark yax[Dim_1=1:3] BenchmarkTools.Trial: 10000...