From fc743fb4c3306e81cb1af64b146ca4e39813fbd8 Mon Sep 17 00:00:00 2001 From: Seth Linden Date: Tue, 14 Sep 2021 16:01:10 -0600 Subject: [PATCH] Per issue #1858: replaced obs_quality with obs_quality_inc. Added documentation for obs_quality_exc. SL --- met/docs/Users_Guide/config_options.rst | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/met/docs/Users_Guide/config_options.rst b/met/docs/Users_Guide/config_options.rst index 5c3149b03f..23f67fecda 100644 --- a/met/docs/Users_Guide/config_options.rst +++ b/met/docs/Users_Guide/config_options.rst @@ -1997,20 +1997,37 @@ Percentile value to use when obs_summary = PERC obs_perc_value = 50; -.. _obs_quality: +.. _obs_quality_inc: -:ref:`obs_quality ` +:ref:`obs_quality_inc ` -The "obs_quality" entry specifies the quality flag values that are to be +The "obs_quality_inc" entry specifies the quality flag values that are to be retained and used for verification. An empty list signifies that all point observations should be used, regardless of their quality flag value. The quality flag values will vary depending on the original source of the observations. The quality flag values to retain should be specified as an array of strings, even if the values themselves are numeric. +Note "obs_quality_inc" replaces the older option "obs_quality". .. code-block:: none - obs_quality = [ "1", "2", "3", "9" ]; + obs_quality_inc = [ "1", "2", "3", "9" ]; + + +.. _obs_quality_exc: + +:ref:`obs_quality_exc ` + +The "obs_quality_exc" entry specifies the quality flag values that are to be +ignored and not used for verification. An empty list signifies that all +point observations should be used, regardless of their quality flag value. +The quality flag values will vary depending on the original source of the +observations. The quality flag values to ignore should be specified as +an array of strings, even if the values themselves are numeric. + +.. code-block:: none + + obs_quality_exc = [ "1", "2", "3", "9" ]; .. _met_data_dir: