Skip to content
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

bugfix #1641 develop StatAnalysis list format #1646

Merged
merged 3 commits into from
Jun 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions metplus/wrappers/stat_analysis_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1756,7 +1756,6 @@ def run_stat_analysis_job(self, runtime_settings_dict_list):
# with other wrappers
mp_lists = ['MODEL',
'DESC',
'OBTYPE',
'FCST_LEAD',
'OBS_LEAD',
'FCST_VALID_HOUR',
Expand All @@ -1769,12 +1768,13 @@ def run_stat_analysis_job(self, runtime_settings_dict_list):
'OBS_UNITS',
'FCST_LEVEL',
'OBS_LEVEL',
'OBTYPE',
'VX_MASK',
'INTERP_MTHD',
'INTERP_PNTS',
'FCST_THRESH',
'OBS_THRESH',
'CONV_THRESH',
'COV_THRESH',
'ALPHA',
'LINE_TYPE'
]
Expand All @@ -1793,9 +1793,6 @@ def run_stat_analysis_job(self, runtime_settings_dict_list):
'FCST_INIT_END',
'OBS_INIT_BEG',
'OBS_INIT_END',
'DESC',
'OBTYPE',
'FCST_LEAD'
]
for mp_item in mp_items:
if not runtime_settings_dict.get(mp_item, ''):
Expand Down