Skip to main content

Herbie: Retrieve NWP Model Data 🏁

PyPI - Python Version PyPI Conda Version DOI

Tests (Conda) Tests (Python) Documentation Status Conda Recipe Ruff

Conda Downloads PyPI - Downloads PyPI - License

📘 Documentation | 💬 Discussions | ❔ Ask For Help

Herbie is a python package that downloads recent and archived numerical weather prediction (NWP) model output from different cloud archive sources. NWP data is distributed in GRIB2 format which Herbie reads using xarray+cfgrib. Herbie also provides some extra features to help visualize and extract data.

Herbie helps you discover, download, and read data from:

Much of this data is made available through the NOAA Open Data Dissemination (NODD) program (formerly the Big Data Program) which has made weather data more accessible than ever before.

Installation

The easiest way to instal Herbie and its dependencies is with Conda from conda-forge.

conda install -c conda-forge herbie-data

You may also create the provided Conda environment, environment.yml.

# Download environment file
wget https://github.com/blaylockbk/Herbie/raw/main/environment.yml

# Modify that file if you wish.

# Create the environment
conda env create -f environment.yml

# Activate the environment
conda activate herbie

Alternatively, Herbie is published on PyPI and you can install it with pip, but it requires some dependencies that you will have to install yourself:

When those are installed within your environment, then you can install Herbie with pip.

# Latest published version
pip install herbie-data

# ~~ or ~~

# Most recent changes
pip install git+https://github.com/blaylockbk/Herbie.git

# Dependecies for extra features
pip install herbie-data[extra]

Capabilities

  • Search for model output from different data sources.
  • Download full GRIB2 files.
  • Download subset GRIB2 files (by grib field).
  • Read data with xarray.
  • Read index file with Pandas.
  • Extra features (herbie xarray accessors)
    • Extract data at a point
    • Get Cartopy coordinate references system
    • Plot data with Cartopy (very early development).
  graph TD;
      d1[(HRRR)] -..-> H
      d2[(RAP)] -.-> H
      d3[(GFS)] -..-> H
      d33[(GEFS)] -.-> H
      d4[(IFS)] -..-> H
      d44[(AIFS)] -..-> H
      d5[(NBM)] -.-> H
      d6[(RRFS)] -..-> H
      d7[(RTMA)] -.-> H
      d8[(URMA)] -..-> H
      H((Herbie))
      H --- .inventory
      H --- .download
      H --- .xarray

      style H fill:#d8c89d,stroke:#0c3576,stroke-width:4px,color:#000000
from herbie import Herbie

# Herbie object for the HRRR model 6-hr surface forecast product
H = Herbie(
  '2021-01-01 12:00',
  model='hrrr',
  product='sfc',
  fxx=6
)

# Look at file contents
H.inventory()

# Download the full GRIB2 file
H.download()

# Download a subset, like all fields at 500 mb
H.download(":500 mb")

# Read subset with xarray, like 2-m temperature.
H.xarray("TMP:2 m")

Data Sources

Herbie downloads model data from the following sources, but can be extended to include others:

Community

Having trouble using Herbie or have a question? ❔ GitHub Discussions/Ask For Help

Just want to talk about Herbie or have an idea? 💬 GitHub Discussions

See something that might be wrong? 🚑 GitHub Issues

Want to contribute? Great! I'd love your help.

How to Cite and Acknowledge

If Herbie played an important role in your work, please tell me about it! Also, consider including a citation or acknowledgement in your article or product.

Suggested Citation

Blaylock, B. K. (YEAR). Herbie: Retrieve Numerical Weather Prediction Model Data (Version 20xx.x.x) [Computer software]. https://doi.org/10.5281/zenodo.4567540

Suggested Acknowledgment

A portion of this work used code generously provided by Brian Blaylock's Herbie python package (Version 20xx.x.x) (https://doi.org/10.5281/zenodo.4567540)


History

During my PhD at the University of Utah, I created, at the time, the only publicly-accessible archive of HRRR data. Over 1,000 research scientists and professionals used that archive.

Blaylock B., J. Horel and S. Liston, 2017: Cloud Archiving and Data Mining of High Resolution Rapid Refresh Model Output. Computers and Geosciences. 109, 43-50. https://doi.org/10.1016/j.cageo.2017.08.005.

Herbie was then developed to access HRRR data from that archive and was first used on the Open Science Grid.

