Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7922256
Allow maps to plot CORDEX data
sloosvel Jul 9, 2025
c6ffe5c
Add recipe
sloosvel Jul 9, 2025
79df9c2
Add recipe documentation
sloosvel Jul 9, 2025
7f2fd36
Add maintainer
sloosvel Jul 9, 2025
2d01d9f
Add supplementaries
sloosvel Jul 23, 2025
c9801af
Remove duplicate
sloosvel Jul 23, 2025
f75dd05
Remove missing datasets
sloosvel Jul 23, 2025
d260fa6
Set target grid to model
sloosvel Jul 23, 2025
9c9bfa6
Add performance metrics recipe
sloosvel Nov 25, 2025
9b83385
Add performance metric plot for several variables
sloosvel Nov 27, 2025
48cdc2d
Merge branch 'main' of github.com:ESMValGroup/ESMValTool into dev_cor…
bouweandela May 20, 2026
c5cc7e2
Merge branch 'main' of github.com:ESMValGroup/ESMValTool into dev_cor…
bouweandela Jun 3, 2026
048b5bd
updated recipes
ghossh Jun 12, 2026
6cc45b8
Merge branch 'main' of github.com:ESMValGroup/ESMValTool into dev_cor…
bouweandela Jun 23, 2026
7e06aa2
Add CORDEX perfmetrics recipe with more variables
bouweandela Jun 24, 2026
2afb781
Point to branch which supports regridding to CORDEX domain
bouweandela Jun 24, 2026
159e85a
Update branch
bouweandela Jun 24, 2026
a9a8b5c
Improve recipe
bouweandela Jun 24, 2026
ca40871
Add derive
bouweandela Jun 24, 2026
a1427d8
Add reference datasets
bouweandela Jun 24, 2026
3f7d0c1
Search for data on https://esg-dn1.nsc.liu.se/esg-search
bouweandela Jun 24, 2026
0889f63
Restrict timerange
bouweandela Jun 24, 2026
c0994fa
Use later timerange so CCI data is available
bouweandela Jun 24, 2026
6cf57ac
More compact recipe
bouweandela Jun 24, 2026
2255b61
Sort datasets and use longer lines
bouweandela Jun 24, 2026
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
6 changes: 5 additions & 1 deletion esmvaltool/diag_scripts/monitor/multi_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,11 @@ def plot_settings(self) -> dict[str, dict[str, Any]]:
},
"map": {
"function": partial(self.create_2d_plot, "map"),
"coords": (["longitude", "latitude"],),
"coords": (
["longitude", "latitude"],
["grid_longitude", "grid_latitude"],
["projection_x_coordinate", "projection_y_coordinate"],
),
"provenance": {
"authors": ["schlund_manuel"],
"caption": "Map plot of {long_name} of dataset {alias}.",
Expand Down
Loading