Replies: 1 comment 1 reply
-
Thanks @tlg7 for the feedback. I'll have to look into this more to remember how it works, but you have a valid point...if you are offline, but the grib2 file exists, Herbie should be able to work. FYI: The naming structure for a subsetted file is
You can use Herbie to predict that filename H.get_localFilePath("CAPE:surface")
OUT:
WindowsPath('C:/Users/blaylock/data/hrrr/20230301/subset_8eefabec__hrrr.t06z.wrfsfcf00.grib2') H.get_localFilePath("CAPE:surface").exists()
OUT:
True (if you haven't downloaded that file yet) So, what happens on your HPC when you try to create the Herbie object? Does it spin forever? Herbie should check if the file exists locally before it looks on the internet or the file. That said, Herbie always tries to find the index file on the internet because Herbie does not download index files. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is a great piece of software for downloading model data easily and efficiently.
I have directory of HRRR data downloaded already. To read in that data, I use two commands:
This works well on my own computer, but on an HPC cluster fails, most likely due to internet restrictions.
My question: is it possible to read in the files I already have downloaded without using any internet connection? The files names are saved so that I can't understand them (ex.
subset_44ef1277__hrrr.t00z.wrfsfcf00.grib2
), or else I would simply call the file with the matching time/variable.Thanks!
Beta Was this translation helpful? Give feedback.
All reactions