Skip to content

How do I download 15-minute HRRR data? #67

Answered by blaylockbk
jahanbani asked this question in Q&A
Discussion options

You must be logged in to vote

Yes, you can download HRRR 15-min data with product="subh" (subh is for subhourly).

from herbie.archive import Herbie
H = Herbie('2022-04-07 00:00', model='hrrr', product='subh', fxx=2)
  • fxx=0 is the analsyis
  • fxx=1 will return the variables at 15, 30, 45, and 60 minutes since the analysis.
  • fxx=2 will return the variables at 75, 90, 105, and 120 minutes since the analysis,
  • etc.

Subsetting

If you only want, for example, the temperature data, you can use the searchString argument to subset.

Reading the index file for a subset is a quick way to verify the searchString

H = Herbie('2022-04-07 00:00', model='hrrr', product='subh', fxx=2)
H.read_idx(searchString="TMP")

The data can be read int…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by jahanbani
Comment options

You must be logged in to vote
2 replies
@blaylockbk
Comment options

@jahanbani
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #66 on April 07, 2022 18:06.