climate-ref-esmvaltool 0.5.5__py3-none-any.whl → 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- climate_ref_esmvaltool/dataset_registry/data.txt +3 -0
- climate_ref_esmvaltool/diagnostics/__init__.py +5 -2
- climate_ref_esmvaltool/diagnostics/base.py +9 -3
- climate_ref_esmvaltool/diagnostics/enso.py +155 -0
- climate_ref_esmvaltool/diagnostics/{sea_ice_area_seasonal_cycle.py → sea_ice_area_basic.py} +13 -8
- climate_ref_esmvaltool/diagnostics/tcre.py +11 -0
- climate_ref_esmvaltool/recipe.py +2 -2
- climate_ref_esmvaltool/recipes.txt +4 -2
- {climate_ref_esmvaltool-0.5.5.dist-info → climate_ref_esmvaltool-0.6.0.dist-info}/METADATA +3 -3
- {climate_ref_esmvaltool-0.5.5.dist-info → climate_ref_esmvaltool-0.6.0.dist-info}/RECORD +13 -12
- {climate_ref_esmvaltool-0.5.5.dist-info → climate_ref_esmvaltool-0.6.0.dist-info}/WHEEL +0 -0
- {climate_ref_esmvaltool-0.5.5.dist-info → climate_ref_esmvaltool-0.6.0.dist-info}/licenses/LICENCE +0 -0
- {climate_ref_esmvaltool-0.5.5.dist-info → climate_ref_esmvaltool-0.6.0.dist-info}/licenses/NOTICE +0 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
ESMValTool/obs4MIPs/GPCP-V2.3/v20180519/pr_GPCP-SG_L3_v2.3_197901-201710.nc 4dd4678b79ef139446c8406da5aae4fed210abb2f2160ef95f6988bf83e4525b
|
|
1
2
|
ESMValTool/OBS/Tier2/CERES-EBAF/OBS_CERES-EBAF_sat_Ed4.2_Amon_rlut_200003-202311.nc ede887cf2d83c848a0d71316799232e4d717662bd2f78d5aa1fc166b41d9953b
|
|
2
3
|
ESMValTool/OBS/Tier2/CERES-EBAF/OBS_CERES-EBAF_sat_Ed4.2_Amon_rlutcs_200003-202311.nc e70e3273092edf01527970693271641fc6474d1974887d7d272e7d656bab83c2
|
|
3
4
|
ESMValTool/OBS/Tier2/CERES-EBAF/OBS_CERES-EBAF_sat_Ed4.2_Amon_rsut_200003-202311.nc e31e648886c4fa9c09686672a06ab18fbba687ff0d6de2891616d4c8b74e215d
|
|
@@ -84,3 +85,5 @@ ESMValTool/OBS/Tier2/OSI-450-sh/OBS_OSI-450-sh_reanaly_v3_OImon_sic_201101-20111
|
|
|
84
85
|
ESMValTool/OBS/Tier2/OSI-450-sh/OBS_OSI-450-sh_reanaly_v3_OImon_sic_201201-201212.nc 86187c3d1174053f2cba6dad010af49ceab77d368aa9314bf53c330b5f2217b9
|
|
85
86
|
ESMValTool/OBS/Tier2/OSI-450-sh/OBS_OSI-450-sh_reanaly_v3_OImon_sic_201301-201312.nc 8820353570884b2ef182caaffb5986ed6268bbe199fd867f61b56e798ca01f1a
|
|
86
87
|
ESMValTool/OBS/Tier2/OSI-450-sh/OBS_OSI-450-sh_reanaly_v3_OImon_sic_201401-201412.nc 7102d0db3dc02c5b0eb0cfe3535ee50171007ef5b43eb9aae1220ac21b0b98e9
|
|
88
|
+
ESMValTool/OBS/Tier2/TROPFLUX/OBS6_TROPFLUX_reanaly_v1_Amon_tauu_197901-201812.nc bf313e661b42341d5090038b501ed1ff09e58201009c3fccfe45b78e116fdd78
|
|
89
|
+
ESMValTool/OBS/Tier2/TROPFLUX/OBS6_TROPFLUX_reanaly_v1_Omon_tos_197901-201812.nc 5f10a5a2aa47f5d21378ad3178bf8e4b577b0ed72ef8402dc04f5ff6fc99ec07
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
from climate_ref_esmvaltool.diagnostics.climate_at_global_warming_levels import ClimateAtGlobalWarmingLevels
|
|
4
4
|
from climate_ref_esmvaltool.diagnostics.cloud_radiative_effects import CloudRadiativeEffects
|
|
5
5
|
from climate_ref_esmvaltool.diagnostics.ecs import EquilibriumClimateSensitivity
|
|
6
|
+
from climate_ref_esmvaltool.diagnostics.enso import ENSOBasicClimatology, ENSOCharacteristics
|
|
6
7
|
from climate_ref_esmvaltool.diagnostics.example import GlobalMeanTimeseries
|
|
7
|
-
from climate_ref_esmvaltool.diagnostics.
|
|
8
|
+
from climate_ref_esmvaltool.diagnostics.sea_ice_area_basic import SeaIceAreaBasic
|
|
8
9
|
from climate_ref_esmvaltool.diagnostics.tcr import TransientClimateResponse
|
|
9
10
|
from climate_ref_esmvaltool.diagnostics.tcre import TransientClimateResponseEmissions
|
|
10
11
|
from climate_ref_esmvaltool.diagnostics.zec import ZeroEmissionCommitment
|
|
@@ -12,9 +13,11 @@ from climate_ref_esmvaltool.diagnostics.zec import ZeroEmissionCommitment
|
|
|
12
13
|
__all__ = [
|
|
13
14
|
"ClimateAtGlobalWarmingLevels",
|
|
14
15
|
"CloudRadiativeEffects",
|
|
16
|
+
"ENSOBasicClimatology",
|
|
17
|
+
"ENSOCharacteristics",
|
|
15
18
|
"EquilibriumClimateSensitivity",
|
|
16
19
|
"GlobalMeanTimeseries",
|
|
17
|
-
"
|
|
20
|
+
"SeaIceAreaBasic",
|
|
18
21
|
"TransientClimateResponse",
|
|
19
22
|
"TransientClimateResponseEmissions",
|
|
20
23
|
"ZeroEmissionCommitment",
|
|
@@ -101,15 +101,17 @@ class ESMValToolDiagnostic(CommandLineDiagnostic):
|
|
|
101
101
|
config = {
|
|
102
102
|
"drs": {
|
|
103
103
|
"CMIP6": "ESGF",
|
|
104
|
+
"obs4MIPs": "ESGF",
|
|
104
105
|
},
|
|
105
106
|
"output_dir": str(definition.to_output_path("executions")),
|
|
106
107
|
"rootpath": {
|
|
107
|
-
"
|
|
108
|
+
"CMIP6": str(climate_data),
|
|
109
|
+
"obs4MIPs": str(climate_data),
|
|
108
110
|
},
|
|
109
111
|
"search_esgf": "never",
|
|
110
112
|
}
|
|
111
113
|
|
|
112
|
-
# Configure the paths to OBS/OBS6/native6 data
|
|
114
|
+
# Configure the paths to OBS/OBS6/native6 and non-compliant obs4MIPs data
|
|
113
115
|
registry = dataset_registry_manager["esmvaltool"]
|
|
114
116
|
data_dir = registry.abspath / "ESMValTool" # type: ignore[attr-defined]
|
|
115
117
|
if not data_dir.exists():
|
|
@@ -129,10 +131,14 @@ class ESMValToolDiagnostic(CommandLineDiagnostic):
|
|
|
129
131
|
config["rootpath"].update( # type: ignore[attr-defined]
|
|
130
132
|
{
|
|
131
133
|
"OBS": str(data_dir / "OBS"),
|
|
132
|
-
"OBS6": str(data_dir / "
|
|
134
|
+
"OBS6": str(data_dir / "OBS"),
|
|
133
135
|
"native6": str(data_dir / "RAWOBS"),
|
|
134
136
|
}
|
|
135
137
|
)
|
|
138
|
+
config["rootpath"]["obs4MIPs"] = [ # type: ignore[index]
|
|
139
|
+
config["rootpath"]["obs4MIPs"], # type: ignore[index]
|
|
140
|
+
str(data_dir),
|
|
141
|
+
]
|
|
136
142
|
|
|
137
143
|
config_dir = definition.to_output_path("config")
|
|
138
144
|
config_dir.mkdir()
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
|
|
3
|
+
import pandas
|
|
4
|
+
import pandas as pd
|
|
5
|
+
|
|
6
|
+
from climate_ref_core.constraints import (
|
|
7
|
+
AddSupplementaryDataset,
|
|
8
|
+
RequireContiguousTimerange,
|
|
9
|
+
RequireFacets,
|
|
10
|
+
RequireOverlappingTimerange,
|
|
11
|
+
)
|
|
12
|
+
from climate_ref_core.datasets import ExecutionDatasetCollection, FacetFilter, SourceDatasetType
|
|
13
|
+
from climate_ref_core.diagnostics import DataRequirement
|
|
14
|
+
from climate_ref_core.pycmec.metric import CMECMetric, MetricCV
|
|
15
|
+
from climate_ref_core.pycmec.output import CMECOutput
|
|
16
|
+
from climate_ref_esmvaltool.diagnostics.base import ESMValToolDiagnostic
|
|
17
|
+
from climate_ref_esmvaltool.recipe import dataframe_to_recipe
|
|
18
|
+
from climate_ref_esmvaltool.types import MetricBundleArgs, OutputBundleArgs, Recipe
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class ENSOBasicClimatology(ESMValToolDiagnostic):
|
|
22
|
+
"""
|
|
23
|
+
Calculate the ENSO CLIVAR metrics - background climatology.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
name = "ENSO Basic Climatology"
|
|
27
|
+
slug = "enso-basic-climatology"
|
|
28
|
+
base_recipe = "ref/recipe_enso_basicclimatology.yml"
|
|
29
|
+
|
|
30
|
+
variables = (
|
|
31
|
+
"pr",
|
|
32
|
+
"tos",
|
|
33
|
+
"tauu",
|
|
34
|
+
)
|
|
35
|
+
data_requirements = (
|
|
36
|
+
DataRequirement(
|
|
37
|
+
source_type=SourceDatasetType.CMIP6,
|
|
38
|
+
filters=(
|
|
39
|
+
FacetFilter(
|
|
40
|
+
facets={
|
|
41
|
+
"variable_id": variables,
|
|
42
|
+
"experiment_id": "historical",
|
|
43
|
+
},
|
|
44
|
+
),
|
|
45
|
+
),
|
|
46
|
+
group_by=("source_id", "member_id", "grid_label"),
|
|
47
|
+
constraints=(
|
|
48
|
+
RequireFacets("variable_id", variables),
|
|
49
|
+
RequireContiguousTimerange(group_by=("instance_id",)),
|
|
50
|
+
RequireOverlappingTimerange(group_by=("instance_id",)),
|
|
51
|
+
),
|
|
52
|
+
),
|
|
53
|
+
)
|
|
54
|
+
facets = ()
|
|
55
|
+
|
|
56
|
+
@staticmethod
|
|
57
|
+
def update_recipe(recipe: Recipe, input_files: pandas.DataFrame) -> None:
|
|
58
|
+
"""Update the recipe."""
|
|
59
|
+
recipe_variables = dataframe_to_recipe(input_files)
|
|
60
|
+
recipe.pop("datasets")
|
|
61
|
+
for diagnostic in recipe["diagnostics"].values():
|
|
62
|
+
for variable in diagnostic["variables"].values():
|
|
63
|
+
variable["additional_datasets"].extend(
|
|
64
|
+
recipe_variables[variable["short_name"]]["additional_datasets"]
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
class ENSOCharacteristics(ESMValToolDiagnostic):
|
|
69
|
+
"""
|
|
70
|
+
Calculate the ENSO CLIVAR metrics - basic ENSO characteristics.
|
|
71
|
+
"""
|
|
72
|
+
|
|
73
|
+
name = "ENSO Characteristics"
|
|
74
|
+
slug = "enso-characteristics"
|
|
75
|
+
base_recipe = "ref/recipe_enso_characteristics.yml"
|
|
76
|
+
|
|
77
|
+
data_requirements = (
|
|
78
|
+
DataRequirement(
|
|
79
|
+
source_type=SourceDatasetType.CMIP6,
|
|
80
|
+
filters=(
|
|
81
|
+
FacetFilter(
|
|
82
|
+
facets={
|
|
83
|
+
"variable_id": "tos",
|
|
84
|
+
"experiment_id": "historical",
|
|
85
|
+
},
|
|
86
|
+
),
|
|
87
|
+
),
|
|
88
|
+
group_by=("source_id", "member_id", "grid_label"),
|
|
89
|
+
constraints=(
|
|
90
|
+
RequireFacets("variable_id", ("tos",)),
|
|
91
|
+
RequireContiguousTimerange(group_by=("instance_id",)),
|
|
92
|
+
RequireOverlappingTimerange(group_by=("instance_id",)),
|
|
93
|
+
AddSupplementaryDataset.from_defaults("areacello", SourceDatasetType.CMIP6),
|
|
94
|
+
),
|
|
95
|
+
),
|
|
96
|
+
)
|
|
97
|
+
facets = ("grid_label", "member_id", "source_id", "region", "metric")
|
|
98
|
+
|
|
99
|
+
@staticmethod
|
|
100
|
+
def update_recipe(recipe: Recipe, input_files: pandas.DataFrame) -> None:
|
|
101
|
+
"""Update the recipe."""
|
|
102
|
+
recipe_variables = dataframe_to_recipe(input_files)
|
|
103
|
+
recipe["datasets"] = recipe_variables["tos"]["additional_datasets"]
|
|
104
|
+
# TODO: update the observational data requirement once available on ESGF.
|
|
105
|
+
# Observations - use only one per run
|
|
106
|
+
recipe["datasets"].append(
|
|
107
|
+
# {
|
|
108
|
+
# "dataset": "NOAA-ERSSTv5",
|
|
109
|
+
# "version": "v5",
|
|
110
|
+
# "project": "OBS6",
|
|
111
|
+
# "type": "reanaly",
|
|
112
|
+
# "tier": 2,
|
|
113
|
+
# }
|
|
114
|
+
{
|
|
115
|
+
"dataset": "TROPFLUX",
|
|
116
|
+
"version": "v1",
|
|
117
|
+
"project": "OBS6",
|
|
118
|
+
"type": "reanaly",
|
|
119
|
+
"tier": 2,
|
|
120
|
+
}
|
|
121
|
+
)
|
|
122
|
+
|
|
123
|
+
@staticmethod
|
|
124
|
+
def format_result(
|
|
125
|
+
result_dir: Path,
|
|
126
|
+
execution_dataset: ExecutionDatasetCollection,
|
|
127
|
+
metric_args: MetricBundleArgs,
|
|
128
|
+
output_args: OutputBundleArgs,
|
|
129
|
+
) -> tuple[CMECMetric, CMECOutput]:
|
|
130
|
+
"""Format the result."""
|
|
131
|
+
metrics = pd.read_csv(
|
|
132
|
+
result_dir / "work" / "diagnostic_metrics" / "plot_script" / "matrix.csv",
|
|
133
|
+
names=["dataset", "metric_name", "metric_value"],
|
|
134
|
+
)
|
|
135
|
+
|
|
136
|
+
# Update the diagnostic bundle arguments with the computed diagnostics.
|
|
137
|
+
metric_args[MetricCV.DIMENSIONS.value] = {
|
|
138
|
+
"json_structure": [
|
|
139
|
+
"region",
|
|
140
|
+
"metric",
|
|
141
|
+
],
|
|
142
|
+
"region": {"global": {}},
|
|
143
|
+
"metric": {metric: {} for metric in metrics.metric_name},
|
|
144
|
+
}
|
|
145
|
+
metric_args[MetricCV.RESULTS.value] = {
|
|
146
|
+
"global": {
|
|
147
|
+
metric_name: metric_value
|
|
148
|
+
for metric_name, metric_value in zip(
|
|
149
|
+
metrics.metric_name,
|
|
150
|
+
metrics.metric_value,
|
|
151
|
+
)
|
|
152
|
+
},
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
return CMECMetric.model_validate(metric_args), CMECOutput.model_validate(output_args)
|
|
@@ -11,13 +11,13 @@ from climate_ref_esmvaltool.recipe import dataframe_to_recipe
|
|
|
11
11
|
from climate_ref_esmvaltool.types import Recipe
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
class
|
|
14
|
+
class SeaIceAreaBasic(ESMValToolDiagnostic):
|
|
15
15
|
"""
|
|
16
16
|
Calculate seasonal cycle and time series of NH and SH sea ice area.
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
-
name = "Sea ice area
|
|
20
|
-
slug = "sea-ice-area-
|
|
19
|
+
name = "Sea ice area basic"
|
|
20
|
+
slug = "sea-ice-area-basic"
|
|
21
21
|
base_recipe = "ref/recipe_ref_sea_ice_area_basic.yml"
|
|
22
22
|
|
|
23
23
|
data_requirements = (
|
|
@@ -44,14 +44,13 @@ class SeaIceAreaSeasonalCycle(ESMValToolDiagnostic):
|
|
|
44
44
|
@staticmethod
|
|
45
45
|
def update_recipe(recipe: Recipe, input_files: pandas.DataFrame) -> None:
|
|
46
46
|
"""Update the recipe."""
|
|
47
|
-
# Overlap between observations and historical experiment.
|
|
48
|
-
timerange = "1995/2014"
|
|
49
|
-
|
|
50
47
|
# Update datasets
|
|
51
48
|
recipe_variables = dataframe_to_recipe(input_files)
|
|
52
49
|
recipe["datasets"] = recipe_variables["siconc"]["additional_datasets"]
|
|
50
|
+
|
|
51
|
+
# Use the timerange from the recipe, as defined in the variable.
|
|
53
52
|
for dataset in recipe["datasets"]:
|
|
54
|
-
dataset
|
|
53
|
+
dataset.pop("timerange")
|
|
55
54
|
|
|
56
55
|
# Update observational datasets
|
|
57
56
|
nh_obs = {
|
|
@@ -65,7 +64,6 @@ class SeaIceAreaSeasonalCycle(ESMValToolDiagnostic):
|
|
|
65
64
|
},
|
|
66
65
|
],
|
|
67
66
|
"tier": 2,
|
|
68
|
-
"timerange": timerange,
|
|
69
67
|
"type": "reanaly",
|
|
70
68
|
"version": "v3",
|
|
71
69
|
}
|
|
@@ -76,3 +74,10 @@ class SeaIceAreaSeasonalCycle(ESMValToolDiagnostic):
|
|
|
76
74
|
diagnostics["siarea_min"]["variables"]["sea_ice_area_sh_feb"]["additional_datasets"] = [sh_obs]
|
|
77
75
|
diagnostics["siarea_seas"]["variables"]["sea_ice_area_nh"]["additional_datasets"] = [nh_obs]
|
|
78
76
|
diagnostics["siarea_seas"]["variables"]["sea_ice_area_sh"]["additional_datasets"] = [sh_obs]
|
|
77
|
+
|
|
78
|
+
# Update the captions.
|
|
79
|
+
dataset = "{dataset}.{ensemble}.{grid}".format(**recipe["datasets"][0])
|
|
80
|
+
for diagnostic in diagnostics.values():
|
|
81
|
+
for script_settings in diagnostic["scripts"].values():
|
|
82
|
+
for plot_settings in script_settings["plots"].values():
|
|
83
|
+
plot_settings["caption"] = plot_settings["caption"].replace("[dataset]", dataset)
|
|
@@ -102,6 +102,17 @@ class TransientClimateResponseEmissions(ESMValToolDiagnostic):
|
|
|
102
102
|
}
|
|
103
103
|
recipe["diagnostics"].pop("barplot")
|
|
104
104
|
|
|
105
|
+
# Update descriptions.
|
|
106
|
+
dataset = tas_esm_1pctCO2["dataset"]
|
|
107
|
+
ensemble = tas_esm_1pctCO2["ensemble"]
|
|
108
|
+
settings = recipe["diagnostics"]["tcre"]["scripts"]["calculate_tcre"]
|
|
109
|
+
settings["caption"] = (
|
|
110
|
+
settings["caption"].replace("MPI-ESM1-2-LR", dataset).replace("r1i1p1f1", ensemble)
|
|
111
|
+
)
|
|
112
|
+
settings["pyplot_kwargs"]["title"] = (
|
|
113
|
+
settings["pyplot_kwargs"]["title"].replace("MPI-ESM1-2-LR", dataset).replace("r1i1p1f1", ensemble)
|
|
114
|
+
)
|
|
115
|
+
|
|
105
116
|
@staticmethod
|
|
106
117
|
def format_result(
|
|
107
118
|
result_dir: Path,
|
climate_ref_esmvaltool/recipe.py
CHANGED
|
@@ -115,8 +115,8 @@ def dataframe_to_recipe(files: pd.DataFrame) -> dict[str, Any]:
|
|
|
115
115
|
return variables
|
|
116
116
|
|
|
117
117
|
|
|
118
|
-
_ESMVALTOOL_COMMIT = "
|
|
119
|
-
_ESMVALTOOL_VERSION = f"2.13.0.
|
|
118
|
+
_ESMVALTOOL_COMMIT = "58fd0b8ece981bc97c4fbd213b11f2228d90db28"
|
|
119
|
+
_ESMVALTOOL_VERSION = f"2.13.0.dev65+g{_ESMVALTOOL_COMMIT[:9]}"
|
|
120
120
|
|
|
121
121
|
_RECIPES = pooch.create(
|
|
122
122
|
path=pooch.os_cache("climate_ref_esmvaltool"),
|
|
@@ -2,7 +2,9 @@ examples/recipe_python.yml ab3f06d269bb2c1368f4dc39da9bcb232fb2adb1fa556ba769e6c
|
|
|
2
2
|
recipe_calculate_gwl_exceedance_stats.yml 5aa266abc9a8029649b689a2b369a47623b0935d609354332ff4148994642d6b
|
|
3
3
|
recipe_ecs.yml 0cc57034fcb64e32015b4ff949ece5df8cdb8c6f493618b50ceded119fb37918
|
|
4
4
|
recipe_tcr.yml 35f9ef035a4e71aff5cac5dd26c49da2162fc00291bf3b0bd16b661b7b2f606b
|
|
5
|
-
recipe_tcre.yml
|
|
5
|
+
recipe_tcre.yml 48fc9e3baf541bbcef7491853ea3a774053771dca33352b41466425faeaa38af
|
|
6
6
|
recipe_zec.yml b0af7f789b7610ab3f29a6617124aa40c40866ead958204fc199eaf82863de51
|
|
7
|
+
ref/recipe_enso_basicclimatology.yml 9ea7deb7ee668e39ac44618b96496d898bd82285c22dcee4fce4695e0c9fa82b
|
|
8
|
+
ref/recipe_enso_characteristics.yml 34c2518b138068ac96d212910b979d54a8fcedee2c0089b5acd56a42c41dc3e4
|
|
7
9
|
ref/recipe_ref_cre.yml 4f35d9639f1008be3b5382a5bd8933a855cb5368ccf5d04a1c70227172e2e82c
|
|
8
|
-
ref/recipe_ref_sea_ice_area_basic.yml
|
|
10
|
+
ref/recipe_ref_sea_ice_area_basic.yml 7d01a8527880663ca28284772f83a8356d9972fb4f022a4000e50a56ce044b09
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: climate-ref-esmvaltool
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: ESMValTool diagnostic provider for the Rapid Evaluation Framework
|
|
5
|
-
Author-email: ESMValTool development team <esmvaltool-dev@listserv.dfn.de>
|
|
6
|
-
License: Apache-2.0
|
|
5
|
+
Author-email: ESMValTool development team <esmvaltool-dev@listserv.dfn.de>, Jared Lewis <jared.lewis@climate-resource.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
7
|
License-File: LICENCE
|
|
8
8
|
License-File: NOTICE
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
climate_ref_esmvaltool/__init__.py,sha256=4WHuuZJvK50Djb831ws_Y2EtFLWicwsLIxhOvRld2BE,994
|
|
2
2
|
climate_ref_esmvaltool/_version.py,sha256=Ed7geC_W9fxIocCdAvK1fk2k-pDt6FGOM_LEgR06-24,94
|
|
3
3
|
climate_ref_esmvaltool/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
climate_ref_esmvaltool/recipe.py,sha256=
|
|
5
|
-
climate_ref_esmvaltool/recipes.txt,sha256=
|
|
4
|
+
climate_ref_esmvaltool/recipe.py,sha256=DWgcQuj58YM2VzRVt2rP3upbXHsqQZ9QihGqCONzAe0,5111
|
|
5
|
+
climate_ref_esmvaltool/recipes.txt,sha256=97Nxkw9aF6c0UiE1js_05MJRcFGEopZordWHqBmNrRQ,965
|
|
6
6
|
climate_ref_esmvaltool/types.py,sha256=luUMNS3LJGJEecVrHRDh5l5ElnQgz7G0auCtA_Jwnno,117
|
|
7
|
-
climate_ref_esmvaltool/dataset_registry/data.txt,sha256=
|
|
8
|
-
climate_ref_esmvaltool/diagnostics/__init__.py,sha256=
|
|
9
|
-
climate_ref_esmvaltool/diagnostics/base.py,sha256=
|
|
7
|
+
climate_ref_esmvaltool/dataset_registry/data.txt,sha256=MRDNDcBNbi-Qg17i_XxTHDBuHfCju7RHxbEwEExn5-o,13344
|
|
8
|
+
climate_ref_esmvaltool/diagnostics/__init__.py,sha256=c340A--rrRHOt52ea9mLKMFVI6qdd-8l0I-jaKL5NoI,1128
|
|
9
|
+
climate_ref_esmvaltool/diagnostics/base.py,sha256=gVNDVZRe7V3OEnNHLdsZ9G8Rz_JqcQdL0tcH_P6cLoc,7868
|
|
10
10
|
climate_ref_esmvaltool/diagnostics/climate_at_global_warming_levels.py,sha256=o5xSAiZJnuMhG3i8lO1QPsN4YSk3s2jhEWi3pdMAJNw,3532
|
|
11
11
|
climate_ref_esmvaltool/diagnostics/cloud_radiative_effects.py,sha256=WdG49r6zDbikpKiM5bFckl3oOwyFgBfARLrYR6OzlPs,2815
|
|
12
12
|
climate_ref_esmvaltool/diagnostics/ecs.py,sha256=7Zb1llwOqW0vs-7j5iri3HWQEuvcgyeh0O0CDlBwrIA,5290
|
|
13
|
+
climate_ref_esmvaltool/diagnostics/enso.py,sha256=dn6_vrNKoBUiMiMGJ8NLHI4ntCnSaK0fXz95f0UKP3E,5359
|
|
13
14
|
climate_ref_esmvaltool/diagnostics/example.py,sha256=F2mazDsSju68v3JE9aU6u4SwszIN3wFR5dRlQExvNns,1981
|
|
14
|
-
climate_ref_esmvaltool/diagnostics/
|
|
15
|
+
climate_ref_esmvaltool/diagnostics/sea_ice_area_basic.py,sha256=PPJTvr97Mgie7iuADT6pZvC8byqTwJ2GhKwcxFVSNLE,3180
|
|
15
16
|
climate_ref_esmvaltool/diagnostics/tcr.py,sha256=v1HwKG6JZwGZ4_lOBWj2YeqT5Ha83HliBqBeuTs-lN0,4668
|
|
16
|
-
climate_ref_esmvaltool/diagnostics/tcre.py,sha256=
|
|
17
|
+
climate_ref_esmvaltool/diagnostics/tcre.py,sha256=s9wl2LEO8qKVoYjLE_Iwfl89jOtP6zH_teplg-yhzz0,5388
|
|
17
18
|
climate_ref_esmvaltool/diagnostics/zec.py,sha256=iB1pO0VGOlXAtTzyQlFN0tMfDfL9Leq1QGVE70TagOM,3925
|
|
18
19
|
climate_ref_esmvaltool/requirements/conda-lock.yml,sha256=i9jv2YX1KylXWl4oJQJWEgD6ZmY5pAsj_cbKAxzudFs,588058
|
|
19
20
|
climate_ref_esmvaltool/requirements/environment.yml,sha256=Pc3Vq0ZGwSEc_bOxDYJsgoro13-YrGWjpdyO1UQwHEM,78
|
|
20
|
-
climate_ref_esmvaltool-0.
|
|
21
|
-
climate_ref_esmvaltool-0.
|
|
22
|
-
climate_ref_esmvaltool-0.
|
|
23
|
-
climate_ref_esmvaltool-0.
|
|
24
|
-
climate_ref_esmvaltool-0.
|
|
21
|
+
climate_ref_esmvaltool-0.6.0.dist-info/METADATA,sha256=qxKslfUjMC9KS4X1MiQrjFWqTIbnbOvQEDY60XNze-Y,2425
|
|
22
|
+
climate_ref_esmvaltool-0.6.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
23
|
+
climate_ref_esmvaltool-0.6.0.dist-info/licenses/LICENCE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
24
|
+
climate_ref_esmvaltool-0.6.0.dist-info/licenses/NOTICE,sha256=4qTlax9aX2-mswYJuVrLqJ9jK1IkN5kSBqfVvYLF3Ws,128
|
|
25
|
+
climate_ref_esmvaltool-0.6.0.dist-info/RECORD,,
|
|
File without changes
|
{climate_ref_esmvaltool-0.5.5.dist-info → climate_ref_esmvaltool-0.6.0.dist-info}/licenses/LICENCE
RENAMED
|
File without changes
|
{climate_ref_esmvaltool-0.5.5.dist-info → climate_ref_esmvaltool-0.6.0.dist-info}/licenses/NOTICE
RENAMED
|
File without changes
|