-
Notifications
You must be signed in to change notification settings - Fork 89
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
Add sub-hourly support to grib_to_netcdf #219
base: develop
Are you sure you want to change the base?
Conversation
Hi @joobog, |
Thanks @iainrussell
|
Hmm, step_60m.grib does indeed show an interesting case. The units in sub-hourly are determined dynamically. This means that to get grib_to_netcdf right, we have to scan the entire file and select the smallest unit (which is a costly operation), or we can specify the time always in seconds, which is the smallest unit supported by grib_to_netcdf. |
Or perhaps use the keys that return the step in the units it was originally encoded in? I guess it would generally be the case that for a given GRIB file all the messages would be encoded with the same step units. The problem only arises because we try to convert the units (unless the step is zero). |
No description provided.