YAXArrays.jl
YAXArrays.jl copied to clipboard
Yet Another XArray-like Julia package
Grib support
Does YAXArrays support grib files?. If so, how can I load one? If not, could this feature be added? Thanks a lot.
The NetCDF data models allows storing attributes of dimensions. This is helpful when it comes to store CF metadata of axis dimensions, e.g. unit and standard_name of axis air pressure....
Hello, I have the following error when using `YAXArrays.Datasets.open_mfdataset`. The files represent daily data (1st file is day 1, 2nd file is second day, etc). It is ERA5-Land data downloaded...
Hello! I see a lot of tutorial that uses `intake` (Python package) for data loading. Especially for remote datasets such as CMIP6, ERA5, etc.. How hard it is to be...
Shouldn't this work? ``` using YAXArrays axlist1 = ( Dim{:time}(range(1, 20, length=20)), Dim{:lon}(range(1, 10, length=10)), Dim{:lat}(range(1, 5, length=15)) ) data1 = rand(20, 10, 15) ds1 = YAXArray(axlist1, data1) axlist2 =...
```julia using Zarr, YAXArrays using DimensionalData using CFTime # chunksize(c) = Cubes.cubechunks(c) store ="gs://cmip6/CMIP6/ScenarioMIP/DKRZ/MPI-ESM1-2-HR/ssp585/r1i1p1f1/3hr/tas/gn/v20190710/" @time g = open_dataset(zopen(store, consolidated=true)) c = g.tas @time kelvinCube = c[time=Between(DateTime("2030-01-01"), DateTime("2030-04-01"))] @time savecube(kelvinCube, "temp-02.zarr")...
During the precompilation we get the following warning I suspect this comes from line 2 in helpers.jl but I am not sure whether just removing
Hello, I'd like to know if integration with Tables.jl https://tables.juliadata.org/dev/ have been considered to export a slice of an YAXArray to DataFrames.DataFrame, TimeSeries.TimeArray, TSFrames.TSFrame... Maybe YAXArray could be both a...
Currently when we read a Zarr dataset we ignore all variables that have "bnd" in their name. Instead of ignoring the bounds we should use this information to construct a...
I am wondering whether we should switch to using the Metadata type from DimensionalData.Lookups instead of Dictionaries. I ran into the problem because I tried to save a DimArray via...