From 7b9ab8cc01c432f3a28c6975387944845e54147e Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Tue, 8 Oct 2024 18:48:25 +0000 Subject: [PATCH] Per #2887, add grid_weight_flag to the list of config options for Grid-Stat and Ensemble-Stat. --- docs/Users_Guide/appendixF.rst | 2 +- docs/Users_Guide/ensemble-stat.rst | 41 ++++++++++++------------ docs/Users_Guide/grid-stat.rst | 51 +++++++++++++++--------------- 3 files changed, 48 insertions(+), 46 deletions(-) diff --git a/docs/Users_Guide/appendixF.rst b/docs/Users_Guide/appendixF.rst index bc051f5a14..17628c7ee5 100644 --- a/docs/Users_Guide/appendixF.rst +++ b/docs/Users_Guide/appendixF.rst @@ -355,7 +355,7 @@ The first argument for the Plot-Data-Plane tool is the gridded data file to be r 'level': 'Surface', 'units': 'None', 'init': '20050807_000000', 'valid': '20050807_120000', 'lead': '120000', 'accum': '120000' - 'grid': {...} } + 'grid': { ... } } DEBUG 1: Creating postscript file: fcst.ps Special Case for Ensemble-Stat, Series-Analysis, and MTD diff --git a/docs/Users_Guide/ensemble-stat.rst b/docs/Users_Guide/ensemble-stat.rst index 73e0b799be..8a2502c525 100644 --- a/docs/Users_Guide/ensemble-stat.rst +++ b/docs/Users_Guide/ensemble-stat.rst @@ -160,29 +160,30 @@ ____________________ .. code-block:: none - model = "FCST"; - desc = "NA"; - obtype = "ANALYS"; - regrid = { ... } - climo_mean = { ... } - climo_stdev = { ... } - climo_cdf = { ... } - obs_window = { beg = -5400; end = 5400; } - mask = { grid = [ "FULL" ]; poly = []; sid = []; } - ci_alpha = [ 0.05 ]; - interp = { field = BOTH; vld_thresh = 1.0; shape = SQUARE; - type = [ { method = NEAREST; width = 1; } ]; } - eclv_points = []; - sid_inc = []; - sid_exc = []; - duplicate_flag = NONE; + model = "FCST"; + desc = "NA"; + obtype = "ANALYS"; + regrid = { ... } + climo_mean = { ... } + climo_stdev = { ... } + climo_cdf = { ... } + obs_window = { beg = -5400; end = 5400; } + mask = { grid = [ "FULL" ]; poly = []; sid = []; } + ci_alpha = [ 0.05 ]; + interp = { field = BOTH; vld_thresh = 1.0; shape = SQUARE; + type = [ { method = NEAREST; width = 1; } ]; } + eclv_points = []; + sid_inc = []; + sid_exc = []; + duplicate_flag = NONE; obs_quality_inc = []; obs_quality_exc = []; - obs_summary = NONE; - obs_perc_value = 50; + obs_summary = NONE; + obs_perc_value = 50; message_type_group_map = [...]; - output_prefix = ""; - version = "VN.N"; + grid_weight_flag = NONE; + output_prefix = ""; + version = "VN.N"; The configuration options listed above are common to many MET tools and are described in :numref:`config_options`. diff --git a/docs/Users_Guide/grid-stat.rst b/docs/Users_Guide/grid-stat.rst index cac539e497..671526e857 100644 --- a/docs/Users_Guide/grid-stat.rst +++ b/docs/Users_Guide/grid-stat.rst @@ -239,31 +239,32 @@ __________________________ .. code-block:: none - model = "FCST"; - desc = "NA"; - obtype = "ANALYS"; - fcst = { ... } - obs = { ... } - regrid = { ... } - climo_mean = { ... } - climo_stdev = { ... } - climo_cdf = { ... } - mask = { grid = [ "FULL" ]; poly = []; } - ci_alpha = [ 0.05 ]; - boot = { interval = PCTILE; rep_prop = 1.0; n_rep = 1000; - rng = "mt19937"; seed = ""; } - interp = { field = BOTH; vld_thresh = 1.0; shape = SQUARE; - type = [ { method = NEAREST; width = 1; } ]; } - censor_thresh = []; - censor_val = []; - mpr_column = []; - mpr_thresh = []; - eclv_points = 0.05; - hss_ec_value = NA; - rank_corr_flag = TRUE; - tmp_dir = "/tmp"; - output_prefix = ""; - version = "VN.N"; + model = "FCST"; + desc = "NA"; + obtype = "ANALYS"; + fcst = { ... } + obs = { ... } + regrid = { ... } + climo_mean = { ... } + climo_stdev = { ... } + climo_cdf = { ... } + mask = { grid = [ "FULL" ]; poly = []; } + ci_alpha = [ 0.05 ]; + boot = { interval = PCTILE; rep_prop = 1.0; n_rep = 1000; + rng = "mt19937"; seed = ""; } + interp = { field = BOTH; vld_thresh = 1.0; shape = SQUARE; + type = [ { method = NEAREST; width = 1; } ]; } + censor_thresh = []; + censor_val = []; + mpr_column = []; + mpr_thresh = []; + eclv_points = 0.05; + hss_ec_value = NA; + rank_corr_flag = TRUE; + grid_weight_flag = NONE; + tmp_dir = "/tmp"; + output_prefix = ""; + version = "VN.N"; The configuration options listed above are common to multiple MET tools and are described in :numref:`config_options`.