Skip to content

Commit 3704f78

Browse files
committed
Merge branch 'scn20-46'
2 parents 9c7d664 + 1a2fe4c commit 3704f78

2 files changed

Lines changed: 42 additions & 0 deletions

File tree

autotest/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,8 @@ if(WITH_NOMADS_SUPPORT)
238238
${EXECUTABLE_OUTPUT_PATH}/test_main --run_test=simplenomadsclient/download_1 alaska hrrr_alaska 1 2 0 zip)
239239
add_test(nomads_hrrr_15_hour_zip
240240
${EXECUTABLE_OUTPUT_PATH}/test_main --run_test=simplenomadsclient/download_1 mackay hrrr_conus 15 16 0 zip)
241+
add_test(nomads_hrrr_ext_1_hour_zip
242+
${EXECUTABLE_OUTPUT_PATH}/test_main --run_test=simplenomadsclient/download_1 mackay hrrr_conus_ext 1 2 0 zip)
241243
add_test(nomads_buffer_1
242244
${EXECUTABLE_OUTPUT_PATH}/test_main --run_test=simplenomadsclient/download_1 small gfs_global 1 2 0 zip)
243245
if(NOMADS_EXPER_FORECASTS)

src/ninja/nomads.h

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -591,6 +591,46 @@ static const char *apszNomadsKeys[][11] =
591591
"3 km",
592592
"HRRR ALASKA SUBHOURLY" },
593593
/*
594+
** HRRR Conus Extended
595+
** SCN20-46 adds some extened cycles to HRRR and RAP:
596+
** https://www.weather.gov/media/notification/pdf2/scn20-46rap_v5_hrrr_v4_aab.pdf
597+
**
598+
** The HRRR-*-EXT and RAP-*-EXT handle these models.
599+
*/
600+
{
601+
"hrrr_conus_ext",
602+
"filter_hrrr_2d.pl",
603+
"hrrr.t%02dz.wrfsfcf%02d.grib2",
604+
"hrrr.%s/conus",
605+
NOMADS_GENERIC_DATE,
606+
NOMADS_GENERIC_FCST_HOURS,
607+
"0:48:1",
608+
NOMADS_GENERIC_VAR_LIST,
609+
"2_m_above_ground,10_m_above_ground," \
610+
"entire_atmosphere",
611+
"3 km",
612+
"HRRR CONUS EXT" },
613+
/*
614+
** RAP Extended
615+
*/
616+
{
617+
"rap_conus_ext",
618+
"filter_rap.pl",
619+
"rap.t%02dz.awp130pgrbf%02d.grib2",
620+
"rap.%s",
621+
NOMADS_GENERIC_DATE,
622+
"3:21:3",
623+
"0:51:1",
624+
NOMADS_GENERIC_VAR_LIST,
625+
/*
626+
** The August 2016 TIN changed the level for cloud cover to
627+
** entire_atmosphere. Request both levels so if they change it, we won't
628+
** fail.
629+
*/
630+
NOMADS_GENERIC_LEVELS_LIST ",entire_atmosphere",
631+
"13 km",
632+
"RAP CONUS EXT" },
633+
/*
594634
** RAP
595635
*/
596636
{

0 commit comments

Comments
 (0)