Skip to content
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
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
8 changes: 8 additions & 0 deletions src/CSET/cset_workflow/meta/verification/rose-meta.conf
Original file line number Diff line number Diff line change
Expand Up @@ -355,3 +355,11 @@ description=Compute Scores Equitable Threat Score.
type=python_boolean
compulsory=true
sort-key=scoresPOD3

[Verification/Scores Categorical]
[template variables=SCORES_CATEGORICAL_PFD]
ns=Verification/Scores Categorical
description=Compute Scores Probability of False Detection.
type=python_boolean
compulsory=true
sort-key=scoresPOD5
1 change: 1 addition & 0 deletions src/CSET/cset_workflow/rose-suite.conf.example
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ POINT_OBS=False
!!POINT_OBS_WMO_BLOCK_STTN_NUMBERS=[]
PRESSURE_LEVELS=[]
SCORES_CATEGORICAL_ETS=False
SCORES_CATEGORICAL_PFD=False
SCORES_CATEGORICAL_POD=False
SCORES_CATEGORICAL_ENTRIES=[]
PRESSURE_LEVEL_FIELDS=[]
Expand Down
2 changes: 2 additions & 0 deletions src/CSET/loaders/verification.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ def _get_scores_timeseries_categorical(conf):
scores_timeseries_categorical.append("pod")
if conf.SCORES_CATEGORICAL_ETS or conf.SCORES_ALL:
scores_timeseries_categorical.append("ets")
if conf.SCORES_CATEGORICAL_PFD or conf.SCORES_ALL:
scores_timeseries_categorical.append("pfd")
return scores_timeseries_categorical


Expand Down
Loading