-
Notifications
You must be signed in to change notification settings - Fork 14
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 several NCEP grids #239
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- HRRR 3 km - NAM 12 km - 130 (RAP 13 km) - 132 (SREF 16 km) - 187 (RTMA 2.5 km) - 197 (CONUS NDFD 5 km) - 236 (CONUS 40 km) - Grid descriptions for NCEP grids 2, 3, 4, 45, 98, 126, 184, 194, 221, 230, 236, 242, 249
The official grid definition
https://www.nco.ncep.noaa.gov/pmb/docs/on388/tableb.html
is based on the grib1 standard which has its precision limited to
millidegrees. The grib2 standard uses microdegree precision.
Using wgrib2 to regrid the new grids, you want the resultant grid
definition match the official products exactly. This can be checked by
wgrib2 FILE -checksum 3. If the grid definition doesn't match
exactly, wgrib2 will not average fields (outside of -rpn).
So this welcome change needs to be checked with existing official
grib2 files. Perhaps check with the model developers to get their
(un)documented grid definitions. (This is an EMC task.) Wesley
…On Thu, Aug 22, 2024 at 7:15 PM Austin Cross ***@***.***> wrote:
Add standard NCEP grids:
- HRRR 3 km
- NAM 12 km
- 130 (RAP 13 km)
- 132 (SREF 16 km)
- 187 (RTMA 2.5 km)
- 197 (CONUS NDFD 5 km)
- 236 (CONUS 40 km)
Add grid description comments for NCEP grids 2, 3, 4, 45, 98, 126, 184,
194, 221, 230, 236, 242, 249
From some of our local work here at NCEP/Aviation Weather Center
------------------------------
You can view, comment on, or merge this pull request online at:
#239
Commit Summary
- c3262f8
<c3262f8>
Add NCEP grids
- aa01294
<aa01294>
Mixed tab indent fix
File Changes
(1 file <https://github.com/NOAA-EMC/wgrib2/pull/239/files>)
- *M* wgrib2/ncep_grids.c
<https://github.com/NOAA-EMC/wgrib2/pull/239/files#diff-884f3c3add5a63640aa1d4035dff38536c067dc785040183dc5c405d2fffe5ba>
(82)
Patch Links:
- https://github.com/NOAA-EMC/wgrib2/pull/239.patch
- https://github.com/NOAA-EMC/wgrib2/pull/239.diff
—
Reply to this email directly, view it on GitHub
<#239>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEIB7ZV5WY4T237VLPGTWDTZSZWJ5AVCNFSM6AAAAABM7CXC56VHI2DSMVQWIX3LMV43ASLTON2WKOZSGQ4DCOJWGM3TQNA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Thanks for the contribution. Are these new grid definitions used in any official products? If so, which ones? We would like to take a look. |
Yes, the new grids are used by officially distributed model output from NCO. AWC in particular uses the HRRR, RTMA, and NDFD definitions to place data on a common grid. |
AlysonStahl-NOAA
previously approved these changes
Sep 26, 2024
But tests are needed... |
@AlysonStahl-NOAA and @webisu will assist with testing... |
edwardhartnett
approved these changes
Oct 28, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add standard NCEP grids:
Add grid description comments for NCEP grids 2, 3, 4, 45, 98, 126, 184, 194, 221, 230, 236, 242, 249
From some of our local work here at NCEP/Aviation Weather Center