Hi There;
I was trying to download recent RRFS files and found that Herbie produced wrong source URL for recent RRFS data files, consequently it cannot find the files, for example, the correct URL is supposed to be
https://noaa-rrfs-pds.s3.amazonaws.com/rrfs_a/rrfs.20260318/12/rrfs.t12z.natlev.3km.f000.na.grib2
but Herbie produced the following wrong URL
https://noaa-rrfs-pds.s3.amazonaws.com/rrfs_a/rrfs_a.20260318/12/control/rrfs.t12z.natlev.f000.grib2
Here is the python code, in which member and domain have to be present
from herbie import Herbie
H = Herbie(
"2026-03-18 12:00",
model="rrfs",
member="control",
product="natlev",
domain=None,
fxx=0
)
print(H.SOURCES)
Is this a bug or I am missing something? Any work around?
Thx for your help.
John
Hi There;
I was trying to download recent RRFS files and found that Herbie produced wrong source URL for recent RRFS data files, consequently it cannot find the files, for example, the correct URL is supposed to be
https://noaa-rrfs-pds.s3.amazonaws.com/rrfs_a/rrfs.20260318/12/rrfs.t12z.natlev.3km.f000.na.grib2
but Herbie produced the following wrong URL
https://noaa-rrfs-pds.s3.amazonaws.com/rrfs_a/rrfs_a.20260318/12/control/rrfs.t12z.natlev.f000.grib2
Here is the python code, in which member and domain have to be present
Is this a bug or I am missing something? Any work around?
Thx for your help.
John