Blaylock, B. K., J. D. Horel, and C. Galli, 2018: High-Resolution Rapid Refresh Model Data Analytics Derived on the Open Science Grid to Assist Wildland Fire Weather Assessment. J. Atmos. Oceanic Technol., 35, 2213–2227, https://doi.org/10.1175/JTECH-D-18-0073.1.

In the later half of 2020, the HRRR dataset from 2014 to present was made available through the NODD Open Data Dissemination Program (formerly NOAA's Big Data Program). The latest version of Herbie organizes and expands my original download scripts into a more coherent package with the extended ability to download data for other models from many different archive sources, and it will continues to evolve.

I originally released this package under the name “HRRR-B” because it only worked with the HRRR dataset; the “B” was for Brian. Since then, I have added the ability to download many more models including RAP, GFS, ECMWF, GEFS, and RRFS with the potential to add more models in the future. Thus, this package was renamed Herbie, named after one of my favorite childhood movies.

The University of Utah MesoWest group now manages a HRRR archive in Zarr format. Maybe someday, Herbie will be able to take advantage of that archive.

Thanks for using Herbie, and happy racing!

🏁 Brian


P.S. If you like Herbie, check out my other repos:

  • 🌎 GOES-2-go: A python package to download GOES-East/West data and make RGB composites.
  • 🌡 SynopticPy: A python package to download mesonet data from the Synoptic API.
  • 🔨 Carpenter Workshop: A python package with various tools I made that are useful (like easy funxtions to build Cartopy maps).
  • 💬 Bubble Print: A silly little python package that gives your print statement's personality.
  • 📜 MET Syntax: An extension for Visual Studio Code that gives syntax highlighting for Model Evaluation Tools (MET) configuration files.

Note: Alternative Download Tools
As an alternative to Herbie, you can use rclone to download files from AWS or GCP. I love rclone. Here is a short rclone tutorial

| Visualize Structure | Star History | PyPI Download Statistics

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

herbie_data-2025.2.1.tar.gz (108.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

herbie_data-2025.2.1-py3-none-any.whl (107.4 kB view details)

Uploaded Python 3

File details

Details for the file herbie_data-2025.2.1.tar.gz.

File metadata

  • Download URL: herbie_data-2025.2.1.tar.gz
  • Upload date:
  • Size: 108.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for herbie_data-2025.2.1.tar.gz
Algorithm Hash digest
SHA256 c9a3edf6b86d4f98f8c616620eeff171b4c98f28b8add778ecfc53243c3e40ac
MD5 e53825dbd5edad7f0209f8a3d34a3e7e
BLAKE2b-256 181b699f585c6043d766ad2f56ab330538445d252fc813c9250cd4f94e8e35e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for herbie_data-2025.2.1.tar.gz:

Publisher: release_to_pypi.yml on blaylockbk/Herbie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file herbie_data-2025.2.1-py3-none-any.whl.

File metadata

  • Download URL: herbie_data-2025.2.1-py3-none-any.whl
  • Upload date:
  • Size: 107.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for herbie_data-2025.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 78ff0736be2480af9b683961a93d65bafc9c49202df42cb83bd28975df6282ac
MD5 dc9f7630e1aabac04accfb995344ddf0
BLAKE2b-256 fdc0a4618d38a7f5fa6f68f68ac03c14b802b32ad819038bd1a77a5604e69a82

See more details on using hashes here.

Provenance

The following attestation bundles were made for herbie_data-2025.2.1-py3-none-any.whl:

Publisher: release_to_pypi.yml on blaylockbk/Herbie

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

2026.3.0

2 files

2026.1.1

2 files

2026.1.0

2 files

2025.12.0

2 files

2025.11.3

2 files

2025.11.2

2 files

2025.11.1

2 files

2025.11.0

2 files

2025.10.1

2 files

2025.10.0

2 files

2025.7.0

2 files

2025.6.0

2 files

2025.5.0

2 files

2025.3.1

2 files

2025.3.0

2 files

This release

2025.2.1 This release

2 files

2025.2.0

2 files

2024.8.0

2 files

2024.7.1

2 files

2024.7.0

2 files

2024.5.0

2 files

2024.3.1

2 files

2024.3.0

2 files

2023.12.4

2 files

2023.12.3

2 files

2023.12.2

2 files

2023.12.1

2 files

2023.3.0

2 files

2022.9.0.post1

2 files

0.0.10

2 files

0.0.9

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page