JuliaClimate / ClimateBase.jl

Tools to analyze and manipulate climate (spatiotemporal) data. Also used by ClimateTools and ClimatePlots
https://juliaclimate.github.io/ClimateBase.jl/dev/
Other
39 stars 3 forks source link

[FR] GRIB support through CfGRIB.jl #54

Open Balinus opened 3 years ago

Balinus commented 3 years ago

ECMWF just relased CfGRIB.jl for reading and importing Grib data. It expose the data as either DimensionalData or AxisArrays.

Would be interesting to link it with ClimateBase.jl, which would allow some manipulations.

https://github.com/ecmwf/cfgrib.jl https://www.ecmwf.int/en/newsletter/166/news/new-way-accessing-grib-data-using-julia-language

Datseris commented 3 years ago

Oh, didn't know about this package. Okay, that makes solving this issue trivial, as we only have to transform the output DimensionalArray to ClimArray, which is direct: ClimArray(A::DimensionalArray).

Balinus commented 3 years ago

Nice! That seemed trivial indeed, a simple wrapper function.