diff --git a/metplus/wrappers/pcp_combine_wrapper.py b/metplus/wrappers/pcp_combine_wrapper.py index 5ede0fdbcd..12992f7fa6 100755 --- a/metplus/wrappers/pcp_combine_wrapper.py +++ b/metplus/wrappers/pcp_combine_wrapper.py @@ -366,6 +366,9 @@ def setup_subtract_method(self, time_info, accum, data_src): if self.c_dict.get(f"{data_src}_LEVELS"): field_args['level'] = self.c_dict[f"{data_src}_LEVELS"][0] + if self.c_dict.get(f"{data_src}_OPTIONS"): + field_args['extra'] = self.c_dict[f"{data_src}_OPTIONS"][0] + # if data is GRIB and second lead is 0, then # run PCPCombine in -add mode with just the first file if lead2 == 0 and not self.c_dict[f'{data_src}_USE_ZERO_ACCUM']: