This repository was archived by the owner on Oct 24, 2024. It is now read-only.

Description
Hi Tom,
I missed your AMS talk this week because of a conflict, but I looked through the slides (thanks for posting those). Maybe I'll run into you later at AMS.
Just about all numerical weather model data is distributed in the grib format. Xarray has an engine for reading grib and grib2 files (cfgrib) that works great. One limitation with cfgrib is that when a file has variables on multiple types of levels (i.e., temperature at 2 meters, at 500 mb, and at cloud top height) cfgrib can't read the data into a single dataset, so instead it reads the data and returns a list of datasets when you do cfgrib.open_datasets(gribfileName).
If I understand the basics of datatree correctly, it sounds like datatree would be the better way for cfgrib to handle reading this data.
Have you looked at cfgrib and grib data before?