Skip to content

Commit 0972f3b

Browse files
authored
revise assessment categories (#190)
1 parent f6e31a7 commit 0972f3b

File tree

3 files changed

+19
-30
lines changed

3 files changed

+19
-30
lines changed

.github/ISSUE_TEMPLATE/notebook.yml

+7-15
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,13 @@ body:
3030
description: Choose the CIM quality assessment category.
3131
multiple: false
3232
options:
33-
- Climate And Weather Extremes
34-
- Climate Impact Indicators
35-
- Climate Monitoring
36-
- Consistency Assessment
37-
- Data Completeness
38-
- Forecast Skill
39-
- Intercomparison
40-
- Mean
41-
- Model Performance
42-
- Resolution
43-
- Timeliness
44-
- Trend Assessment
45-
- Uncertainty
46-
- Validation
47-
- Variability
33+
- completeness
34+
- consistency
35+
- extremes-detection
36+
- resolution
37+
- timeliness
38+
- uncertainty-quality-flags
39+
- validation
4840
validations:
4941
required: true
5042

README.md

+4-12
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,13 @@ Data types:
3636

3737
Assessment categories:
3838

39-
- climate-and-weather-extremes
40-
- climate-impact-indicators
41-
- climate-monitoring
42-
- consistency-assessment
43-
- data-completeness
44-
- forecast-skill
45-
- intercomparison
46-
- mean
47-
- model-performance
39+
- completeness
40+
- consistency
41+
- extremes-detection
4842
- resolution
4943
- timeliness
50-
- trend-assessment
51-
- uncertainty
44+
- uncertainty-quality-flags
5245
- validation
53-
- variability
5446

5547
## License
5648

scripts/validate-filenames.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@
2323
}
2424

2525
ASSESSMENT_CATEGORIES = (
26+
"completeness",
27+
"consistency",
28+
"extremes-detection",
29+
"resolution",
30+
"timeliness",
31+
"uncertainty-quality-flags",
32+
"validation",
33+
# Deprecated
2634
"climate-and-weather-extremes",
2735
"climate-impact-indicators",
2836
"climate-monitoring",
@@ -32,11 +40,8 @@
3240
"intercomparison",
3341
"mean",
3442
"model-performance",
35-
"resolution",
36-
"timeliness",
3743
"trend-assessment",
3844
"uncertainty",
39-
"validation",
4045
"variability",
4146
)
4247

0 commit comments

Comments
 (0)