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

Feature #2337 DIAG_SOURCE #2338

Merged
merged 3 commits into from
Nov 10, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion data/table_files/met_header_columns_V11.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ V11.0 : MODE : OBJ : VERSION MODEL N_VALID GRID_RES DESC FCST_LEAD FCST_VAL
V11.0 : MODE : CTS : VERSION MODEL N_VALID GRID_RES DESC FCST_LEAD FCST_VALID FCST_ACCUM OBS_LEAD OBS_VALID OBS_ACCUM FCST_RAD FCST_THR OBS_RAD OBS_THR FCST_VAR FCST_UNITS FCST_LEV OBS_VAR OBS_UNITS OBS_LEV OBTYPE FIELD TOTAL FY_OY FY_ON FN_OY FN_ON BASER FMEAN ACC FBIAS PODY PODN POFD FAR CSI GSS HK HSS ODDS

V11.0 : TCST : TCMPR : VERSION AMODEL BMODEL DESC STORM_ID BASIN CYCLONE STORM_NAME INIT LEAD VALID INIT_MASK VALID_MASK LINE_TYPE TOTAL INDEX LEVEL WATCH_WARN INITIALS ALAT ALON BLAT BLON TK_ERR X_ERR Y_ERR ALTK_ERR CRTK_ERR ADLAND BDLAND AMSLP BMSLP AMAX_WIND BMAX_WIND AAL_WIND_34 BAL_WIND_34 ANE_WIND_34 BNE_WIND_34 ASE_WIND_34 BSE_WIND_34 ASW_WIND_34 BSW_WIND_34 ANW_WIND_34 BNW_WIND_34 AAL_WIND_50 BAL_WIND_50 ANE_WIND_50 BNE_WIND_50 ASE_WIND_50 BSE_WIND_50 ASW_WIND_50 BSW_WIND_50 ANW_WIND_50 BNW_WIND_50 AAL_WIND_64 BAL_WIND_64 ANE_WIND_64 BNE_WIND_64 ASE_WIND_64 BSE_WIND_64 ASW_WIND_64 BSW_WIND_64 ANW_WIND_64 BNW_WIND_64 ARADP BRADP ARRP BRRP AMRD BMRD AGUSTS BGUSTS AEYE BEYE ADIR BDIR ASPEED BSPEED ADEPTH BDEPTH NUM_MEMBERS TRACK_SPREAD DIST_MEAN MSLP_SPREAD MAX_WIND_SPREAD
V11.0 : TCST : TCDIAG : VERSION AMODEL BMODEL DESC STORM_ID BASIN CYCLONE STORM_NAME INIT LEAD VALID INIT_MASK VALID_MASK LINE_TYPE TOTAL INDEX SOURCE (N_DIAG) DIAG_[0-9]* VALUE_[0-9]*
V11.0 : TCST : TCDIAG : VERSION AMODEL BMODEL DESC STORM_ID BASIN CYCLONE STORM_NAME INIT LEAD VALID INIT_MASK VALID_MASK LINE_TYPE TOTAL INDEX DIAG_SOURCE (N_DIAG) DIAG_[0-9]* VALUE_[0-9]*
V11.0 : TCST : PROBRIRW : VERSION AMODEL BMODEL DESC STORM_ID BASIN CYCLONE STORM_NAME INIT LEAD VALID INIT_MASK VALID_MASK LINE_TYPE ALAT ALON BLAT BLON INITIALS TK_ERR X_ERR Y_ERR ADLAND BDLAND RIRW_BEG RIRW_END RIRW_WINDOW AWIND_END BWIND_BEG BWIND_END BDELTA BDELTA_MAX BLEVEL_BEG BLEVEL_END (N_THRESH) THRESH_[0-9]* PROB_[0-9]*
43 changes: 8 additions & 35 deletions docs/Users_Guide/config_options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -493,8 +493,8 @@ override the default value set in ConfigConstants.

output_precision = 5;

tmp_dir_1
^^^^^^^^^
tmp_dir
^^^^^^^

The "tmp_dir" entry in ConfigConstants defines the directory for the
temporary files. The directory must exist and be writable. The environment
Expand All @@ -506,8 +506,8 @@ Some tools override the temporary directory by the command line argument

tmp_dir = "/tmp";

message_type_group_map_1
^^^^^^^^^^^^^^^^^^^^^^^^
message_type_group_map
^^^^^^^^^^^^^^^^^^^^^^

The "message_type_group_map" entry is an array of dictionaries, each
containing a "key" string and "val" string. This defines a mapping of
Expand Down Expand Up @@ -2230,17 +2230,6 @@ forecast field:
The "obs_raw_plot", "wvlt_plot", and "object_plot" entries are dictionaries
similar to the "fcst_raw_plot" described above.

tmp_dir_2
^^^^^^^^^

The "tmp_dir" entry is a string specifying the location where temporary
files should be written.

.. code-block:: none

tmp_dir = "/tmp";


output_prefix
^^^^^^^^^^^^^

Expand Down Expand Up @@ -2445,8 +2434,8 @@ combination of the categorical threshold (cat_thresh), neighborhood width
];
}

fcst, obs_1
"""""""""""
fcst, obs
"""""""""

The fcst and obs entries define the fields for which Ensemble-Stat should
compute rank histograms, probability integral transform histograms,
Expand Down Expand Up @@ -3009,8 +2998,8 @@ MODE will be run.

quilt = false;

fcst, obs_2
"""""""""""
fcst, obs
"""""""""

The object definition settings for MODE are contained within the "fcst" and
"obs" entries:
Expand Down Expand Up @@ -3375,22 +3364,6 @@ For example:

message_type = [];

message_type_group_map_2
""""""""""""""""""""""""

Mapping of message type group name to comma-separated list of values.
The default setting defines ANYAIR, ANYSFC, and ONLYSF as groups.
Derive PRMSL only for SURFACE message types.

.. code-block:: none

message_type_group_map = [
{ key = "SURFACE"; val = "ADPSFC,SFCSHP,MSONET"; },
{ key = "ANYAIR"; val = "AIRCAR,AIRCFT"; },
{ key = "ANYSFC"; val = "ADPSFC,SFCSHP,ADPUPA,PROFLR,MSONET"; },
{ key = "ONLYSF"; val = "ADPSFC,SFCSHP"; }
];

station_id
""""""""""

Expand Down
Loading