-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loading GEFS forecasts 2017-2021 not working #393
Comments
Strange herbie.__version__ yields
|
I use the command ds_20210101 = Herbie(
"2017-01-01",
model="gefs",
fxx=36,
product="atmos.25",
member="mean",
).xarray("PRMSL").drop_attrs() which returns
This does not happen otherwise with 2021-01-01 on |
It looks like the GEFS product you are looking for is available as far back as 2020-09-23, but not before that. Or, maybe it was labeled/stored a different way and the GEFS template in Herbie would need to be updated? Herbie(
"2020-09-23",
model="gefs",
fxx=36,
product="atmos.25",
member="mean",
) returns
but Herbie(
"2020-09-22",
model="gefs",
fxx=36,
product="atmos.25",
member="mean",
) returns
|
Hmmm yes you are right, the folder structure also changed and it seems like only the 1 degree products for pgrb2a and pgrb2b are available (even though this website indicates that the 0.25 should be available https://www.ncei.noaa.gov/products/weather-climate-models/global-ensemble-forecast#:~:text=The%20Global%20Ensemble%20Forecast%20System,observing%20systems%20biases%2C%20and%20the), perhaps better to use the reanalysis products then. |
Thank you for the help :) |
When trying to load GEFS forecasts (not reanalysis) from AWS for years before 2021 (i.e., 2017-2020 which should exist), Herbie cannot find the file. I find Herbie super useful so would be willing to put in some work to extend it to 2017, I just need some pointers on what would be the best place to start.
The text was updated successfully, but these errors were encountered: