From 20a288f2ff1d89a7322993dda6874823f266f6d6 Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Thu, 15 Jul 2021 10:44:33 -0600 Subject: [PATCH] Per #1746, fix a couple of typos and tweak wording in the wavelet-stat chapter. --- met/docs/Users_Guide/wavelet-stat.rst | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/met/docs/Users_Guide/wavelet-stat.rst b/met/docs/Users_Guide/wavelet-stat.rst index 47007d162d..19db97d1ed 100644 --- a/met/docs/Users_Guide/wavelet-stat.rst +++ b/met/docs/Users_Guide/wavelet-stat.rst @@ -230,16 +230,18 @@ _______________________ .. code-block:: none - + // Empty list of thresholds cat_thresh = []; + + // Or explicitly set the NA threshold type cat_thresh = [>0.0, >=5.0, NA]; -The **cat_thresh** option defines an array of thresholds for each field defined in the fcst and obs dictionaries. The number of forecast and observation categorical thresholds must match. If set to an empty list the thresholds will not be applied (no binary masking) and all the raw grid-point values will be used for downstream statistics. +The **cat_thresh** option defines an array of thresholds for each field defined in the fcst and obs dictionaries. The number of forecast and observation categorical thresholds must match. If set to an empty list, the thresholds will not be applied (no binary masking) and all the raw grid-point values will be used for downstream statistics. -If the array of threhsolds is an empy list, the application will set the threshold to NA internally and skip applying the thresholds. If the threshold is set to NA explicitly in the list, the application will also set the threshold to NA internally and skip applying the thresholds. +If the array of thresholds is an empty list, the application will set the threshold to NA internally and skip applying the thresholds. If the threshold is set to NA explicitly in the list, the application will also skip applying the threshold. -Since the application has the ability to loop through multiple thresholds (for multiple fields), a user can specify a list of thresholds and include NA at the end of the list in order to produce statistics without applying any threshold for the given variable. +Since the application has the ability to loop through multiple thresholds (for multiple fields), a user can include NA in the list of thresholds to produce statistics for the raw data values for the given field. _______________________