Skip to content

Commit 0b228c5

Browse files
committed
Pre-PR cleanup
- Remove features not intended for the public app (pygraf interface, RRFS prototype locations, some test settings) - Remove old, replaced bash script scripts/exregional_run_met_gridstat_or_pointstat_vx.sh - Some formatting fixes/remove debugging things
1 parent b62da22 commit 0b228c5

11 files changed

Lines changed: 12 additions & 626 deletions

jobs/JREGIONAL_RUN_MET_GRIDSTAT_OR_POINTSTAT_VX

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ field (or group of fields).
8181
#
8282
#-----------------------------------------------------------------------
8383
#
84-
#$SCRIPTSdir/exregional_run_met_gridstat_or_pointstat_vx.sh || \
8584
python $SCRIPTSdir/exregional_run_met_gridstat_or_pointstat.py --debug || \
8685
print_err_msg_exit "\
8786
Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed."

parm/data_locations.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -250,28 +250,6 @@ RRFS:
250250
file_names:
251251
<<: *rrfs_file_names
252252

253-
RRFS_retro:
254-
hpss:
255-
protocol: htar
256-
archive_format: tar
257-
archive_path:
258-
- /NCEPDEV/emc-meso/2year/emc.lam/rrfs_retro/v1.1.2/2023/{mm}/{dd}
259-
- /NCEPDEV/emc-meso/2year/emc.lam/rrfs_retro/v1.1.5/2024/{mm}/{dd}
260-
- /NCEPDEV/emc-meso/2year/emc.lam/rrfs_retro/v1.1.3/2024/{mm}/{dd}
261-
archive_internal_dir:
262-
- rrfs.{yyyymmdd}/{hh}
263-
archive_file_names:
264-
- grib2_ctrl_{yyyymmdd}{hh}.tar
265-
- grib2_ctrl_{yyyymmdd}{hh}.tar
266-
- grib2_ctrl_{yyyymmdd}{hh}.tar
267-
file_names:
268-
<<: *rrfs_file_names
269-
aws:
270-
protocol: download
271-
url: https://noaa-rrfs-pds.s3.amazonaws.com/retro_output_final/summer/rrfs.{yyyymmdd}/{hh}
272-
file_names:
273-
<<: *rrfs_file_names
274-
275253
HRRR:
276254
hpss:
277255
protocol: htar

parm/metplus/GridStat_or_PointStat.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ OBS_{{METPLUS_TOOL_NAME}}_WINDOW_END = {OBS_WINDOW_END}
676676
{%- elif (input_field_group in ['ASNOW']) %}
677677
{{METPLUS_TOOL_NAME}}_NEIGHBORHOOD_WIDTH = 5
678678
{%- elif (input_field_group in ['REFC', 'RETOP']) %}
679-
{{METPLUS_TOOL_NAME}}_NEIGHBORHOOD_WIDTH = 1,3,5,7
679+
{{METPLUS_TOOL_NAME}}_NEIGHBORHOOD_WIDTH = 1,3,5,7
680680
{%- endif %}
681681

682682
# shape value passed to nbrhd dictionary in the MET config file

scripts/exregional_get_verif_obs.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,18 @@ done
5757
#
5858
#-----------------------------------------------------------------------
5959
#
60-
set -x
60+
LOGLEVEL="INFO"
61+
echo "DEBUG=$DEBUG"
62+
if [ "${DEBUG}" = "True" ]; then
63+
LOGLEVEL="DEBUG"
64+
fi
65+
echo "LOGLEVEL=$LOGLEVEL"
6166

6267
cmd="\
6368
python3 -u ${USHdir}/get_obs.py \
6469
--var_defns_path "${GLOBAL_VAR_DEFNS_FP}" \
6570
--obtype ${OBTYPE} \
66-
--log_level DEBUG \
71+
--log_level ${LOGLEVEL} \
6772
--obs_day ${PDY}"
6873
print_info_msg "
6974
CALLING: ${cmd}"

0 commit comments

Comments
 (0)