diff --git a/backend/src/ref_backend/models.py b/backend/src/ref_backend/models.py
index 7f0b06d..98d9a68 100644
--- a/backend/src/ref_backend/models.py
+++ b/backend/src/ref_backend/models.py
@@ -554,6 +554,13 @@ class Facet(BaseModel):
values: list[str]
+# ``kind`` is a CV dimension but is surfaced as a dedicated ``kind`` field on each value and
+# excluded from the per-item ``dimensions`` mapping (see climate_ref ScalarValue.dimensions).
+# Offering it as a facet would let callers filter on a key that never appears in item dimensions,
+# so it is excluded to keep facets a subset of the item dimensions.
+NON_FACET_DIMENSIONS = frozenset({"kind"})
+
+
@define
class AnnotatedScalarValue:
value: models.ScalarMetricValue
@@ -623,7 +630,11 @@ def build_scalar_from_reader(
for item in collection.items
]
- facets = [Facet(key=f.key, values=list(f.values)) for f in collection.facets]
+ facets = [
+ Facet(key=f.key, values=list(f.values))
+ for f in collection.facets
+ if f.key not in NON_FACET_DIMENSIONS
+ ]
return MetricValueCollection(
data=all_data,
@@ -659,7 +670,11 @@ def build_series_from_reader(
)
)
- facets = [Facet(key=f.key, values=list(f.values)) for f in collection.facets]
+ facets = [
+ Facet(key=f.key, values=list(f.values))
+ for f in collection.facets
+ if f.key not in NON_FACET_DIMENSIONS
+ ]
return MetricValueCollection(
data=all_data,
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/db/climate_ref.db b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/db/climate_ref.db
index e6c4cd9..7145339 100644
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/db/climate_ref.db and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/db/climate_ref.db differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png
deleted file mode 100644
index 8a1ab26..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png
deleted file mode 100644
index 9bae2da..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png
deleted file mode 100644
index 6756929..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png
deleted file mode 100644
index e947c02..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.nc
deleted file mode 100644
index 9111321..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.nc
deleted file mode 100644
index e464689..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.nc
deleted file mode 100644
index 7a7cbcb..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.nc
deleted file mode 100644
index e503064..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/output.json
deleted file mode 100644
index f56bcf0..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/output.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.nc": {
- "filename": "executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.nc",
- "long_name": "Multimodel mean of Precipitation at 1.5 $^\\circ$ C",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.nc": {
- "filename": "executions/recipe_20251001_162136/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.nc",
- "long_name": "Multimodel mean of Precipitation at 2.0 $^\\circ$ C",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/calculate_gwl_exceedance_years/gwl_exceedance_calculation/GWL_exceedance_years.csv": {
- "filename": "executions/recipe_20251001_162136/work/calculate_gwl_exceedance_years/gwl_exceedance_calculation/GWL_exceedance_years.csv",
- "long_name": "CSV file of Global Warming level Exceedances",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.nc": {
- "filename": "executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.nc",
- "long_name": "Multimodel mean of Temperature at 1.5 $^\\circ$ C",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.nc": {
- "filename": "executions/recipe_20251001_162136/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.nc",
- "long_name": "Multimodel mean of Temperature at 2.0 $^\\circ$ C",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png": {
- "filename": "executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png",
- "long_name": "Multimodel mean of Precipitation at 1.5 $^\\circ$ C",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png": {
- "filename": "executions/recipe_20251001_162136/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png",
- "long_name": "Multimodel mean of Precipitation at 2.0 $^\\circ$ C",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png": {
- "filename": "executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png",
- "long_name": "Multimodel mean of Temperature at 1.5 $^\\circ$ C",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png": {
- "filename": "executions/recipe_20251001_162136/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png",
- "long_name": "Multimodel mean of Temperature at 2.0 $^\\circ$ C",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/diagnostic.json
new file mode 100644
index 0000000..a9e0fa1
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/diagnostic.json
@@ -0,0 +1,32 @@
+{
+ "DIMENSIONS": {
+ "experiment_id": {
+ "ssp126": {}
+ },
+ "global_warming_level": {
+ "1.5": {},
+ "2.0": {}
+ },
+ "json_structure": [
+ "experiment_id",
+ "global_warming_level",
+ "metric"
+ ],
+ "metric": {
+ "exceedance_year": {}
+ }
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {
+ "ssp126": {
+ "1.5": {
+ "exceedance_year": 2031
+ },
+ "2.0": {
+ "exceedance_year": 2074
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png
new file mode 100644
index 0000000..719d67d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png
new file mode 100644
index 0000000..e53d7fd
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png
new file mode 100644
index 0000000..234a15f
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png
new file mode 100644
index 0000000..ffebecb
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/calculate_gwl_exceedance_years/gwl_exceedance_calculation/GWL_exceedance_years.csv b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/work/calculate_gwl_exceedance_years/gwl_exceedance_calculation/GWL_exceedance_years.csv
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/executions/recipe_20251001_162136/work/calculate_gwl_exceedance_years/gwl_exceedance_calculation/GWL_exceedance_years.csv
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/work/calculate_gwl_exceedance_years/gwl_exceedance_calculation/GWL_exceedance_years.csv
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/output.json
new file mode 100644
index 0000000..562eb4e
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/output.json
@@ -0,0 +1,101 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140604/work/calculate_gwl_exceedance_years/gwl_exceedance_calculation/GWL_exceedance_years.csv": {
+ "filename": "executions/recipe_20260716_140604/work/calculate_gwl_exceedance_years/gwl_exceedance_calculation/GWL_exceedance_years.csv",
+ "long_name": "CSV file of Global Warming level Exceedances",
+ "description": "",
+ "dimensions": {}
+ },
+ "executions/recipe_20260716_140604/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.nc": {
+ "filename": "executions/recipe_20260716_140604/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.nc",
+ "long_name": "Multimodel mean of Precipitation at 1.5 $^\\circ$ C",
+ "description": "",
+ "dimensions": {
+ "statistic": "mean",
+ "variable_id": "pr"
+ }
+ },
+ "executions/recipe_20260716_140604/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.nc": {
+ "filename": "executions/recipe_20260716_140604/work/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.nc",
+ "long_name": "Multimodel mean of Precipitation at 2.0 $^\\circ$ C",
+ "description": "",
+ "dimensions": {
+ "statistic": "mean",
+ "variable_id": "pr"
+ }
+ },
+ "executions/recipe_20260716_140604/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.nc": {
+ "filename": "executions/recipe_20260716_140604/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.nc",
+ "long_name": "Multimodel mean of Temperature at 1.5 $^\\circ$ C",
+ "description": "",
+ "dimensions": {
+ "statistic": "mean",
+ "variable_id": "tas"
+ }
+ },
+ "executions/recipe_20260716_140604/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.nc": {
+ "filename": "executions/recipe_20260716_140604/work/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.nc",
+ "long_name": "Multimodel mean of Temperature at 2.0 $^\\circ$ C",
+ "description": "",
+ "dimensions": {
+ "statistic": "mean",
+ "variable_id": "tas"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png": {
+ "filename": "executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_1.5.png",
+ "long_name": "Multimodel mean of Precipitation at 1.5 $^\\circ$ C",
+ "description": "",
+ "dimensions": {
+ "statistic": "mean",
+ "variable_id": "pr"
+ }
+ },
+ "executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png": {
+ "filename": "executions/recipe_20260716_140604/plots/gwl_mean_plots_pr/plot_gwl_stats/CMIP6_mm_mean_2.0.png",
+ "long_name": "Multimodel mean of Precipitation at 2.0 $^\\circ$ C",
+ "description": "",
+ "dimensions": {
+ "statistic": "mean",
+ "variable_id": "pr"
+ }
+ },
+ "executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png": {
+ "filename": "executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_1.5.png",
+ "long_name": "Multimodel mean of Temperature at 1.5 $^\\circ$ C",
+ "description": "",
+ "dimensions": {
+ "statistic": "mean",
+ "variable_id": "tas"
+ }
+ },
+ "executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png": {
+ "filename": "executions/recipe_20260716_140604/plots/gwl_mean_plots_tas/plot_gwl_stats/CMIP6_mm_mean_2.0.png",
+ "long_name": "Multimodel mean of Temperature at 2.0 $^\\circ$ C",
+ "description": "",
+ "dimensions": {
+ "statistic": "mean",
+ "variable_id": "tas"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/executions/recipe_20260716_140604/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/ssp126_g1_v1_063f4879/1/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png
deleted file mode 100644
index a17dd9f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png
deleted file mode 100644
index d230c11..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png
deleted file mode 100644
index 236e9cb..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_2013-2014.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_2013-2014.nc
deleted file mode 100644
index 79d2c96..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_2013-2014.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/output.json
deleted file mode 100644
index 2448c45..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/output.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162136/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_2013-2014.nc": {
- "filename": "executions/recipe_20251001_162136/work/fire_evaluation/fire_evaluation/CMIP6_ACCESS-ESM1-5_Amon_historical_r1i1p1f1_vpd_gn_2013-2014.nc",
- "long_name": "",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png": {
- "filename": "executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/burnt_fraction_ACCESS-ESM1-5_historical_2013_2014.png",
- "long_name": "Burnt area fraction for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 2013/2014 as computed with the ConFire model (Jones et al., 2024).",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png": {
- "filename": "executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fire_weather_control_ACCESS-ESM1-5_historical_2013_2014.png",
- "long_name": "Fire weather control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 2013/2014 as computed with the ConFire model (Jones et al., 2024).",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png": {
- "filename": "executions/recipe_20251001_162136/plots/fire_evaluation/fire_evaluation/fuel_load_continuity_control_ACCESS-ESM1-5_historical_2013_2014.png",
- "long_name": "Fuel load continuity control for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 2013/2014 as computed with the ConFire model (Jones et al., 2024).",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/index.html
deleted file mode 100644
index 3c6ef96..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/index.html
+++ /dev/null
@@ -1,635 +0,0 @@
-
-
-
-
-
-
-
- Recipe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Model evaluation with focus on the cloud radiative effect.
-
-
- Plot climatologies and zonal mean profiles of cloud radiative effects
-(sw + lw) for the REF.
-
-
-Authors
-
-
-
-Maintainers
-
-
-
-Projects
-
-
-
-References
-
-
-
-
-
-
-
-
-
-
-
- All
-
-
-
- Plot_Maps
-
-
-
- Plot_Profiles
-
-
-
-
-
-
-
-
-
Plot_Maps
-
Plot lwcre climatology maps including reference datasets.
-
-
-
-
-
Plot Maps: Plot
-
-
-
-
-
-
-
-
-
-
-
-
-
Data files Show/Hide
-
-
-
-
-
-
-
-
-
-
-
Plot_Profiles
-
Plot lwcre zonal mean including reference datasets.
-
-
-
-
-
Plot Profiles: Plot
-
-
-
-
-
-
-
-
-
-
-
-
-
Data files Show/Hide
-
-
-
-
-
-
-
-
-
-
- Files
-
-
- main_log.txt |
- main_log_debug.txt |
- recipe.yml |
- figures |
- data
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon.png
deleted file mode 100644
index 9f7e0a5..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon.png
deleted file mode 100644
index f0a5618..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.png
deleted file mode 100644
index c7422ef..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.png
deleted file mode 100644
index 10cd4bb..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_bottom.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_bottom.nc
deleted file mode 100644
index 72cb0d5..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_bottom.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_left.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_left.nc
deleted file mode 100644
index adbd465..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_left.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_right.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_right.nc
deleted file mode 100644
index d0b9498..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_right.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_bottom.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_bottom.nc
deleted file mode 100644
index 8d49bf1..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_bottom.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_left.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_left.nc
deleted file mode 100644
index a4a44dc..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_left.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_right.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_right.nc
deleted file mode 100644
index 3f2527a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_right.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.nc
deleted file mode 100644
index 6233286..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.nc
deleted file mode 100644
index 85a2229..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/output.json
deleted file mode 100644
index 8483e50..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/output.json
+++ /dev/null
@@ -1,95 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_bottom.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_bottom.nc",
- "long_name": "Map plot of TOA Longwave Cloud Radiative Effect of dataset CMIP6.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_left.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_left.nc",
- "long_name": "Map plot of TOA Longwave Cloud Radiative Effect of dataset CMIP6.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_right.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon_top_right.nc",
- "long_name": "Map plot of TOA Longwave Cloud Radiative Effect of dataset OBS.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_bottom.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_bottom.nc",
- "long_name": "Map plot of TOA Shortwave Cloud Radiative Effect of dataset CMIP6.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_left.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_left.nc",
- "long_name": "Map plot of TOA Shortwave Cloud Radiative Effect of dataset CMIP6.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_right.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon_top_right.nc",
- "long_name": "Map plot of TOA Shortwave Cloud Radiative Effect of dataset OBS.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.nc",
- "long_name": "TOA Longwave Cloud Radiative Effect vs. latitude for various datasets.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.nc",
- "long_name": "TOA Shortwave Cloud Radiative Effect vs. latitude for various datasets.",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162136/plots/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon.png": {
- "filename": "executions/recipe_20251001_162136/plots/plot_maps/plot/map_lwcre_ACCESS-ESM1-5_Amon.png",
- "long_name": "Map plot of TOA Longwave Cloud Radiative Effect of dataset CMIP6.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/plots/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon.png": {
- "filename": "executions/recipe_20251001_162136/plots/plot_maps/plot/map_swcre_ACCESS-ESM1-5_Amon.png",
- "long_name": "Map plot of TOA Shortwave Cloud Radiative Effect of dataset CMIP6.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.png": {
- "filename": "executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_lwcre_ambiguous_dataset_Amon.png",
- "long_name": "TOA Longwave Cloud Radiative Effect vs. latitude for various datasets.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.png": {
- "filename": "executions/recipe_20251001_162136/plots/plot_profiles/plot/variable_vs_lat_swcre_ambiguous_dataset_Amon.png",
- "long_name": "TOA Shortwave Cloud Radiative Effect vs. latitude for various datasets.",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/executions/recipe_20251001_162136/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/series.json
deleted file mode 100644
index 3fd063d..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/series.json
+++ /dev/null
@@ -1,766 +0,0 @@
-[
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "lwcre zonal mean"
- },
- "values": [
- 0.2133682370185852,
- 0.2133682370185852,
- 0.2133682370185852,
- 0.2133682370185852,
- 0.27338072657585144,
- 4.540886402130127,
- 4.540886402130127,
- 4.540886402130127,
- 4.540886402130127,
- 4.540886402130127,
- 4.540886402130127,
- 4.540886402130127,
- 4.540886402130127,
- 4.540886402130127,
- 4.985192775726318,
- 16.495166778564453,
- 16.495166778564453,
- 16.495166778564453,
- 16.495166778564453,
- 16.495166778564453,
- 16.495166778564453,
- 16.495166778564453,
- 16.495166778564453,
- 16.495166778564453,
- 17.354984283447266,
- 31.803178787231445,
- 31.803178787231445,
- 31.803178787231445,
- 31.803178787231445,
- 31.803178787231445,
- 31.803178787231445,
- 31.803178787231445,
- 31.803178787231445,
- 31.803178787231445,
- 31.983375549316406,
- 34.433353424072266,
- 34.433353424072266,
- 34.433353424072266,
- 34.433353424072266,
- 34.433353424072266,
- 34.433353424072266,
- 34.433353424072266,
- 34.433353424072266,
- 34.433353424072266,
- 34.19972229003906,
- 31.21919059753418,
- 31.21919059753418,
- 31.21919059753418,
- 31.21919059753418,
- 31.21919059753418,
- 31.21919059753418,
- 31.21919059753418,
- 31.21919059753418,
- 31.21919059753418,
- 30.6253719329834,
- 22.509449005126953,
- 22.509449005126953,
- 22.509449005126953,
- 22.509449005126953,
- 22.509449005126953,
- 22.509449005126953,
- 22.509449005126953,
- 22.509449005126953,
- 22.509449005126953,
- 22.251930236816406,
- 17.86981773376465,
- 17.86981773376465,
- 17.86981773376465,
- 17.86981773376465,
- 17.86981773376465,
- 17.86981773376465,
- 17.86981773376465,
- 17.86981773376465,
- 17.86981773376465,
- 18.23841667175293,
- 28.056936264038086,
- 28.056936264038086,
- 28.056936264038086,
- 28.056936264038086,
- 28.056936264038086,
- 28.056936264038086,
- 28.056936264038086,
- 28.056936264038086,
- 28.056936264038086,
- 28.133020401000977,
- 34.119483947753906,
- 34.119483947753906,
- 34.119483947753906,
- 34.119483947753906,
- 34.119483947753906,
- 34.119483947753906,
- 34.119483947753906,
- 34.119483947753906,
- 34.119483947753906,
- 34.119483947753906,
- 31.287128448486328,
- 31.251131057739258,
- 31.251131057739258,
- 31.251131057739258,
- 31.251131057739258,
- 31.251131057739258,
- 31.251131057739258,
- 31.251131057739258,
- 31.251131057739258,
- 31.251131057739258,
- 18.962499618530273,
- 18.50116539001465,
- 18.50116539001465,
- 18.50116539001465,
- 18.50116539001465,
- 18.50116539001465,
- 18.50116539001465,
- 18.50116539001465,
- 18.50116539001465,
- 18.50116539001465,
- 20.966053009033203,
- 21.11090087890625,
- 21.11090087890625,
- 21.11090087890625,
- 21.11090087890625,
- 21.11090087890625,
- 21.11090087890625,
- 21.11090087890625,
- 21.11090087890625,
- 21.11090087890625,
- 27.579532623291016,
- 28.052825927734375,
- 28.052825927734375,
- 28.052825927734375,
- 28.052825927734375,
- 28.052825927734375,
- 28.052825927734375,
- 28.052825927734375,
- 28.052825927734375,
- 28.052825927734375,
- 27.374168395996094,
- 27.32097053527832,
- 27.32097053527832,
- 27.32097053527832,
- 27.32097053527832,
- 27.32097053527832,
- 27.32097053527832,
- 27.32097053527832,
- 27.32097053527832,
- 27.32097053527832,
- 26.427932739257812,
- 26.36225128173828,
- 26.36225128173828,
- 26.36225128173828,
- 26.36225128173828,
- 26.36225128173828,
- 26.36225128173828,
- 26.36225128173828,
- 26.36225128173828,
- 26.36225128173828,
- 18.932859420776367,
- 18.490732192993164,
- 18.490732192993164,
- 18.490732192993164,
- 18.490732192993164,
- 18.490732192993164,
- 18.490732192993164,
- 18.490732192993164,
- 18.490732192993164,
- 18.490732192993164,
- 12.078667640686035,
- 11.831151008605957,
- 11.831151008605957,
- 11.831151008605957,
- 11.831151008605957,
- 11.831151008605957,
- 11.831151008605957,
- 11.831151008605957,
- 11.831151008605957,
- 11.831151008605957,
- 9.461978912353516,
- 9.42866325378418,
- 9.42866325378418,
- 9.42866325378418,
- 9.42866325378418
- ],
- "index": [
- -89.5,
- -88.5,
- -87.5,
- -86.5,
- -85.5,
- -84.5,
- -83.5,
- -82.5,
- -81.5,
- -80.5,
- -79.5,
- -78.5,
- -77.5,
- -76.5,
- -75.5,
- -74.5,
- -73.5,
- -72.5,
- -71.5,
- -70.5,
- -69.5,
- -68.5,
- -67.5,
- -66.5,
- -65.5,
- -64.5,
- -63.5,
- -62.5,
- -61.5,
- -60.5,
- -59.5,
- -58.5,
- -57.5,
- -56.5,
- -55.5,
- -54.5,
- -53.5,
- -52.5,
- -51.5,
- -50.5,
- -49.5,
- -48.5,
- -47.5,
- -46.5,
- -45.5,
- -44.5,
- -43.5,
- -42.5,
- -41.5,
- -40.5,
- -39.5,
- -38.5,
- -37.5,
- -36.5,
- -35.5,
- -34.5,
- -33.5,
- -32.5,
- -31.5,
- -30.5,
- -29.5,
- -28.5,
- -27.5,
- -26.5,
- -25.5,
- -24.5,
- -23.5,
- -22.5,
- -21.5,
- -20.5,
- -19.5,
- -18.5,
- -17.5,
- -16.5,
- -15.5,
- -14.5,
- -13.5,
- -12.5,
- -11.5,
- -10.5,
- -9.5,
- -8.5,
- -7.5,
- -6.5,
- -5.5,
- -4.5,
- -3.5,
- -2.5,
- -1.5,
- -0.5,
- 0.5,
- 1.5,
- 2.5,
- 3.5,
- 4.5,
- 5.5,
- 6.5,
- 7.5,
- 8.5,
- 9.5,
- 10.5,
- 11.5,
- 12.5,
- 13.5,
- 14.5,
- 15.5,
- 16.5,
- 17.5,
- 18.5,
- 19.5,
- 20.5,
- 21.5,
- 22.5,
- 23.5,
- 24.5,
- 25.5,
- 26.5,
- 27.5,
- 28.5,
- 29.5,
- 30.5,
- 31.5,
- 32.5,
- 33.5,
- 34.5,
- 35.5,
- 36.5,
- 37.5,
- 38.5,
- 39.5,
- 40.5,
- 41.5,
- 42.5,
- 43.5,
- 44.5,
- 45.5,
- 46.5,
- 47.5,
- 48.5,
- 49.5,
- 50.5,
- 51.5,
- 52.5,
- 53.5,
- 54.5,
- 55.5,
- 56.5,
- 57.5,
- 58.5,
- 59.5,
- 60.5,
- 61.5,
- 62.5,
- 63.5,
- 64.5,
- 65.5,
- 66.5,
- 67.5,
- 68.5,
- 69.5,
- 70.5,
- 71.5,
- 72.5,
- 73.5,
- 74.5,
- 75.5,
- 76.5,
- 77.5,
- 78.5,
- 79.5,
- 80.5,
- 81.5,
- 82.5,
- 83.5,
- 84.5,
- 85.5,
- 86.5,
- 87.5,
- 88.5,
- 89.5
- ],
- "index_name": "lat",
- "attributes": {
- "caption": "TOA Longwave Cloud Radiative Effect vs. latitude for various datasets.",
- "values_name": "lwcre",
- "index_name": "lat",
- "value_long_name": "TOA Longwave Cloud Radiative Effect",
- "index_standard_name": "latitude",
- "value_units": "W m-2",
- "index_units": "degrees_north"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "swcre zonal mean"
- },
- "values": [
- 0.15217791497707367,
- 0.15217791497707367,
- 0.15217791497707367,
- 0.15217791497707367,
- 0.15332770347595215,
- 0.23509778082370758,
- 0.23509778082370758,
- 0.23509778082370758,
- 0.23509778082370758,
- 0.23509778082370758,
- 0.23509778082370758,
- 0.23509778082370758,
- 0.23509778082370758,
- 0.23509778082370758,
- -0.07275979965925217,
- -8.047957420349121,
- -8.047957420349121,
- -8.047957420349121,
- -8.047957420349121,
- -8.047957420349121,
- -8.047957420349121,
- -8.047957420349121,
- -8.047957420349121,
- -8.047957420349121,
- -10.283560752868652,
- -47.85014724731445,
- -47.85014724731445,
- -47.85014724731445,
- -47.85014724731445,
- -47.85014724731445,
- -47.85014724731445,
- -47.85014724731445,
- -47.85014724731445,
- -47.85014724731445,
- -48.682090759277344,
- -59.99336242675781,
- -59.99336242675781,
- -59.99336242675781,
- -59.99336242675781,
- -59.99336242675781,
- -59.99336242675781,
- -59.99336242675781,
- -59.99336242675781,
- -59.99336242675781,
- -59.80129623413086,
- -57.35112762451172,
- -57.35112762451172,
- -57.35112762451172,
- -57.35112762451172,
- -57.35112762451172,
- -57.35112762451172,
- -57.35112762451172,
- -57.35112762451172,
- -57.35112762451172,
- -56.37688064575195,
- -43.06144714355469,
- -43.06144714355469,
- -43.06144714355469,
- -43.06144714355469,
- -43.06144714355469,
- -43.06144714355469,
- -43.06144714355469,
- -43.06144714355469,
- -43.06144714355469,
- -42.85352325439453,
- -39.3154296875,
- -39.3154296875,
- -39.3154296875,
- -39.3154296875,
- -39.3154296875,
- -39.3154296875,
- -39.3154296875,
- -39.3154296875,
- -39.3154296875,
- -39.490840911865234,
- -44.163482666015625,
- -44.163482666015625,
- -44.163482666015625,
- -44.163482666015625,
- -44.163482666015625,
- -44.163482666015625,
- -44.163482666015625,
- -44.163482666015625,
- -44.163482666015625,
- -44.237552642822266,
- -50.06554412841797,
- -50.06554412841797,
- -50.06554412841797,
- -50.06554412841797,
- -50.06554412841797,
- -50.06554412841797,
- -50.06554412841797,
- -50.06554412841797,
- -50.06554412841797,
- -50.06554412841797,
- -42.63650131225586,
- -42.54207992553711,
- -42.54207992553711,
- -42.54207992553711,
- -42.54207992553711,
- -42.54207992553711,
- -42.54207992553711,
- -42.54207992553711,
- -42.54207992553711,
- -42.54207992553711,
- -32.75764846801758,
- -32.39032745361328,
- -32.39032745361328,
- -32.39032745361328,
- -32.39032745361328,
- -32.39032745361328,
- -32.39032745361328,
- -32.39032745361328,
- -32.39032745361328,
- -32.39032745361328,
- -38.97898483276367,
- -39.36616897583008,
- -39.36616897583008,
- -39.36616897583008,
- -39.36616897583008,
- -39.36616897583008,
- -39.36616897583008,
- -39.36616897583008,
- -39.36616897583008,
- -39.36616897583008,
- -45.97163391113281,
- -46.45493698120117,
- -46.45493698120117,
- -46.45493698120117,
- -46.45493698120117,
- -46.45493698120117,
- -46.45493698120117,
- -46.45493698120117,
- -46.45493698120117,
- -46.45493698120117,
- -49.13471603393555,
- -49.34477233886719,
- -49.34477233886719,
- -49.34477233886719,
- -49.34477233886719,
- -49.34477233886719,
- -49.34477233886719,
- -49.34477233886719,
- -49.34477233886719,
- -49.34477233886719,
- -45.614593505859375,
- -45.34024429321289,
- -45.34024429321289,
- -45.34024429321289,
- -45.34024429321289,
- -45.34024429321289,
- -45.34024429321289,
- -45.34024429321289,
- -45.34024429321289,
- -45.34024429321289,
- -32.63258361816406,
- -31.8763484954834,
- -31.8763484954834,
- -31.8763484954834,
- -31.8763484954834,
- -31.8763484954834,
- -31.8763484954834,
- -31.8763484954834,
- -31.8763484954834,
- -31.8763484954834,
- -10.497966766357422,
- -9.672720909118652,
- -9.672720909118652,
- -9.672720909118652,
- -9.672720909118652,
- -9.672720909118652,
- -9.672720909118652,
- -9.672720909118652,
- -9.672720909118652,
- -9.672720909118652,
- -6.030289173126221,
- -5.979067325592041,
- -5.979067325592041,
- -5.979067325592041,
- -5.979067325592041
- ],
- "index": [
- -89.5,
- -88.5,
- -87.5,
- -86.5,
- -85.5,
- -84.5,
- -83.5,
- -82.5,
- -81.5,
- -80.5,
- -79.5,
- -78.5,
- -77.5,
- -76.5,
- -75.5,
- -74.5,
- -73.5,
- -72.5,
- -71.5,
- -70.5,
- -69.5,
- -68.5,
- -67.5,
- -66.5,
- -65.5,
- -64.5,
- -63.5,
- -62.5,
- -61.5,
- -60.5,
- -59.5,
- -58.5,
- -57.5,
- -56.5,
- -55.5,
- -54.5,
- -53.5,
- -52.5,
- -51.5,
- -50.5,
- -49.5,
- -48.5,
- -47.5,
- -46.5,
- -45.5,
- -44.5,
- -43.5,
- -42.5,
- -41.5,
- -40.5,
- -39.5,
- -38.5,
- -37.5,
- -36.5,
- -35.5,
- -34.5,
- -33.5,
- -32.5,
- -31.5,
- -30.5,
- -29.5,
- -28.5,
- -27.5,
- -26.5,
- -25.5,
- -24.5,
- -23.5,
- -22.5,
- -21.5,
- -20.5,
- -19.5,
- -18.5,
- -17.5,
- -16.5,
- -15.5,
- -14.5,
- -13.5,
- -12.5,
- -11.5,
- -10.5,
- -9.5,
- -8.5,
- -7.5,
- -6.5,
- -5.5,
- -4.5,
- -3.5,
- -2.5,
- -1.5,
- -0.5,
- 0.5,
- 1.5,
- 2.5,
- 3.5,
- 4.5,
- 5.5,
- 6.5,
- 7.5,
- 8.5,
- 9.5,
- 10.5,
- 11.5,
- 12.5,
- 13.5,
- 14.5,
- 15.5,
- 16.5,
- 17.5,
- 18.5,
- 19.5,
- 20.5,
- 21.5,
- 22.5,
- 23.5,
- 24.5,
- 25.5,
- 26.5,
- 27.5,
- 28.5,
- 29.5,
- 30.5,
- 31.5,
- 32.5,
- 33.5,
- 34.5,
- 35.5,
- 36.5,
- 37.5,
- 38.5,
- 39.5,
- 40.5,
- 41.5,
- 42.5,
- 43.5,
- 44.5,
- 45.5,
- 46.5,
- 47.5,
- 48.5,
- 49.5,
- 50.5,
- 51.5,
- 52.5,
- 53.5,
- 54.5,
- 55.5,
- 56.5,
- 57.5,
- 58.5,
- 59.5,
- 60.5,
- 61.5,
- 62.5,
- 63.5,
- 64.5,
- 65.5,
- 66.5,
- 67.5,
- 68.5,
- 69.5,
- 70.5,
- 71.5,
- 72.5,
- 73.5,
- 74.5,
- 75.5,
- 76.5,
- 77.5,
- 78.5,
- 79.5,
- 80.5,
- 81.5,
- 82.5,
- 83.5,
- 84.5,
- 85.5,
- 86.5,
- 87.5,
- 88.5,
- 89.5
- ],
- "index_name": "lat",
- "attributes": {
- "caption": "TOA Shortwave Cloud Radiative Effect vs. latitude for various datasets.",
- "values_name": "swcre",
- "index_name": "lat",
- "value_long_name": "TOA Shortwave Cloud Radiative Effect",
- "index_standard_name": "latitude",
- "value_units": "W m-2",
- "index_units": "degrees_north"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png
deleted file mode 100644
index 7e2b3fc..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_histogram.nc
deleted file mode 100644
index eb25c0f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_ta_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_ta_histogram.nc
deleted file mode 100644
index 2e17b29..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_ta_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_ta_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_ta_histogram.nc
deleted file mode 100644
index 2623e18..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_ta_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/output.json
deleted file mode 100644
index 6797a4d..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/output.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_histogram.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_histogram.nc",
- "long_name": "Scatterplot of Mass Fraction of Cloud Ice (cli) vs Air Temperature (ta) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_ta_histogram.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_ta_histogram.nc",
- "long_name": "Scatterplot of Mass Fraction of Cloud Ice (cli) vs Air Temperature (ta) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_ta_histogram.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_ta_histogram.nc",
- "long_name": "Scatterplot of Mass Fraction of Cloud Ice (cli) vs Air Temperature (ta) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162136/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png": {
- "filename": "executions/recipe_20251001_162136/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png",
- "long_name": "Scatterplot of Mass Fraction of Cloud Ice (cli) vs Air Temperature (ta) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/diagnostic.json
similarity index 74%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/diagnostic.json
index 30503d8..032b445 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-at-global-warming-levels/11c24125584949c5e26f41db578ebcfedb0eaf67/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/diagnostic.json
@@ -2,8 +2,8 @@
"DIMENSIONS": {
"json_structure": []
},
- "RESULTS": {},
- "PROVENANCE": null,
"DISCLAIMER": null,
- "NOTES": null
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {}
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/executions/recipe_20260716_140604/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/executions/recipe_20251001_162136/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/executions/recipe_20260716_140604/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/executions/recipe_20260716_140604/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/executions/recipe_20260716_140604/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png
new file mode 100644
index 0000000..804283c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/executions/recipe_20260716_140604/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/output.json
new file mode 100644
index 0000000..2321950
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/output.json
@@ -0,0 +1,55 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/executions/recipe_20260716_140604/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/executions/recipe_20260716_140604/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140604/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_histogram.nc": {
+ "filename": "executions/recipe_20260716_140604/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_histogram.nc",
+ "long_name": "Scatterplot of Mass Fraction of Cloud Ice (cli) vs Air Temperature (ta) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
+ "description": "",
+ "dimensions": {
+ "statistic": "joint histogram of cli vs ta"
+ }
+ },
+ "executions/recipe_20260716_140604/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_ta_histogram.nc": {
+ "filename": "executions/recipe_20260716_140604/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_cli_ta_histogram.nc",
+ "long_name": "Scatterplot of Mass Fraction of Cloud Ice (cli) vs Air Temperature (ta) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
+ "description": "",
+ "dimensions": {
+ "statistic": "joint histogram of cli vs ta"
+ }
+ },
+ "executions/recipe_20260716_140604/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_ta_histogram.nc": {
+ "filename": "executions/recipe_20260716_140604/work/plot_joint_cli_ta_model/plot/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_ta_histogram.nc",
+ "long_name": "Scatterplot of Mass Fraction of Cloud Ice (cli) vs Air Temperature (ta) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
+ "description": "",
+ "dimensions": {
+ "statistic": "joint histogram of cli vs ta"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140604/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png": {
+ "filename": "executions/recipe_20260716_140604/plots/plot_joint_cli_ta_model/plot/png/jointplot_cli_ta_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png",
+ "long_name": "Scatterplot of Mass Fraction of Cloud Ice (cli) vs Air Temperature (ta) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
+ "description": "",
+ "dimensions": {
+ "statistic": "joint histogram of cli vs ta"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/executions/recipe_20260716_140604/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/executions/recipe_20260716_140604/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/historical_mon_gn_r1i1p1f1_CESM2_g2_v1_9ebbae0b/2/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/diagnostic.json
deleted file mode 100644
index 30503d8..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/diagnostic.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": []
- },
- "RESULTS": {},
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png
deleted file mode 100644
index f3248dc..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_histogram.nc
deleted file mode 100644
index 814871c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_lwcre_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_lwcre_histogram.nc
deleted file mode 100644
index 43aa590..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_lwcre_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_lwcre_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_lwcre_histogram.nc
deleted file mode 100644
index 7ea060d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_lwcre_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/diagnostic.json
similarity index 74%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/diagnostic.json
index 30503d8..032b445 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/diagnostic.json
@@ -2,8 +2,8 @@
"DIMENSIONS": {
"json_structure": []
},
- "RESULTS": {},
- "PROVENANCE": null,
"DISCLAIMER": null,
- "NOTES": null
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {}
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/executions/recipe_20260716_140605/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/executions/recipe_20260716_140605/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/executions/recipe_20260716_140605/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/executions/recipe_20260716_140605/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png
new file mode 100644
index 0000000..a5f6988
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/executions/recipe_20260716_140605/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/output.json
similarity index 50%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/output.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/output.json
index 1db89d6..2c629ed 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/output.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/output.json
@@ -1,42 +1,50 @@
{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/index.html",
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/executions/recipe_20260716_140605/index.html",
"provenance": {
"environment": {},
"modeldata": [],
"obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/run/main_log_debug.txt"
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/executions/recipe_20260716_140605/run/main_log_debug.txt"
},
"data": {
- "executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_histogram.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_histogram.nc",
+ "executions/recipe_20260716_140605/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_histogram.nc": {
+ "filename": "executions/recipe_20260716_140605/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_histogram.nc",
"long_name": "Scatterplot of Ice Water Path (clivi) vs TOA Longwave Cloud Radiative Effect (lwcre) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "joint histogram of clivi vs lwcre"
+ }
},
- "executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_lwcre_histogram.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_lwcre_histogram.nc",
+ "executions/recipe_20260716_140605/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_lwcre_histogram.nc": {
+ "filename": "executions/recipe_20260716_140605/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clivi_lwcre_histogram.nc",
"long_name": "Scatterplot of Ice Water Path (clivi) vs TOA Longwave Cloud Radiative Effect (lwcre) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "joint histogram of clivi vs lwcre"
+ }
},
- "executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_lwcre_histogram.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_lwcre_histogram.nc",
+ "executions/recipe_20260716_140605/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_lwcre_histogram.nc": {
+ "filename": "executions/recipe_20260716_140605/work/plot_joint_clivi_lwcre_model/plot/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_lwcre_histogram.nc",
"long_name": "Scatterplot of Ice Water Path (clivi) vs TOA Longwave Cloud Radiative Effect (lwcre) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "joint histogram of clivi vs lwcre"
+ }
}
},
"plots": {
- "executions/recipe_20251001_162136/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png": {
- "filename": "executions/recipe_20251001_162136/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png",
+ "executions/recipe_20260716_140605/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png": {
+ "filename": "executions/recipe_20260716_140605/plots/plot_joint_clivi_lwcre_model/plot/png/jointplot_clivi_lwcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png",
"long_name": "Scatterplot of Ice Water Path (clivi) vs TOA Longwave Cloud Radiative Effect (lwcre) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "joint histogram of clivi vs lwcre"
+ }
}
},
"html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/executions/recipe_20251001_162136/index.html",
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/executions/recipe_20260716_140605/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/executions/recipe_20260716_140605/index.html",
"long_name": "Results page",
"description": "Page showing the executions of the ESMValTool run.",
"dimensions": null
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/historical_mon_gn_r1i1p1f1_CESM2_g3_v1_f232e4a9/3/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/diagnostic.json
deleted file mode 100644
index 30503d8..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/diagnostic.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": []
- },
- "RESULTS": {},
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png
deleted file mode 100644
index 6ded011..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_histogram.nc
deleted file mode 100644
index fa71788..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_swcre_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_swcre_histogram.nc
deleted file mode 100644
index aa2c760..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_swcre_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_swcre_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_swcre_histogram.nc
deleted file mode 100644
index 9123e44..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_swcre_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/diagnostic.json
similarity index 74%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/diagnostic.json
index 30503d8..032b445 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-radiative-effects/b7fcae9aa6eb9a10079e2488f821909d15f59682/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/diagnostic.json
@@ -2,8 +2,8 @@
"DIMENSIONS": {
"json_structure": []
},
- "RESULTS": {},
- "PROVENANCE": null,
"DISCLAIMER": null,
- "NOTES": null
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {}
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/executions/recipe_20260716_140605/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/executions/recipe_20260716_140605/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/executions/recipe_20260716_140605/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/executions/recipe_20260716_140605/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png
new file mode 100644
index 0000000..35d489e
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/executions/recipe_20260716_140605/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/output.json
similarity index 50%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/output.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/output.json
index 217efbe..0f18c2f 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/output.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/output.json
@@ -1,42 +1,50 @@
{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/index.html",
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/executions/recipe_20260716_140605/index.html",
"provenance": {
"environment": {},
"modeldata": [],
"obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/run/main_log_debug.txt"
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/executions/recipe_20260716_140605/run/main_log_debug.txt"
},
"data": {
- "executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_histogram.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_histogram.nc",
+ "executions/recipe_20260716_140605/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_histogram.nc": {
+ "filename": "executions/recipe_20260716_140605/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_histogram.nc",
"long_name": "Scatterplot of Total Cloud Cover Percentage (clt) vs TOA Shortwave Cloud Radiative Effect (swcre) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "joint histogram of clt vs swcre"
+ }
},
- "executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_swcre_histogram.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_swcre_histogram.nc",
+ "executions/recipe_20260716_140605/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_swcre_histogram.nc": {
+ "filename": "executions/recipe_20260716_140605/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clt_swcre_histogram.nc",
"long_name": "Scatterplot of Total Cloud Cover Percentage (clt) vs TOA Shortwave Cloud Radiative Effect (swcre) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "joint histogram of clt vs swcre"
+ }
},
- "executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_swcre_histogram.nc": {
- "filename": "executions/recipe_20251001_162136/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_swcre_histogram.nc",
+ "executions/recipe_20260716_140605/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_swcre_histogram.nc": {
+ "filename": "executions/recipe_20260716_140605/work/plot_joint_clt_swcre_model/plot/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_swcre_histogram.nc",
"long_name": "Scatterplot of Total Cloud Cover Percentage (clt) vs TOA Shortwave Cloud Radiative Effect (swcre) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "joint histogram of clt vs swcre"
+ }
}
},
"plots": {
- "executions/recipe_20251001_162136/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png": {
- "filename": "executions/recipe_20251001_162136/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png",
+ "executions/recipe_20260716_140605/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png": {
+ "filename": "executions/recipe_20260716_140605/plots/plot_joint_clt_swcre_model/plot/png/jointplot_clt_swcre_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png",
"long_name": "Scatterplot of Total Cloud Cover Percentage (clt) vs TOA Shortwave Cloud Radiative Effect (swcre) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "joint histogram of clt vs swcre"
+ }
}
},
"html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/executions/recipe_20251001_162136/index.html",
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/executions/recipe_20260716_140605/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/executions/recipe_20260716_140605/index.html",
"long_name": "Results page",
"description": "Page showing the executions of the ESMValTool run.",
"dimensions": null
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clivi-lwcre/82ea247161f9b8d82cb4c6192043d5af9395e6f0/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/historical_mon_gn_r1i1p1f1_CESM2_g4_v1_7dbb01ee/4/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/diagnostic.json
deleted file mode 100644
index 30503d8..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/diagnostic.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": []
- },
- "RESULTS": {},
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png
deleted file mode 100644
index 2eded18..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_histogram.nc
deleted file mode 100644
index ed476f9..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_pr_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_pr_histogram.nc
deleted file mode 100644
index 10be955..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_pr_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_pr_histogram.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_pr_histogram.nc
deleted file mode 100644
index 80d452e..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_pr_histogram.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/output.json
deleted file mode 100644
index a42f1a5..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/output.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_histogram.nc": {
- "filename": "executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_histogram.nc",
- "long_name": "Scatterplot of Condensed Water Path (clwvi) vs Precipitation (pr) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_pr_histogram.nc": {
- "filename": "executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_pr_histogram.nc",
- "long_name": "Scatterplot of Condensed Water Path (clwvi) vs Precipitation (pr) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_pr_histogram.nc": {
- "filename": "executions/recipe_20251001_162137/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_pr_histogram.nc",
- "long_name": "Scatterplot of Condensed Water Path (clwvi) vs Precipitation (pr) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162137/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png": {
- "filename": "executions/recipe_20251001_162137/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png",
- "long_name": "Scatterplot of Condensed Water Path (clwvi) vs Precipitation (pr) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/diagnostic.json
similarity index 74%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/diagnostic.json
index 30503d8..032b445 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-cli-ta/4f8fede3cf6dd022aabee3838c1df7dfa8d95549/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/diagnostic.json
@@ -2,8 +2,8 @@
"DIMENSIONS": {
"json_structure": []
},
- "RESULTS": {},
- "PROVENANCE": null,
"DISCLAIMER": null,
- "NOTES": null
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {}
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/executions/recipe_20260716_140605/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/executions/recipe_20251001_162137/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/executions/recipe_20260716_140605/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/executions/recipe_20260716_140605/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/executions/recipe_20260716_140605/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png
new file mode 100644
index 0000000..9d4aba2
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/executions/recipe_20260716_140605/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/output.json
new file mode 100644
index 0000000..df5cca2
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/output.json
@@ -0,0 +1,55 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/executions/recipe_20260716_140605/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/executions/recipe_20260716_140605/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140605/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_histogram.nc": {
+ "filename": "executions/recipe_20260716_140605/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_histogram.nc",
+ "long_name": "Scatterplot of Condensed Water Path (clwvi) vs Precipitation (pr) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
+ "description": "",
+ "dimensions": {
+ "statistic": "joint histogram of clwvi vs pr"
+ }
+ },
+ "executions/recipe_20260716_140605/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_pr_histogram.nc": {
+ "filename": "executions/recipe_20260716_140605/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_clwvi_pr_histogram.nc",
+ "long_name": "Scatterplot of Condensed Water Path (clwvi) vs Precipitation (pr) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
+ "description": "",
+ "dimensions": {
+ "statistic": "joint histogram of clwvi vs pr"
+ }
+ },
+ "executions/recipe_20260716_140605/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_pr_histogram.nc": {
+ "filename": "executions/recipe_20260716_140605/work/plot_joint_clwvi_pr_model/plot/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014_pr_histogram.nc",
+ "long_name": "Scatterplot of Condensed Water Path (clwvi) vs Precipitation (pr) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
+ "description": "",
+ "dimensions": {
+ "statistic": "joint histogram of clwvi vs pr"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140605/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png": {
+ "filename": "executions/recipe_20260716_140605/plots/plot_joint_clwvi_pr_model/plot/png/jointplot_clwvi_pr_CMIP6_CESM2_r1i1p1f1_gn_1996-2014.png",
+ "long_name": "Scatterplot of Condensed Water Path (clwvi) vs Precipitation (pr) (CMIP6 CESM2 r1i1p1f1 gn 1996/2014)",
+ "description": "",
+ "dimensions": {
+ "statistic": "joint histogram of clwvi vs pr"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/executions/recipe_20260716_140605/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/executions/recipe_20260716_140605/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clt-swcre/d5762e92ba189c9ac64bf2942ab96ff196d871ba/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/historical_mon_gn_r1i1p1f1_CESM2_g5_v1_d8ebce05/5/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/diagnostic.json
deleted file mode 100644
index 30503d8..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/diagnostic.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": []
- },
- "RESULTS": {},
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png
deleted file mode 100644
index 50450b0..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png
deleted file mode 100644
index de7d561..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png
deleted file mode 100644
index 9c634c8..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png
deleted file mode 100644
index 2fb16c6..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png
deleted file mode 100644
index 2e700f6..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png
deleted file mode 100644
index 96edc84..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png
deleted file mode 100644
index bb84dd3..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png
deleted file mode 100644
index 087b93c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png
deleted file mode 100644
index 74c6e4d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png
deleted file mode 100644
index 92e40de..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png
deleted file mode 100644
index 28ab504..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png
deleted file mode 100644
index 17ac4b3..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_bias.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_bias.nc
deleted file mode 100644
index 0eea4a2..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_bias.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_seacycle.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_seacycle.nc
deleted file mode 100644
index 4b73c39..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_seacycle.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_bias.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_bias.nc
deleted file mode 100644
index 532d248..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_bias.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_seacycle.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_seacycle.nc
deleted file mode 100644
index 8543af2..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_seacycle.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_bias.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_bias.nc
deleted file mode 100644
index cb729ad..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_bias.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_seacycle.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_seacycle.nc
deleted file mode 100644
index ad02dea..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_seacycle.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double.nc
deleted file mode 100644
index 5c158e7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double_seacycle.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double_seacycle.nc
deleted file mode 100644
index a0a4264..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double_seacycle.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_bias.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_bias.nc
deleted file mode 100644
index 7ca9c87..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_bias.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_seacycle.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_seacycle.nc
deleted file mode 100644
index 639fb21..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_seacycle.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double.nc
deleted file mode 100644
index 2ea0f50..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double_seacycle.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double_seacycle.nc
deleted file mode 100644
index ff87a4c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double_seacycle.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_bias.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_bias.nc
deleted file mode 100644
index 525b405..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_bias.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_seacycle.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_seacycle.nc
deleted file mode 100644
index 1e4b80c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_seacycle.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_bias.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_bias.nc
deleted file mode 100644
index 17b2dbd..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_bias.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_seacycle.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_seacycle.nc
deleted file mode 100644
index 6d30f88..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_seacycle.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/series.json
deleted file mode 100644
index af3b463..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/series.json
+++ /dev/null
@@ -1,1829 +0,0 @@
-[
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "zonal bias in the time-mean pr structure across the equatorial Pacific"
- },
- "values": [
- 5.581721305847168,
- 5.488589763641357,
- 5.395458221435547,
- 5.302326202392578,
- 5.209193706512451,
- 5.116062164306641,
- 5.022930145263672,
- 4.929798126220703,
- 4.836665630340576,
- 4.743534564971924,
- 4.638801097869873,
- 4.522467613220215,
- 4.406133651733398,
- 4.289799690246582,
- 4.173466205596924,
- 4.057132244110107,
- 3.94079852104187,
- 3.8244643211364746,
- 3.7081308364868164,
- 3.591797113418579,
- 3.4956185817718506,
- 3.4195945262908936,
- 3.343571662902832,
- 3.267547845840454,
- 3.1915245056152344,
- 3.1155011653900146,
- 3.039477586746216,
- 2.963454246520996,
- 2.8874309062957764,
- 2.8114073276519775,
- 2.7536556720733643,
- 2.714176893234253,
- 2.6746978759765625,
- 2.635218381881714,
- 2.5957398414611816,
- 2.556260585784912,
- 2.516781806945801,
- 2.4773027896881104,
- 2.437823534011841,
- 2.3983445167541504,
- 2.3618690967559814,
- 2.3283979892730713,
- 2.294926404953003,
- 2.2614550590515137,
- 2.227983236312866,
- 2.194511890411377,
- 2.1610403060913086,
- 2.1275687217712402,
- 2.094097375869751,
- 2.0606257915496826,
- 2.0320682525634766,
- 2.0084245204925537,
- 1.9847806692123413,
- 1.9611371755599976,
- 1.9374932050704956,
- 1.9138497114181519,
- 1.8902058601379395,
- 1.8665621280670166,
- 1.8429183959960938,
- 1.8192747831344604,
- 1.8053468465805054,
- 1.8011351823806763,
- 1.7969229221343994,
- 1.7927110195159912,
- 1.7884989976882935,
- 1.7842870950698853,
- 1.780075192451477,
- 1.7758632898330688,
- 1.771651029586792,
- 1.7674391269683838,
- 1.7706228494644165,
- 1.781202793121338,
- 1.7917823791503906,
- 1.802362084388733,
- 1.8129417896270752,
- 1.8235212564468384,
- 1.8341012001037598,
- 1.8446807861328125,
- 1.8552604913711548,
- 1.865840196609497,
- 1.8703536987304688,
- 1.8688013553619385,
- 1.8672490119934082,
- 1.8656965494155884,
- 1.864144206047058,
- 1.8625917434692383,
- 1.8610395193099976,
- 1.8594870567321777,
- 1.857934594154358,
- 1.8563823699951172,
- 1.8511325120925903,
- 1.8421857357025146,
- 1.833238959312439,
- 1.8242919445037842,
- 1.815345287322998,
- 1.806398630142212,
- 1.7974517345428467,
- 1.788504719734192,
- 1.7795580625534058,
- 1.7706114053726196,
- 1.7712186574935913,
- 1.7813801765441895,
- 1.791541576385498,
- 1.8017030954360962,
- 1.8118646144866943,
- 1.822026252746582,
- 1.832187533378601,
- 1.8423491716384888,
- 1.8525104522705078,
- 1.862672209739685,
- 1.9014129638671875,
- 1.9687331914901733,
- 2.036053419113159,
- 2.1033737659454346,
- 2.17069411277771,
- 2.2380142211914062,
- 2.3053343296051025,
- 2.372654438018799,
- 2.4399752616882324,
- 2.5072953701019287
- ],
- "index": [
- 150.5,
- 151.5,
- 152.5,
- 153.5,
- 154.5,
- 155.5,
- 156.5,
- 157.5,
- 158.5,
- 159.5,
- 160.5,
- 161.5,
- 162.5,
- 163.5,
- 164.5,
- 165.5,
- 166.5,
- 167.5,
- 168.5,
- 169.5,
- 170.5,
- 171.5,
- 172.5,
- 173.5,
- 174.5,
- 175.5,
- 176.5,
- 177.5,
- 178.5,
- 179.5,
- 180.5,
- 181.5,
- 182.5,
- 183.5,
- 184.5,
- 185.5,
- 186.5,
- 187.5,
- 188.5,
- 189.5,
- 190.5,
- 191.5,
- 192.5,
- 193.5,
- 194.5,
- 195.5,
- 196.5,
- 197.5,
- 198.5,
- 199.5,
- 200.5,
- 201.5,
- 202.5,
- 203.5,
- 204.5,
- 205.5,
- 206.5,
- 207.5,
- 208.5,
- 209.5,
- 210.5,
- 211.5,
- 212.5,
- 213.5,
- 214.5,
- 215.5,
- 216.5,
- 217.5,
- 218.5,
- 219.5,
- 220.5,
- 221.5,
- 222.5,
- 223.5,
- 224.5,
- 225.5,
- 226.5,
- 227.5,
- 228.5,
- 229.5,
- 230.5,
- 231.5,
- 232.5,
- 233.5,
- 234.5,
- 235.5,
- 236.5,
- 237.5,
- 238.5,
- 239.5,
- 240.5,
- 241.5,
- 242.5,
- 243.5,
- 244.5,
- 245.5,
- 246.5,
- 247.5,
- 248.5,
- 249.5,
- 250.5,
- 251.5,
- 252.5,
- 253.5,
- 254.5,
- 255.5,
- 256.5,
- 257.5,
- 258.5,
- 259.5,
- 260.5,
- 261.5,
- 262.5,
- 263.5,
- 264.5,
- 265.5,
- 266.5,
- 267.5,
- 268.5,
- 269.5
- ],
- "index_name": "lon",
- "attributes": {
- "caption": "Zonal bias in the time-mean precipitation structure across the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N), illustrating the increased precipitation in the eastern Pacific and decreased precipitation in the western Pacific.",
- "values_name": "pr",
- "index_name": "lon",
- "value_long_name": "Precipitation",
- "value_standard_name": "lwe_precipitation_rate",
- "index_standard_name": "longitude",
- "value_units": "mm/day",
- "index_units": "degrees_east"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "zonal bias in the amplitude of the mean seasonal cycle of pr in the equatorial Pacific"
- },
- "values": [
- 1.9967015981674194,
- 1.9799515008926392,
- 1.965376615524292,
- 1.9529552459716797,
- 1.9426591396331787,
- 1.9344574213027954,
- 1.9283173084259033,
- 1.9242045879364014,
- 1.9220869541168213,
- 1.9219309091567993,
- 1.8831630945205688,
- 1.8052797317504883,
- 1.7287715673446655,
- 1.65378737449646,
- 1.5804989337921143,
- 1.509103536605835,
- 1.4398307800292969,
- 1.3729509115219116,
- 1.30878484249115,
- 1.247719168663025,
- 1.2035176753997803,
- 1.1743961572647095,
- 1.1464593410491943,
- 1.1198153495788574,
- 1.0945930480957031,
- 1.0709474086761475,
- 1.0490703582763672,
- 1.029205083847046,
- 1.011672854423523,
- 0.9969115257263184,
- 0.9870942831039429,
- 0.9803160429000854,
- 0.9742891192436218,
- 0.9690539240837097,
- 0.9646547436714172,
- 0.9611369967460632,
- 0.9585472941398621,
- 0.9569312334060669,
- 0.9563301205635071,
- 0.9567778706550598,
- 0.956905722618103,
- 0.9565302729606628,
- 0.9569666981697083,
- 0.9581974148750305,
- 0.9602028727531433,
- 0.9629611968994141,
- 0.9664489030838013,
- 0.9706413149833679,
- 0.9755125045776367,
- 0.981036365032196,
- 0.9865730404853821,
- 0.9921060800552368,
- 0.9982366561889648,
- 1.004952073097229,
- 1.0122389793395996,
- 1.0200831890106201,
- 1.0284702777862549,
- 1.037385106086731,
- 1.0468127727508545,
- 1.056738257408142,
- 1.064895510673523,
- 1.071142554283142,
- 1.0776808261871338,
- 1.0845054388046265,
- 1.0916131734848022,
- 1.0990010499954224,
- 1.1066666841506958,
- 1.1146080493927002,
- 1.1228244304656982,
- 1.1313146352767944,
- 1.1336586475372314,
- 1.1298308372497559,
- 1.1262400150299072,
- 1.12288498878479,
- 1.1197658777236938,
- 1.1168854236602783,
- 1.1142475605010986,
- 1.1118590831756592,
- 1.1097296476364136,
- 1.107871413230896,
- 1.0973613262176514,
- 1.0787317752838135,
- 1.061105489730835,
- 1.044490933418274,
- 1.0288900136947632,
- 1.014301061630249,
- 1.0007188320159912,
- 0.9881393313407898,
- 0.9765641093254089,
- 0.9660071134567261,
- 0.959515392780304,
- 0.9588043093681335,
- 0.9613490104675293,
- 0.9670503735542297,
- 0.9758003354072571,
- 0.9874847531318665,
- 1.0019856691360474,
- 1.0191829204559326,
- 1.0389560461044312,
- 1.0611851215362549,
- 1.0713112354278564,
- 1.0707861185073853,
- 1.0744258165359497,
- 1.0820741653442383,
- 1.0935732126235962,
- 1.1087642908096313,
- 1.127488374710083,
- 1.1495847702026367,
- 1.1748920679092407,
- 1.2032458782196045,
- 1.2204768657684326,
- 1.2293779850006104,
- 1.2442595958709717,
- 1.2645162343978882,
- 1.2897008657455444,
- 1.319469690322876,
- 1.35354483127594,
- 1.3916923999786377,
- 1.4337122440338135,
- 1.479430913925171
- ],
- "index": [
- 150.5,
- 151.5,
- 152.5,
- 153.5,
- 154.5,
- 155.5,
- 156.5,
- 157.5,
- 158.5,
- 159.5,
- 160.5,
- 161.5,
- 162.5,
- 163.5,
- 164.5,
- 165.5,
- 166.5,
- 167.5,
- 168.5,
- 169.5,
- 170.5,
- 171.5,
- 172.5,
- 173.5,
- 174.5,
- 175.5,
- 176.5,
- 177.5,
- 178.5,
- 179.5,
- 180.5,
- 181.5,
- 182.5,
- 183.5,
- 184.5,
- 185.5,
- 186.5,
- 187.5,
- 188.5,
- 189.5,
- 190.5,
- 191.5,
- 192.5,
- 193.5,
- 194.5,
- 195.5,
- 196.5,
- 197.5,
- 198.5,
- 199.5,
- 200.5,
- 201.5,
- 202.5,
- 203.5,
- 204.5,
- 205.5,
- 206.5,
- 207.5,
- 208.5,
- 209.5,
- 210.5,
- 211.5,
- 212.5,
- 213.5,
- 214.5,
- 215.5,
- 216.5,
- 217.5,
- 218.5,
- 219.5,
- 220.5,
- 221.5,
- 222.5,
- 223.5,
- 224.5,
- 225.5,
- 226.5,
- 227.5,
- 228.5,
- 229.5,
- 230.5,
- 231.5,
- 232.5,
- 233.5,
- 234.5,
- 235.5,
- 236.5,
- 237.5,
- 238.5,
- 239.5,
- 240.5,
- 241.5,
- 242.5,
- 243.5,
- 244.5,
- 245.5,
- 246.5,
- 247.5,
- 248.5,
- 249.5,
- 250.5,
- 251.5,
- 252.5,
- 253.5,
- 254.5,
- 255.5,
- 256.5,
- 257.5,
- 258.5,
- 259.5,
- 260.5,
- 261.5,
- 262.5,
- 263.5,
- 264.5,
- 265.5,
- 266.5,
- 267.5,
- 268.5,
- 269.5
- ],
- "index_name": "lon",
- "attributes": {
- "caption": "Zonal bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
- "values_name": "pr",
- "index_name": "lon",
- "value_long_name": "Precipitation",
- "value_standard_name": "lwe_precipitation_rate",
- "index_standard_name": "longitude",
- "value_units": "mm/day",
- "index_units": "degrees_east"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "zonal bias in the time-mean sst structure across the equatorial Pacific"
- },
- "values": [
- 29.228692922907832,
- 29.190316092314276,
- 29.152083605845565,
- 29.11398518334183,
- 29.076010691263907,
- 29.038150146215337,
- 29.00039371872401,
- 28.962731737446102,
- 28.925154693956266,
- 28.887653248292047,
- 28.947986857233037,
- 28.904767419692128,
- 28.86174610525663,
- 28.818924688151856,
- 28.776305059780345,
- 28.73388929386354,
- 28.691679711458516,
- 28.649678946491974,
- 28.60789001245313,
- 28.56631637089514,
- 28.52496200241122,
- 28.480762970700265,
- 28.436883316863316,
- 28.39331342181064,
- 28.350044048315418,
- 28.307066355861632,
- 28.264371916531665,
- 28.221952732206308,
- 28.179801253356732,
- 28.137910399718827,
- 28.0962735831557,
- 28.057890850514674,
- 28.019893351270383,
- 27.98226614072659,
- 27.9449948177676,
- 27.908065508086498,
- 27.87146484921275,
- 27.835179977356965,
- 27.799198516102802,
- 27.763508566988328,
- 27.728098702033463,
- 27.69295251865383,
- 27.658222403082583,
- 27.623892009677075,
- 27.589945605798686,
- 27.556368044562447,
- 27.52314473970481,
- 27.490261642499284,
- 27.457705220662923,
- 27.425462439210794,
- 27.393520743229317,
- 27.36092523128998,
- 27.328758099525253,
- 27.297005238478143,
- 27.26565316304784,
- 27.23468899221165,
- 27.204100430897125,
- 27.17387575397769,
- 27.144003792379316,
- 27.114473921300316,
- 27.085276050561554,
- 27.040886026737404,
- 26.996963329249688,
- 26.95349189490342,
- 26.910456312608837,
- 26.86784180968208,
- 26.825634240290224,
- 26.783820076105286,
- 26.742386399245476,
- 26.70132089759802,
- 26.660611862635353,
- 26.607726103085774,
- 26.555357957136255,
- 26.503490617857388,
- 26.45210797878091,
- 26.40119462807612,
- 26.350735844958773,
- 26.30071759848653,
- 26.25112654890993,
- 26.201950051765277,
- 26.15317616491678,
- 26.104657085441232,
- 26.05673838818914,
- 26.009389277438707,
- 25.96257990524942,
- 25.916281296364485,
- 25.870465276558615,
- 25.825104404054166,
- 25.780171903650903,
- 25.735641603233358,
- 25.691487872335124,
- 25.67270329051408,
- 25.65451319652472,
- 25.636876629724014,
- 25.619753760500895,
- 25.603105729984485,
- 25.586894494413638,
- 25.571082673051016,
- 25.555633398553837,
- 25.540510168730588,
- 25.525676698617755,
- 25.541897719175036,
- 25.558578612796794,
- 25.57568142703731,
- 25.593169250789035,
- 25.611006021629283,
- 25.62915633786892,
- 25.64758527381929,
- 25.666258196823094,
- 25.68514058460719,
- 25.704197841510144,
- 25.78054413190237,
- 25.857051577500233,
- 25.933718682656114,
- 26.010544500081647,
- 26.087528525438422,
- 26.164670594890858,
- 26.241970784574796,
- 26.319429310955666,
- 26.397046431055735
- ],
- "index": [
- 150.5,
- 151.5,
- 152.5,
- 153.5,
- 154.5,
- 155.5,
- 156.5,
- 157.5,
- 158.5,
- 159.5,
- 160.5,
- 161.5,
- 162.5,
- 163.5,
- 164.5,
- 165.5,
- 166.5,
- 167.5,
- 168.5,
- 169.5,
- 170.5,
- 171.5,
- 172.5,
- 173.5,
- 174.5,
- 175.5,
- 176.5,
- 177.5,
- 178.5,
- 179.5,
- 180.5,
- 181.5,
- 182.5,
- 183.5,
- 184.5,
- 185.5,
- 186.5,
- 187.5,
- 188.5,
- 189.5,
- 190.5,
- 191.5,
- 192.5,
- 193.5,
- 194.5,
- 195.5,
- 196.5,
- 197.5,
- 198.5,
- 199.5,
- 200.5,
- 201.5,
- 202.5,
- 203.5,
- 204.5,
- 205.5,
- 206.5,
- 207.5,
- 208.5,
- 209.5,
- 210.5,
- 211.5,
- 212.5,
- 213.5,
- 214.5,
- 215.5,
- 216.5,
- 217.5,
- 218.5,
- 219.5,
- 220.5,
- 221.5,
- 222.5,
- 223.5,
- 224.5,
- 225.5,
- 226.5,
- 227.5,
- 228.5,
- 229.5,
- 230.5,
- 231.5,
- 232.5,
- 233.5,
- 234.5,
- 235.5,
- 236.5,
- 237.5,
- 238.5,
- 239.5,
- 240.5,
- 241.5,
- 242.5,
- 243.5,
- 244.5,
- 245.5,
- 246.5,
- 247.5,
- 248.5,
- 249.5,
- 250.5,
- 251.5,
- 252.5,
- 253.5,
- 254.5,
- 255.5,
- 256.5,
- 257.5,
- 258.5,
- 259.5,
- 260.5,
- 261.5,
- 262.5,
- 263.5,
- 264.5,
- 265.5,
- 266.5,
- 267.5,
- 268.5,
- 269.5
- ],
- "index_name": "lon",
- "attributes": {
- "caption": "Zonal bias in the sea surface temperature structure across the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N), primarily illustrating the cold tongue bias (typically warmer near South America and cooler further west).",
- "values_name": "tos",
- "index_name": "lon",
- "value_long_name": "Sea Surface Temperature",
- "value_standard_name": "sea_surface_temperature",
- "index_standard_name": "longitude",
- "value_units": "degC",
- "index_units": "degrees_east"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "zonal bias in the amplitude of the mean seasonal cycle of sst in the equatorial Pacific"
- },
- "values": [
- 0.45128609359422317,
- 0.4618004665475176,
- 0.4730685838718825,
- 0.4850525201562159,
- 0.4977124084174755,
- 0.5110078105007465,
- 0.5248990234252361,
- 0.5393481948322717,
- 0.5543201784027618,
- 0.5697831145098282,
- 0.4959776390850229,
- 0.5015952964860505,
- 0.5074535887827509,
- 0.5135404842453182,
- 0.5198442718177961,
- 0.5263541779569011,
- 0.5330608494291293,
- 0.539956679070081,
- 0.5470359847226468,
- 0.5542950701863388,
- 0.5617322027878129,
- 0.5630304328005156,
- 0.5645246006877241,
- 0.5662099717078981,
- 0.5680823670782609,
- 0.5701381635920793,
- 0.5723742924564262,
- 0.5747882375368073,
- 0.5773780333019647,
- 0.5801422628317854,
- 0.5830800562903364,
- 0.5814990218805539,
- 0.580243743978629,
- 0.579312865750949,
- 0.5787050196181196,
- 0.578418824190194,
- 0.5784528965862238,
- 0.5788058799072999,
- 0.5794764847372613,
- 0.5804635427536009,
- 0.5817660699457827,
- 0.5770991051681961,
- 0.572985647114612,
- 0.5694206034716042,
- 0.5663980380122713,
- 0.5639112972803727,
- 0.5619532550491417,
- 0.5605166492184026,
- 0.5595944763341599,
- 0.5591804066171772,
- 0.5592691865413671,
- 0.5537941480264006,
- 0.5493789888564197,
- 0.5460047612222227,
- 0.543646247220036,
- 0.5422732386624494,
- 0.5418519100903822,
- 0.5423461634324978,
- 0.5437188641393566,
- 0.5459329279299396,
- 0.548952248793834,
- 0.5439410447941516,
- 0.5401992797848539,
- 0.5377212939421033,
- 0.5364986266021435,
- 0.536520905380492,
- 0.5377768047004462,
- 0.5402550207838649,
- 0.5439452082559839,
- 0.5488388207614591,
- 0.5549297907552779,
- 0.5544043932826839,
- 0.5558416691224716,
- 0.5592851994682122,
- 0.5647729183248515,
- 0.5723293269979981,
- 0.5819553217100805,
- 0.5936192107677636,
- 0.6072537126843965,
- 0.6227612451967348,
- 0.6400251655556168,
- 0.6504029460255072,
- 0.6640567305838434,
- 0.6807582829704403,
- 0.7002744805992871,
- 0.7223777347609066,
- 0.7468520552574066,
- 0.7734964212688882,
- 0.8021265201479265,
- 0.8325754611501879,
- 0.8646938096768956,
- 0.8566643497099886,
- 0.8533948984328228,
- 0.8550367062142274,
- 0.8616728913396345,
- 0.8733035128166845,
- 0.8898367096764861,
- 0.9110897055997473,
- 0.9368014021090609,
- 0.966654588630095,
- 1.0003026041183145,
- 0.9983251458817254,
- 1.0014306346317037,
- 1.0096167591343856,
- 1.0228075927628422,
- 1.040855644944593,
- 1.0635507303191698,
- 1.0906340071646965,
- 1.1218146650109218,
- 1.1567867257934465,
- 1.1952439900132668,
- 1.1847647384110538,
- 1.1757435940843826,
- 1.1682258737643236,
- 1.1622641436083208,
- 1.1579164814917813,
- 1.1552436767304675,
- 1.1543053735061806,
- 1.1551554905620172,
- 1.157837630041972
- ],
- "index": [
- 150.5,
- 151.5,
- 152.5,
- 153.5,
- 154.5,
- 155.5,
- 156.5,
- 157.5,
- 158.5,
- 159.5,
- 160.5,
- 161.5,
- 162.5,
- 163.5,
- 164.5,
- 165.5,
- 166.5,
- 167.5,
- 168.5,
- 169.5,
- 170.5,
- 171.5,
- 172.5,
- 173.5,
- 174.5,
- 175.5,
- 176.5,
- 177.5,
- 178.5,
- 179.5,
- 180.5,
- 181.5,
- 182.5,
- 183.5,
- 184.5,
- 185.5,
- 186.5,
- 187.5,
- 188.5,
- 189.5,
- 190.5,
- 191.5,
- 192.5,
- 193.5,
- 194.5,
- 195.5,
- 196.5,
- 197.5,
- 198.5,
- 199.5,
- 200.5,
- 201.5,
- 202.5,
- 203.5,
- 204.5,
- 205.5,
- 206.5,
- 207.5,
- 208.5,
- 209.5,
- 210.5,
- 211.5,
- 212.5,
- 213.5,
- 214.5,
- 215.5,
- 216.5,
- 217.5,
- 218.5,
- 219.5,
- 220.5,
- 221.5,
- 222.5,
- 223.5,
- 224.5,
- 225.5,
- 226.5,
- 227.5,
- 228.5,
- 229.5,
- 230.5,
- 231.5,
- 232.5,
- 233.5,
- 234.5,
- 235.5,
- 236.5,
- 237.5,
- 238.5,
- 239.5,
- 240.5,
- 241.5,
- 242.5,
- 243.5,
- 244.5,
- 245.5,
- 246.5,
- 247.5,
- 248.5,
- 249.5,
- 250.5,
- 251.5,
- 252.5,
- 253.5,
- 254.5,
- 255.5,
- 256.5,
- 257.5,
- 258.5,
- 259.5,
- 260.5,
- 261.5,
- 262.5,
- 263.5,
- 264.5,
- 265.5,
- 266.5,
- 267.5,
- 268.5,
- 269.5
- ],
- "index_name": "lon",
- "attributes": {
- "caption": "Zonal bias in the amplitude of the mean seasonal cycle of sea surface temperature in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
- "values_name": "tos",
- "index_name": "lon",
- "value_long_name": "Sea Surface Temperature",
- "value_standard_name": "sea_surface_temperature",
- "index_standard_name": "longitude",
- "value_units": "degC",
- "index_units": "degrees_east"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "zonal bias in the time-mean tauu structure across the equatorial Pacific"
- },
- "values": [
- -31.92863655090332,
- -32.28815460205078,
- -32.647666931152344,
- -33.007179260253906,
- -33.366695404052734,
- -33.7262077331543,
- -34.085723876953125,
- -34.44523239135742,
- -34.80474853515625,
- -35.164268493652344,
- -35.64631271362305,
- -36.250877380371094,
- -36.85544967651367,
- -37.460018157958984,
- -38.0645866394043,
- -38.669158935546875,
- -39.27372360229492,
- -39.878292083740234,
- -40.48286437988281,
- -41.08742904663086,
- -41.61963653564453,
- -42.07948303222656,
- -42.53932189941406,
- -42.999168395996094,
- -43.45901107788086,
- -43.918853759765625,
- -44.37869644165039,
- -44.83853530883789,
- -45.298377990722656,
- -45.75822448730469,
- -46.19227981567383,
- -46.60055923461914,
- -47.00883102416992,
- -47.4171028137207,
- -47.82538604736328,
- -48.2336540222168,
- -48.64192581176758,
- -49.05020523071289,
- -49.45848083496094,
- -49.86675262451172,
- -50.2750358581543,
- -50.683311462402344,
- -51.091590881347656,
- -51.499874114990234,
- -51.90815353393555,
- -52.316436767578125,
- -52.7247200012207,
- -53.132999420166016,
- -53.54127883911133,
- -53.949554443359375,
- -54.34296798706055,
- -54.72148513793945,
- -55.10001754760742,
- -55.47854995727539,
- -55.85707473754883,
- -56.235599517822266,
- -56.614131927490234,
- -56.99265670776367,
- -57.37118148803711,
- -57.74971008300781,
- -58.00701141357422,
- -58.143089294433594,
- -58.27915573120117,
- -58.41523361206055,
- -58.55130386352539,
- -58.687381744384766,
- -58.823455810546875,
- -58.95952606201172,
- -59.095603942871094,
- -59.2316780090332,
- -59.1231803894043,
- -58.77012634277344,
- -58.41706085205078,
- -58.06400680541992,
- -57.71094512939453,
- -57.35788345336914,
- -57.00482177734375,
- -56.65176010131836,
- -56.298709869384766,
- -55.945640563964844,
- -55.28741455078125,
- -54.32402420043945,
- -53.36064147949219,
- -52.39725112915039,
- -51.433860778808594,
- -50.47047805786133,
- -49.5070915222168,
- -48.543697357177734,
- -47.58031463623047,
- -46.61692428588867,
- -45.54755401611328,
- -44.37220764160156,
- -43.19686508178711,
- -42.021514892578125,
- -40.846168518066406,
- -39.67082214355469,
- -38.4954719543457,
- -37.320125579833984,
- -36.1447868347168,
- -34.96943664550781,
- -33.8260612487793,
- -32.71466064453125,
- -31.603254318237305,
- -30.491849899291992,
- -29.380449295043945,
- -28.269046783447266,
- -27.15764045715332,
- -26.046239852905273,
- -24.93483543395996,
- -23.823436737060547,
- -22.69724464416504,
- -21.556264877319336,
- -20.415285110473633,
- -19.274307250976562,
- -18.133331298828125,
- -16.992353439331055,
- -15.851372718811035,
- -14.710393905639648,
- -13.569416046142578,
- -12.428437232971191
- ],
- "index": [
- 150.5,
- 151.5,
- 152.5,
- 153.5,
- 154.5,
- 155.5,
- 156.5,
- 157.5,
- 158.5,
- 159.5,
- 160.5,
- 161.5,
- 162.5,
- 163.5,
- 164.5,
- 165.5,
- 166.5,
- 167.5,
- 168.5,
- 169.5,
- 170.5,
- 171.5,
- 172.5,
- 173.5,
- 174.5,
- 175.5,
- 176.5,
- 177.5,
- 178.5,
- 179.5,
- 180.5,
- 181.5,
- 182.5,
- 183.5,
- 184.5,
- 185.5,
- 186.5,
- 187.5,
- 188.5,
- 189.5,
- 190.5,
- 191.5,
- 192.5,
- 193.5,
- 194.5,
- 195.5,
- 196.5,
- 197.5,
- 198.5,
- 199.5,
- 200.5,
- 201.5,
- 202.5,
- 203.5,
- 204.5,
- 205.5,
- 206.5,
- 207.5,
- 208.5,
- 209.5,
- 210.5,
- 211.5,
- 212.5,
- 213.5,
- 214.5,
- 215.5,
- 216.5,
- 217.5,
- 218.5,
- 219.5,
- 220.5,
- 221.5,
- 222.5,
- 223.5,
- 224.5,
- 225.5,
- 226.5,
- 227.5,
- 228.5,
- 229.5,
- 230.5,
- 231.5,
- 232.5,
- 233.5,
- 234.5,
- 235.5,
- 236.5,
- 237.5,
- 238.5,
- 239.5,
- 240.5,
- 241.5,
- 242.5,
- 243.5,
- 244.5,
- 245.5,
- 246.5,
- 247.5,
- 248.5,
- 249.5,
- 250.5,
- 251.5,
- 252.5,
- 253.5,
- 254.5,
- 255.5,
- 256.5,
- 257.5,
- 258.5,
- 259.5,
- 260.5,
- 261.5,
- 262.5,
- 263.5,
- 264.5,
- 265.5,
- 266.5,
- 267.5,
- 268.5,
- 269.5
- ],
- "index_name": "lon",
- "attributes": {
- "caption": "Zonal bias in the structure of zonal wind stress across the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N), primarily highlighting the trade winds bias (typically weaker circulation in the central Pacific and stronger in the western Pacific).",
- "values_name": "tauu",
- "index_name": "lon",
- "value_long_name": "Surface Downward Eastward Wind Stress",
- "value_standard_name": "surface_downward_eastward_stress",
- "index_standard_name": "longitude",
- "value_units": "1e-3 N/m2",
- "index_units": "degrees_east"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "zonal bias in the amplitude of the mean seasonal cycle of tauu in the equatorial Pacific"
- },
- "values": [
- 13.278434753417969,
- 13.542805671691895,
- 13.81774616241455,
- 14.10246753692627,
- 14.39622974395752,
- 14.698324203491211,
- 15.008105278015137,
- 15.324958801269531,
- 15.648323059082031,
- 15.977684020996094,
- 16.02642822265625,
- 15.7935791015625,
- 15.565240859985352,
- 15.34168815612793,
- 15.123211860656738,
- 14.910122871398926,
- 14.70274829864502,
- 14.501426696777344,
- 14.306509017944336,
- 14.118362426757812,
- 13.91630744934082,
- 13.702609062194824,
- 13.499563217163086,
- 13.307853698730469,
- 13.128156661987305,
- 12.961137771606445,
- 12.807426452636719,
- 12.667612075805664,
- 12.542218208312988,
- 12.431686401367188,
- 12.32050609588623,
- 12.206977844238281,
- 12.10651969909668,
- 12.01927375793457,
- 11.945318222045898,
- 11.88466739654541,
- 11.837270736694336,
- 11.803024291992188,
- 11.781777381896973,
- 11.773332595825195,
- 11.762954711914062,
- 11.746679306030273,
- 11.737661361694336,
- 11.73581600189209,
- 11.741044998168945,
- 11.753232955932617,
- 11.77226448059082,
- 11.798011779785156,
- 11.830339431762695,
- 11.869112014770508,
- 11.889863014221191,
- 11.890679359436035,
- 11.895278930664062,
- 11.90366268157959,
- 11.915830612182617,
- 11.931772232055664,
- 11.951475143432617,
- 11.974916458129883,
- 12.002062797546387,
- 12.03288459777832,
- 12.004648208618164,
- 11.9171781539917,
- 11.833169937133789,
- 11.752705574035645,
- 11.675857543945312,
- 11.602699279785156,
- 11.533297538757324,
- 11.46771240234375,
- 11.405999183654785,
- 11.348207473754883,
- 11.30777359008789,
- 11.286664009094238,
- 11.272116661071777,
- 11.264093399047852,
- 11.262537956237793,
- 11.26738166809082,
- 11.278544425964355,
- 11.295929908752441,
- 11.31943416595459,
- 11.348946571350098,
- 11.341096878051758,
- 11.299474716186523,
- 11.268518447875977,
- 11.248151779174805,
- 11.23826789855957,
- 11.238734245300293,
- 11.249393463134766,
- 11.270064353942871,
- 11.300555229187012,
- 11.340655326843262,
- 11.307634353637695,
- 11.200601577758789,
- 11.102018356323242,
- 11.012136459350586,
- 10.931192398071289,
- 10.859413146972656,
- 10.797018051147461,
- 10.744208335876465,
- 10.701167106628418,
- 10.668065071105957,
- 10.53098201751709,
- 10.286961555480957,
- 10.049327850341797,
- 9.818429946899414,
- 9.594632148742676,
- 9.378314971923828,
- 9.169879913330078,
- 8.969744682312012,
- 8.778355598449707,
- 8.596186637878418,
- 8.348105430603027,
- 8.039477348327637,
- 7.749658107757568,
- 7.481420993804932,
- 7.237968444824219,
- 7.022924900054932,
- 6.840230464935303,
- 6.693853855133057,
- 6.587286472320557,
- 6.52294921875
- ],
- "index": [
- 150.5,
- 151.5,
- 152.5,
- 153.5,
- 154.5,
- 155.5,
- 156.5,
- 157.5,
- 158.5,
- 159.5,
- 160.5,
- 161.5,
- 162.5,
- 163.5,
- 164.5,
- 165.5,
- 166.5,
- 167.5,
- 168.5,
- 169.5,
- 170.5,
- 171.5,
- 172.5,
- 173.5,
- 174.5,
- 175.5,
- 176.5,
- 177.5,
- 178.5,
- 179.5,
- 180.5,
- 181.5,
- 182.5,
- 183.5,
- 184.5,
- 185.5,
- 186.5,
- 187.5,
- 188.5,
- 189.5,
- 190.5,
- 191.5,
- 192.5,
- 193.5,
- 194.5,
- 195.5,
- 196.5,
- 197.5,
- 198.5,
- 199.5,
- 200.5,
- 201.5,
- 202.5,
- 203.5,
- 204.5,
- 205.5,
- 206.5,
- 207.5,
- 208.5,
- 209.5,
- 210.5,
- 211.5,
- 212.5,
- 213.5,
- 214.5,
- 215.5,
- 216.5,
- 217.5,
- 218.5,
- 219.5,
- 220.5,
- 221.5,
- 222.5,
- 223.5,
- 224.5,
- 225.5,
- 226.5,
- 227.5,
- 228.5,
- 229.5,
- 230.5,
- 231.5,
- 232.5,
- 233.5,
- 234.5,
- 235.5,
- 236.5,
- 237.5,
- 238.5,
- 239.5,
- 240.5,
- 241.5,
- 242.5,
- 243.5,
- 244.5,
- 245.5,
- 246.5,
- 247.5,
- 248.5,
- 249.5,
- 250.5,
- 251.5,
- 252.5,
- 253.5,
- 254.5,
- 255.5,
- 256.5,
- 257.5,
- 258.5,
- 259.5,
- 260.5,
- 261.5,
- 262.5,
- 263.5,
- 264.5,
- 265.5,
- 266.5,
- 267.5,
- 268.5,
- 269.5
- ],
- "index_name": "lon",
- "attributes": {
- "caption": "Zonal bias in the amplitude of the mean seasonal cycle of zonal wind stress in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
- "values_name": "tauu",
- "index_name": "lon",
- "value_long_name": "Surface Downward Eastward Wind Stress",
- "value_standard_name": "surface_downward_eastward_stress",
- "index_standard_name": "longitude",
- "value_units": "1e-3 N/m2",
- "index_units": "degrees_east"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "meridional bias in the time-mean pr structure across the eastern Pacific"
- },
- "values": [
- 2.7396721839904785,
- 2.749121904373169,
- 2.7585723400115967,
- 2.768022060394287,
- 2.777472496032715,
- 2.677685499191284,
- 2.4686617851257324,
- 2.2596383094787598,
- 2.050614356994629,
- 1.8415906429290771,
- 1.6325671672821045,
- 1.4235435724258423,
- 1.2145196199417114,
- 1.0054960250854492,
- 0.7964723706245422,
- 1.0640085935592651,
- 1.8081053495407104,
- 2.552201747894287,
- 3.2962982654571533,
- 4.0403947830200195,
- 4.784490585327148,
- 5.528587818145752,
- 6.272683620452881,
- 7.016780376434326,
- 7.760876655578613,
- 7.815101146697998,
- 7.179453372955322,
- 6.5438055992126465,
- 5.908157825469971,
- 5.272509574890137
- ],
- "index": [
- -14.5,
- -13.5,
- -12.5,
- -11.5,
- -10.5,
- -9.5,
- -8.5,
- -7.5,
- -6.5,
- -5.5,
- -4.5,
- -3.5,
- -2.5,
- -1.5,
- -0.5,
- 0.5,
- 1.5,
- 2.5,
- 3.5,
- 4.5,
- 5.5,
- 6.5,
- 7.5,
- 8.5,
- 9.5,
- 10.5,
- 11.5,
- 12.5,
- 13.5,
- 14.5
- ],
- "index_name": "lat",
- "attributes": {
- "caption": "Meridional bias in the time-mean precipitation structure across the eastern Pacific (averaged between 150-90\u00b0W), primarily illustrating the double intertropical convergence zone (ITCZ) bias.",
- "values_name": "pr",
- "index_name": "lat",
- "value_long_name": "Precipitation",
- "value_standard_name": "lwe_precipitation_rate",
- "index_standard_name": "latitude",
- "value_units": "mm/day",
- "index_units": "degrees_north"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "meridional bias in the amplitude of the mean seasonal pr cycle in the eastern Pacific"
- },
- "values": [
- 1.2740155458450317,
- 1.4513113498687744,
- 1.631900429725647,
- 1.814828634262085,
- 1.9994736909866333,
- 1.986014485359192,
- 1.778141736984253,
- 1.5776915550231934,
- 1.3855195045471191,
- 1.2018123865127563,
- 1.0264452695846558,
- 0.8594582676887512,
- 0.7013797163963318,
- 0.553744375705719,
- 0.4234409034252167,
- 0.4606313705444336,
- 0.8850376605987549,
- 1.4533424377441406,
- 2.0656399726867676,
- 2.6920766830444336,
- 3.3240840435028076,
- 3.9587631225585938,
- 4.59491491317749,
- 5.231961250305176,
- 5.869589805603027,
- 5.919764041900635,
- 5.382532596588135,
- 4.84589958190918,
- 4.310055255889893,
- 3.7752912044525146
- ],
- "index": [
- -14.5,
- -13.5,
- -12.5,
- -11.5,
- -10.5,
- -9.5,
- -8.5,
- -7.5,
- -6.5,
- -5.5,
- -4.5,
- -3.5,
- -2.5,
- -1.5,
- -0.5,
- 0.5,
- 1.5,
- 2.5,
- 3.5,
- 4.5,
- 5.5,
- 6.5,
- 7.5,
- 8.5,
- 9.5,
- 10.5,
- 11.5,
- 12.5,
- 13.5,
- 14.5
- ],
- "index_name": "lat",
- "attributes": {
- "caption": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90\u00b0W). ",
- "values_name": "pr",
- "index_name": "lat",
- "value_long_name": "Precipitation",
- "value_standard_name": "lwe_precipitation_rate",
- "index_standard_name": "latitude",
- "value_units": "mm/day",
- "index_units": "degrees_north"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "meridional bias in the amplitude of the mean seasonal pr cycle in the eastern Pacific"
- },
- "values": [
- 0.41657572984695435,
- 0.37971824407577515,
- 0.35848936438560486,
- 0.35610005259513855,
- 0.43405085802078247,
- 0.5596551299095154,
- 0.7323409914970398,
- 0.9949737787246704,
- 1.2680846452713013,
- 1.3659218549728394,
- 1.4142215251922607,
- 1.3871383666992188,
- 1.1102941036224365,
- 0.8518168330192566,
- 0.8022720813751221,
- 0.8256241679191589,
- 0.9178799390792847,
- 1.2416775226593018,
- 1.608694076538086,
- 1.4539971351623535,
- 1.6589003801345825,
- 2.047926664352417,
- 2.552967071533203,
- 3.685457944869995,
- 3.9105143547058105,
- 3.9467885494232178,
- 3.9599010944366455,
- 3.4699177742004395,
- 3.013047695159912,
- 2.5897719860076904
- ],
- "index": [
- -14.5,
- -13.5,
- -12.5,
- -11.5,
- -10.5,
- -9.5,
- -8.5,
- -7.5,
- -6.5,
- -5.5,
- -4.5,
- -3.5,
- -2.5,
- -1.5,
- -0.5,
- 0.5,
- 1.5,
- 2.5,
- 3.5,
- 4.5,
- 5.5,
- 6.5,
- 7.5,
- 8.5,
- 9.5,
- 10.5,
- 11.5,
- 12.5,
- 13.5,
- 14.5
- ],
- "index_name": "lat",
- "attributes": {
- "caption": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90\u00b0W). ",
- "values_name": "pr",
- "index_name": "lat",
- "value_long_name": "Precipitation",
- "value_standard_name": "lwe_precipitation_rate",
- "index_standard_name": "latitude",
- "value_units": "mm/day",
- "index_units": "degrees_north"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/diagnostic.json
new file mode 100644
index 0000000..032b445
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/diagnostic.json
@@ -0,0 +1,9 @@
+{
+ "DIMENSIONS": {
+ "json_structure": []
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png
new file mode 100644
index 0000000..77dc470
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png
new file mode 100644
index 0000000..a7e3121
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png
new file mode 100644
index 0000000..3f9a1da
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png
new file mode 100644
index 0000000..ff51f08
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png
new file mode 100644
index 0000000..6d76dd2
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png
new file mode 100644
index 0000000..e20abd4
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png
new file mode 100644
index 0000000..c2e7ee8
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png
new file mode 100644
index 0000000..d0bca65
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png
new file mode 100644
index 0000000..59821de
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png
new file mode 100644
index 0000000..1d71a8d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png
new file mode 100644
index 0000000..df8aa62
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png
new file mode 100644
index 0000000..4fef4fd
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/matrix.csv b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/matrix.csv
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/matrix.csv
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/matrix.csv
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/output.json
similarity index 55%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/output.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/output.json
index 69ab715..cd38774 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/output.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/output.json
@@ -1,192 +1,243 @@
{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/index.html",
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/index.html",
"provenance": {
"environment": {},
"modeldata": [],
"obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/run/main_log_debug.txt"
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/run/main_log_debug.txt"
},
"data": {
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_bias.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_bias.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_bias.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_bias.nc",
"long_name": "Zonal bias in the time-mean precipitation structure across the equatorial Pacific (averaged between 5°S-5°N), illustrating the increased precipitation in the eastern Pacific and decreased precipitation in the western Pacific.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the time-mean pr structure across the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_seacycle.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_seacycle.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_seacycle.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_pr_seacycle.nc",
"long_name": "Zonal bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific (averaged between 5°S-5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of pr in the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_bias.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_bias.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_bias.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_bias.nc",
"long_name": "Zonal bias in the sea surface temperature structure across the equatorial Pacific (averaged between 5°S-5°N), primarily illustrating the cold tongue bias (typically warmer near South America and cooler further west).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the time-mean sst structure across the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_seacycle.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_seacycle.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_seacycle.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_sst_seacycle.nc",
"long_name": "Zonal bias in the amplitude of the mean seasonal cycle of sea surface temperature in the equatorial Pacific (averaged between 5°S-5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of sst in the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_bias.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_bias.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_bias.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_bias.nc",
"long_name": "Zonal bias in the structure of zonal wind stress across the equatorial Pacific (averaged between 5°S-5°N), primarily highlighting the trade winds bias (typically weaker circulation in the central Pacific and stronger in the western Pacific).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the time-mean tauu structure across the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_seacycle.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_seacycle.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_seacycle.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_eq_tauu_seacycle.nc",
"long_name": "Zonal bias in the amplitude of the mean seasonal cycle of zonal wind stress in the equatorial Pacific (averaged between 5°S-5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of tauu in the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double.nc",
"long_name": "Meridional bias in the time-mean precipitation structure across the eastern Pacific (averaged between 150-90°W), primarily illustrating the double intertropical convergence zone (ITCZ) bias.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "meridional bias in the time-mean pr structure across the eastern Pacific"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double_seacycle.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double_seacycle.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double_seacycle.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/ACCESS-ESM1-5_pr_double_seacycle.nc",
"long_name": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90°W). ",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "meridional bias in the amplitude of the mean seasonal pr cycle in the eastern Pacific"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_bias.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_bias.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_bias.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_bias.nc",
"long_name": "Zonal bias in the time-mean precipitation structure across the equatorial Pacific (averaged between 5°S-5°N), illustrating the increased precipitation in the eastern Pacific and decreased precipitation in the western Pacific.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the time-mean pr structure across the equatorial Pacific",
+ "reference_source_id": "GPCP-V2.3"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_seacycle.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_seacycle.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_seacycle.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/GPCP-V2.3_eq_pr_seacycle.nc",
"long_name": "Zonal bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific (averaged between 5°S-5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {}
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double.nc",
"long_name": "Meridional bias in the time-mean precipitation structure across the eastern Pacific (averaged between 150-90°W), primarily illustrating the double intertropical convergence zone (ITCZ) bias.",
"description": "",
- "dimensions": null
+ "dimensions": {}
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double_seacycle.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double_seacycle.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double_seacycle.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/GPCP-V2.3_pr_double_seacycle.nc",
"long_name": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90°W). ",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "meridional bias in the amplitude of the mean seasonal pr cycle in the eastern Pacific"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_bias.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_bias.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_bias.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_bias.nc",
"long_name": "Zonal bias in the sea surface temperature structure across the equatorial Pacific (averaged between 5°S-5°N), primarily illustrating the cold tongue bias (typically warmer near South America and cooler further west).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the time-mean sst structure across the equatorial Pacific",
+ "reference_source_id": "TROPFLUX"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_seacycle.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_seacycle.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_seacycle.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/TROPFLUX_eq_sst_seacycle.nc",
"long_name": "Zonal bias in the amplitude of the mean seasonal cycle of sea surface temperature in the equatorial Pacific (averaged between 5°S-5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {}
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_bias.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_bias.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_bias.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_bias.nc",
"long_name": "Zonal bias in the structure of zonal wind stress across the equatorial Pacific (averaged between 5°S-5°N), primarily highlighting the trade winds bias (typically weaker circulation in the central Pacific and stronger in the western Pacific).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the time-mean tauu structure across the equatorial Pacific",
+ "reference_source_id": "TROPFLUX"
+ }
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_seacycle.nc": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_seacycle.nc",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_seacycle.nc": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/TROPFLUX_eq_tauu_seacycle.nc",
"long_name": "Zonal bias in the amplitude of the mean seasonal cycle of zonal wind stress in the equatorial Pacific (averaged between 5°S-5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {}
},
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/matrix.csv": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/matrix.csv",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/matrix.csv": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/matrix.csv",
"long_name": "List of metric values.",
"description": "",
- "dimensions": null
+ "dimensions": {}
}
},
"plots": {
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png",
- "long_name": "Zonal bias in the time-mean precipitation structure across the equatorial Pacific (averaged between 5°S-5°N), illustrating the increased precipitation in the eastern Pacific and decreased precipitation in the western Pacific.",
+ "executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png",
+ "long_name": "Time-mean precipitation bias in the equatorial Pacific, primarily highlighting the double intertropical convergence zone (ITCZ) bias.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "variable_id": "pr"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png",
- "long_name": "Zonal bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific (averaged between 5°S-5°N).",
+ "executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png",
+ "long_name": "Bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "variable_id": "pr"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png",
- "long_name": "Zonal bias in the sea surface temperature structure across the equatorial Pacific (averaged between 5°S-5°N), primarily illustrating the cold tongue bias (typically warmer near South America and cooler further west).",
+ "executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png",
+ "long_name": "Time-mean zonal wind stress bias in the equatorial Pacific.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "variable_id": "tauu"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png",
- "long_name": "Zonal bias in the amplitude of the mean seasonal cycle of sea surface temperature in the equatorial Pacific (averaged between 5°S-5°N).",
+ "executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png",
+ "long_name": "Time-mean sea surface temperature bias in the equatorial Pacific.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "variable_id": "tos"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png",
- "long_name": "Zonal bias in the structure of zonal wind stress across the equatorial Pacific (averaged between 5°S-5°N), primarily highlighting the trade winds bias (typically weaker circulation in the central Pacific and stronger in the western Pacific).",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_bias.png",
+ "long_name": "Zonal bias in the time-mean precipitation structure across the equatorial Pacific (averaged between 5°S-5°N), illustrating the increased precipitation in the eastern Pacific and decreased precipitation in the western Pacific.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the time-mean pr structure across the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png",
- "long_name": "Zonal bias in the amplitude of the mean seasonal cycle of zonal wind stress in the equatorial Pacific (averaged between 5°S-5°N).",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_pr_seacycle.png",
+ "long_name": "Zonal bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific (averaged between 5°S-5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of pr in the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png",
- "long_name": "Meridional bias in the time-mean precipitation structure across the eastern Pacific (averaged between 150-90°W), primarily illustrating the double intertropical convergence zone (ITCZ) bias.",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_bias.png",
+ "long_name": "Zonal bias in the sea surface temperature structure across the equatorial Pacific (averaged between 5°S-5°N), primarily illustrating the cold tongue bias (typically warmer near South America and cooler further west).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the time-mean sst structure across the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png",
- "long_name": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90°W). ",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_sst_seacycle.png",
+ "long_name": "Zonal bias in the amplitude of the mean seasonal cycle of sea surface temperature in the equatorial Pacific (averaged between 5°S-5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of sst in the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_bias_level2.png",
- "long_name": "Time-mean precipitation bias in the equatorial Pacific, primarily highlighting the double intertropical convergence zone (ITCZ) bias.",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_bias.png",
+ "long_name": "Zonal bias in the structure of zonal wind stress across the equatorial Pacific (averaged between 5°S-5°N), primarily highlighting the trade winds bias (typically weaker circulation in the central Pacific and stronger in the western Pacific).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the time-mean tauu structure across the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_pr_map_sea_cyclel2.png",
- "long_name": "Bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific.",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_eq_tauu_seacycle.png",
+ "long_name": "Zonal bias in the amplitude of the mean seasonal cycle of zonal wind stress in the equatorial Pacific (averaged between 5°S-5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of tauu in the equatorial Pacific"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tauu_map_bias_level2.png",
- "long_name": "Time-mean zonal wind stress bias in the equatorial Pacific.",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double.png",
+ "long_name": "Meridional bias in the time-mean precipitation structure across the eastern Pacific (averaged between 150-90°W), primarily illustrating the double intertropical convergence zone (ITCZ) bias.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "meridional bias in the time-mean pr structure across the eastern Pacific"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_level2/plot_script/png/ACCESS-ESM1-5_tos_map_bias_level2.png",
- "long_name": "Time-mean sea surface temperature bias in the equatorial Pacific.",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_pr_double_seacycle.png",
+ "long_name": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90°W). ",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "statistic": "meridional bias in the amplitude of the mean seasonal pr cycle in the eastern Pacific"
+ }
}
},
"html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-basic-climatology/6024e08d17aa8cc077af1bd806864223f41409c1/executions/recipe_20251001_162136/index.html",
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/executions/recipe_20260716_140605/index.html",
"long_name": "Results page",
"description": "Page showing the executions of the ESMValTool run.",
"dimensions": null
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/series.json
new file mode 100644
index 0000000..360091c
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-basic-climatology/gn_r1i1p1f1_ACCESS-ESM1-5_g6_v1_c8344d9d/6/series.json
@@ -0,0 +1,4469 @@
+[
+ {
+ "attributes": {
+ "caption": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90\u00b0W). ",
+ "index_name": "lat",
+ "index_standard_name": "latitude",
+ "index_units": "degrees_north",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "GPCP-V2.3",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "meridional bias in the amplitude of the mean seasonal pr cycle in the eastern Pacific"
+ },
+ "index": [
+ -14.5,
+ -13.5,
+ -12.5,
+ -11.5,
+ -10.5,
+ -9.5,
+ -8.5,
+ -7.5,
+ -6.5,
+ -5.5,
+ -4.5,
+ -3.5,
+ -2.5,
+ -1.5,
+ -0.5,
+ 0.5,
+ 1.5,
+ 2.5,
+ 3.5,
+ 4.5,
+ 5.5,
+ 6.5,
+ 7.5,
+ 8.5,
+ 9.5,
+ 10.5,
+ 11.5,
+ 12.5,
+ 13.5,
+ 14.5
+ ],
+ "index_name": "lat",
+ "kind": "reference",
+ "values": [
+ 1.2740155458450317,
+ 1.4513113498687744,
+ 1.631900429725647,
+ 1.814828634262085,
+ 1.9994736909866333,
+ 1.986014485359192,
+ 1.778141736984253,
+ 1.5776915550231934,
+ 1.3855195045471191,
+ 1.2018123865127563,
+ 1.0264452695846558,
+ 0.8594582676887512,
+ 0.7013797163963318,
+ 0.553744375705719,
+ 0.4234409034252167,
+ 0.4606313705444336,
+ 0.8850376605987549,
+ 1.4533424377441406,
+ 2.0656399726867676,
+ 2.6920766830444336,
+ 3.3240840435028076,
+ 3.9587631225585938,
+ 4.59491491317749,
+ 5.231961250305176,
+ 5.869589805603027,
+ 5.919764041900635,
+ 5.382532596588135,
+ 4.84589958190918,
+ 4.310055255889893,
+ 3.7752912044525146
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90\u00b0W). ",
+ "index_name": "lat",
+ "index_standard_name": "latitude",
+ "index_units": "degrees_north",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "GPCP-V2.3",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "meridional bias in the amplitude of the mean seasonal pr cycle in the eastern Pacific"
+ },
+ "index": [
+ -14.5,
+ -13.5,
+ -12.5,
+ -11.5,
+ -10.5,
+ -9.5,
+ -8.5,
+ -7.5,
+ -6.5,
+ -5.5,
+ -4.5,
+ -3.5,
+ -2.5,
+ -1.5,
+ -0.5,
+ 0.5,
+ 1.5,
+ 2.5,
+ 3.5,
+ 4.5,
+ 5.5,
+ 6.5,
+ 7.5,
+ 8.5,
+ 9.5,
+ 10.5,
+ 11.5,
+ 12.5,
+ 13.5,
+ 14.5
+ ],
+ "index_name": "lat",
+ "kind": "reference",
+ "values": [
+ 0.41657572984695435,
+ 0.37971824407577515,
+ 0.35848936438560486,
+ 0.35610005259513855,
+ 0.43405085802078247,
+ 0.5596551299095154,
+ 0.7323409914970398,
+ 0.9949737787246704,
+ 1.2680846452713013,
+ 1.3659218549728394,
+ 1.4142215251922607,
+ 1.3871383666992188,
+ 1.1102941036224365,
+ 0.8518168330192566,
+ 0.8022720813751221,
+ 0.8256241679191589,
+ 0.9178799390792847,
+ 1.2416775226593018,
+ 1.608694076538086,
+ 1.4539971351623535,
+ 1.6589003801345825,
+ 2.047926664352417,
+ 2.552967071533203,
+ 3.685457944869995,
+ 3.9105143547058105,
+ 3.9467885494232178,
+ 3.9599010944366455,
+ 3.4699177742004395,
+ 3.013047695159912,
+ 2.5897719860076904
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Meridional bias in the time-mean precipitation structure across the eastern Pacific (averaged between 150-90\u00b0W), primarily illustrating the double intertropical convergence zone (ITCZ) bias.",
+ "index_name": "lat",
+ "index_standard_name": "latitude",
+ "index_units": "degrees_north",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "GPCP-V2.3",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "meridional bias in the time-mean pr structure across the eastern Pacific"
+ },
+ "index": [
+ -14.5,
+ -13.5,
+ -12.5,
+ -11.5,
+ -10.5,
+ -9.5,
+ -8.5,
+ -7.5,
+ -6.5,
+ -5.5,
+ -4.5,
+ -3.5,
+ -2.5,
+ -1.5,
+ -0.5,
+ 0.5,
+ 1.5,
+ 2.5,
+ 3.5,
+ 4.5,
+ 5.5,
+ 6.5,
+ 7.5,
+ 8.5,
+ 9.5,
+ 10.5,
+ 11.5,
+ 12.5,
+ 13.5,
+ 14.5
+ ],
+ "index_name": "lat",
+ "kind": "reference",
+ "values": [
+ 2.7396721839904785,
+ 2.749121904373169,
+ 2.7585723400115967,
+ 2.768022060394287,
+ 2.777472496032715,
+ 2.677685499191284,
+ 2.4686617851257324,
+ 2.2596383094787598,
+ 2.050614356994629,
+ 1.8415906429290771,
+ 1.6325671672821045,
+ 1.4235435724258423,
+ 1.2145196199417114,
+ 1.0054960250854492,
+ 0.7964723706245422,
+ 1.0640085935592651,
+ 1.8081053495407104,
+ 2.552201747894287,
+ 3.2962982654571533,
+ 4.0403947830200195,
+ 4.784490585327148,
+ 5.528587818145752,
+ 6.272683620452881,
+ 7.016780376434326,
+ 7.760876655578613,
+ 7.815101146697998,
+ 7.179453372955322,
+ 6.5438055992126465,
+ 5.908157825469971,
+ 5.272509574890137
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "GPCP-V2.3",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of pr in the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "kind": "reference",
+ "values": [
+ 1.9967015981674194,
+ 1.9799515008926392,
+ 1.965376615524292,
+ 1.9529552459716797,
+ 1.9426591396331787,
+ 1.9344574213027954,
+ 1.9283173084259033,
+ 1.9242045879364014,
+ 1.9220869541168213,
+ 1.9219309091567993,
+ 1.8831630945205688,
+ 1.8052797317504883,
+ 1.7287715673446655,
+ 1.65378737449646,
+ 1.5804989337921143,
+ 1.509103536605835,
+ 1.4398307800292969,
+ 1.3729509115219116,
+ 1.30878484249115,
+ 1.247719168663025,
+ 1.2035176753997803,
+ 1.1743961572647095,
+ 1.1464593410491943,
+ 1.1198153495788574,
+ 1.0945930480957031,
+ 1.0709474086761475,
+ 1.0490703582763672,
+ 1.029205083847046,
+ 1.011672854423523,
+ 0.9969115257263184,
+ 0.9870942831039429,
+ 0.9803160429000854,
+ 0.9742891192436218,
+ 0.9690539240837097,
+ 0.9646547436714172,
+ 0.9611369967460632,
+ 0.9585472941398621,
+ 0.9569312334060669,
+ 0.9563301205635071,
+ 0.9567778706550598,
+ 0.956905722618103,
+ 0.9565302729606628,
+ 0.9569666981697083,
+ 0.9581974148750305,
+ 0.9602028727531433,
+ 0.9629611968994141,
+ 0.9664489030838013,
+ 0.9706413149833679,
+ 0.9755125045776367,
+ 0.981036365032196,
+ 0.9865730404853821,
+ 0.9921060800552368,
+ 0.9982366561889648,
+ 1.004952073097229,
+ 1.0122389793395996,
+ 1.0200831890106201,
+ 1.0284702777862549,
+ 1.037385106086731,
+ 1.0468127727508545,
+ 1.056738257408142,
+ 1.064895510673523,
+ 1.071142554283142,
+ 1.0776808261871338,
+ 1.0845054388046265,
+ 1.0916131734848022,
+ 1.0990010499954224,
+ 1.1066666841506958,
+ 1.1146080493927002,
+ 1.1228244304656982,
+ 1.1313146352767944,
+ 1.1336586475372314,
+ 1.1298308372497559,
+ 1.1262400150299072,
+ 1.12288498878479,
+ 1.1197658777236938,
+ 1.1168854236602783,
+ 1.1142475605010986,
+ 1.1118590831756592,
+ 1.1097296476364136,
+ 1.107871413230896,
+ 1.0973613262176514,
+ 1.0787317752838135,
+ 1.061105489730835,
+ 1.044490933418274,
+ 1.0288900136947632,
+ 1.014301061630249,
+ 1.0007188320159912,
+ 0.9881393313407898,
+ 0.9765641093254089,
+ 0.9660071134567261,
+ 0.959515392780304,
+ 0.9588043093681335,
+ 0.9613490104675293,
+ 0.9670503735542297,
+ 0.9758003354072571,
+ 0.9874847531318665,
+ 1.0019856691360474,
+ 1.0191829204559326,
+ 1.0389560461044312,
+ 1.0611851215362549,
+ 1.0713112354278564,
+ 1.0707861185073853,
+ 1.0744258165359497,
+ 1.0820741653442383,
+ 1.0935732126235962,
+ 1.1087642908096313,
+ 1.127488374710083,
+ 1.1495847702026367,
+ 1.1748920679092407,
+ 1.2032458782196045,
+ 1.2204768657684326,
+ 1.2293779850006104,
+ 1.2442595958709717,
+ 1.2645162343978882,
+ 1.2897008657455444,
+ 1.319469690322876,
+ 1.35354483127594,
+ 1.3916923999786377,
+ 1.4337122440338135,
+ 1.479430913925171
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the amplitude of the mean seasonal cycle of sea surface temperature in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Sea Surface Temperature",
+ "value_standard_name": "sea_surface_temperature",
+ "value_units": "degC",
+ "values_name": "tos"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "GPCP-V2.3",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of sst in the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "kind": "reference",
+ "values": [
+ 0.45128609359422317,
+ 0.4618004665475176,
+ 0.4730685838718825,
+ 0.4850525201562159,
+ 0.4977124084174755,
+ 0.5110078105007465,
+ 0.5248990234252361,
+ 0.5393481948322717,
+ 0.5543201784027618,
+ 0.5697831145098282,
+ 0.4959776390850229,
+ 0.5015952964860505,
+ 0.5074535887827509,
+ 0.5135404842453182,
+ 0.5198442718177961,
+ 0.5263541779569011,
+ 0.5330608494291293,
+ 0.539956679070081,
+ 0.5470359847226468,
+ 0.5542950701863388,
+ 0.5617322027878129,
+ 0.5630304328005156,
+ 0.5645246006877241,
+ 0.5662099717078981,
+ 0.5680823670782609,
+ 0.5701381635920793,
+ 0.5723742924564262,
+ 0.5747882375368073,
+ 0.5773780333019647,
+ 0.5801422628317854,
+ 0.5830800562903364,
+ 0.5814990218805539,
+ 0.580243743978629,
+ 0.579312865750949,
+ 0.5787050196181196,
+ 0.578418824190194,
+ 0.5784528965862238,
+ 0.5788058799072999,
+ 0.5794764847372613,
+ 0.5804635427536009,
+ 0.5817660699457827,
+ 0.5770991051681961,
+ 0.572985647114612,
+ 0.5694206034716042,
+ 0.5663980380122713,
+ 0.5639112972803727,
+ 0.5619532550491417,
+ 0.5605166492184026,
+ 0.5595944763341599,
+ 0.5591804066171772,
+ 0.5592691865413671,
+ 0.5537941480264006,
+ 0.5493789888564197,
+ 0.5460047612222227,
+ 0.543646247220036,
+ 0.5422732386624494,
+ 0.5418519100903822,
+ 0.5423461634324978,
+ 0.5437188641393566,
+ 0.5459329279299396,
+ 0.548952248793834,
+ 0.5439410447941516,
+ 0.5401992797848539,
+ 0.5377212939421033,
+ 0.5364986266021435,
+ 0.536520905380492,
+ 0.5377768047004462,
+ 0.5402550207838649,
+ 0.5439452082559839,
+ 0.5488388207614591,
+ 0.5549297907552779,
+ 0.5544043932826839,
+ 0.5558416691224716,
+ 0.5592851994682122,
+ 0.5647729183248515,
+ 0.5723293269979981,
+ 0.5819553217100805,
+ 0.5936192107677636,
+ 0.6072537126843965,
+ 0.6227612451967348,
+ 0.6400251655556168,
+ 0.6504029460255072,
+ 0.6640567305838434,
+ 0.6807582829704403,
+ 0.7002744805992871,
+ 0.7223777347609066,
+ 0.7468520552574066,
+ 0.7734964212688882,
+ 0.8021265201479265,
+ 0.8325754611501879,
+ 0.8646938096768956,
+ 0.8566643497099886,
+ 0.8533948984328228,
+ 0.8550367062142274,
+ 0.8616728913396345,
+ 0.8733035128166845,
+ 0.8898367096764861,
+ 0.9110897055997473,
+ 0.9368014021090609,
+ 0.966654588630095,
+ 1.0003026041183145,
+ 0.9983251458817254,
+ 1.0014306346317037,
+ 1.0096167591343856,
+ 1.0228075927628422,
+ 1.040855644944593,
+ 1.0635507303191698,
+ 1.0906340071646965,
+ 1.1218146650109218,
+ 1.1567867257934465,
+ 1.1952439900132668,
+ 1.1847647384110538,
+ 1.1757435940843826,
+ 1.1682258737643236,
+ 1.1622641436083208,
+ 1.1579164814917813,
+ 1.1552436767304675,
+ 1.1543053735061806,
+ 1.1551554905620172,
+ 1.157837630041972
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the amplitude of the mean seasonal cycle of zonal wind stress in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Surface Downward Eastward Wind Stress",
+ "value_standard_name": "surface_downward_eastward_stress",
+ "value_units": "1e-3 N/m2",
+ "values_name": "tauu"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "GPCP-V2.3",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of tauu in the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "kind": "reference",
+ "values": [
+ 13.278434753417969,
+ 13.542805671691895,
+ 13.81774616241455,
+ 14.10246753692627,
+ 14.39622974395752,
+ 14.698324203491211,
+ 15.008105278015137,
+ 15.324958801269531,
+ 15.648323059082031,
+ 15.977684020996094,
+ 16.02642822265625,
+ 15.7935791015625,
+ 15.565240859985352,
+ 15.34168815612793,
+ 15.123211860656738,
+ 14.910122871398926,
+ 14.70274829864502,
+ 14.501426696777344,
+ 14.306509017944336,
+ 14.118362426757812,
+ 13.91630744934082,
+ 13.702609062194824,
+ 13.499563217163086,
+ 13.307853698730469,
+ 13.128156661987305,
+ 12.961137771606445,
+ 12.807426452636719,
+ 12.667612075805664,
+ 12.542218208312988,
+ 12.431686401367188,
+ 12.32050609588623,
+ 12.206977844238281,
+ 12.10651969909668,
+ 12.01927375793457,
+ 11.945318222045898,
+ 11.88466739654541,
+ 11.837270736694336,
+ 11.803024291992188,
+ 11.781777381896973,
+ 11.773332595825195,
+ 11.762954711914062,
+ 11.746679306030273,
+ 11.737661361694336,
+ 11.73581600189209,
+ 11.741044998168945,
+ 11.753232955932617,
+ 11.77226448059082,
+ 11.798011779785156,
+ 11.830339431762695,
+ 11.869112014770508,
+ 11.889863014221191,
+ 11.890679359436035,
+ 11.895278930664062,
+ 11.90366268157959,
+ 11.915830612182617,
+ 11.931772232055664,
+ 11.951475143432617,
+ 11.974916458129883,
+ 12.002062797546387,
+ 12.03288459777832,
+ 12.004648208618164,
+ 11.9171781539917,
+ 11.833169937133789,
+ 11.752705574035645,
+ 11.675857543945312,
+ 11.602699279785156,
+ 11.533297538757324,
+ 11.46771240234375,
+ 11.405999183654785,
+ 11.348207473754883,
+ 11.30777359008789,
+ 11.286664009094238,
+ 11.272116661071777,
+ 11.264093399047852,
+ 11.262537956237793,
+ 11.26738166809082,
+ 11.278544425964355,
+ 11.295929908752441,
+ 11.31943416595459,
+ 11.348946571350098,
+ 11.341096878051758,
+ 11.299474716186523,
+ 11.268518447875977,
+ 11.248151779174805,
+ 11.23826789855957,
+ 11.238734245300293,
+ 11.249393463134766,
+ 11.270064353942871,
+ 11.300555229187012,
+ 11.340655326843262,
+ 11.307634353637695,
+ 11.200601577758789,
+ 11.102018356323242,
+ 11.012136459350586,
+ 10.931192398071289,
+ 10.859413146972656,
+ 10.797018051147461,
+ 10.744208335876465,
+ 10.701167106628418,
+ 10.668065071105957,
+ 10.53098201751709,
+ 10.286961555480957,
+ 10.049327850341797,
+ 9.818429946899414,
+ 9.594632148742676,
+ 9.378314971923828,
+ 9.169879913330078,
+ 8.969744682312012,
+ 8.778355598449707,
+ 8.596186637878418,
+ 8.348105430603027,
+ 8.039477348327637,
+ 7.749658107757568,
+ 7.481420993804932,
+ 7.237968444824219,
+ 7.022924900054932,
+ 6.840230464935303,
+ 6.693853855133057,
+ 6.587286472320557,
+ 6.52294921875
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the time-mean precipitation structure across the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N), illustrating the increased precipitation in the eastern Pacific and decreased precipitation in the western Pacific.",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "GPCP-V2.3",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the time-mean pr structure across the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "kind": "reference",
+ "values": [
+ 8.117986679077148,
+ 8.118301391601562,
+ 7.976202011108398,
+ 7.834101676940918,
+ 7.7547526359558105,
+ 7.696323394775391,
+ 7.640346527099609,
+ 7.591729164123535,
+ 7.543112277984619,
+ 7.485803604125977,
+ 7.425597190856934,
+ 7.333915710449219,
+ 7.147811412811279,
+ 6.961706638336182,
+ 6.782384395599365,
+ 6.60532283782959,
+ 6.43104362487793,
+ 6.26510763168335,
+ 6.099172115325928,
+ 5.957348823547363,
+ 5.823561668395996,
+ 5.692299842834473,
+ 5.5686116218566895,
+ 5.444924354553223,
+ 5.317512035369873,
+ 5.188859939575195,
+ 5.067350387573242,
+ 4.967269420623779,
+ 4.867188930511475,
+ 4.751457214355469,
+ 4.630509376525879,
+ 4.510582447052002,
+ 4.393721580505371,
+ 4.276859760284424,
+ 4.1584086418151855,
+ 4.039427757263184,
+ 3.923072099685669,
+ 3.814595937728882,
+ 3.7061190605163574,
+ 3.6288108825683594,
+ 3.561891555786133,
+ 3.4971489906311035,
+ 3.4389357566833496,
+ 3.380722761154175,
+ 3.3010196685791016,
+ 3.2141523361206055,
+ 3.123894453048706,
+ 3.0234644412994385,
+ 2.923034429550171,
+ 2.82919979095459,
+ 2.7375638484954834,
+ 2.6544320583343506,
+ 2.5968151092529297,
+ 2.5391976833343506,
+ 2.4806668758392334,
+ 2.4218320846557617,
+ 2.3706812858581543,
+ 2.342583417892456,
+ 2.314485788345337,
+ 2.266874074935913,
+ 2.2127585411071777,
+ 2.1626150608062744,
+ 2.124389171600342,
+ 2.0861637592315674,
+ 2.0620551109313965,
+ 2.042652130126953,
+ 2.021456003189087,
+ 1.9948816299438477,
+ 1.9683070182800293,
+ 1.9428383111953735,
+ 1.9177383184432983,
+ 1.891872525215149,
+ 1.8637094497680664,
+ 1.8355463743209839,
+ 1.811532735824585,
+ 1.7889025211334229,
+ 1.7683289051055908,
+ 1.7539254426956177,
+ 1.7395223379135132,
+ 1.7288168668746948,
+ 1.719343900680542,
+ 1.710667610168457,
+ 1.7043811082839966,
+ 1.6980944871902466,
+ 1.687132716178894,
+ 1.674612283706665,
+ 1.6597278118133545,
+ 1.6377506256103516,
+ 1.6157735586166382,
+ 1.595201849937439,
+ 1.5750981569290161,
+ 1.5524171590805054,
+ 1.5220035314559937,
+ 1.4915895462036133,
+ 1.4631201028823853,
+ 1.435299038887024,
+ 1.416589617729187,
+ 1.425216555595398,
+ 1.4338438510894775,
+ 1.4459340572357178,
+ 1.4591786861419678,
+ 1.4699846506118774,
+ 1.473474144935608,
+ 1.4769638776779175,
+ 1.4917981624603271,
+ 1.5104140043258667,
+ 1.5319017171859741,
+ 1.5620051622390747,
+ 1.5921082496643066,
+ 1.6216380596160889,
+ 1.6509764194488525,
+ 1.679449200630188,
+ 1.7053256034851074,
+ 1.7312017679214478,
+ 1.746657133102417,
+ 1.7586390972137451,
+ 1.7784053087234497,
+ 1.8215253353118896,
+ 1.8646453619003296,
+ 1.903151512145996
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "TROPFLUX",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of pr in the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "kind": "reference",
+ "values": [
+ 1.9967015981674194,
+ 1.9799515008926392,
+ 1.965376615524292,
+ 1.9529552459716797,
+ 1.9426591396331787,
+ 1.9344574213027954,
+ 1.9283173084259033,
+ 1.9242045879364014,
+ 1.9220869541168213,
+ 1.9219309091567993,
+ 1.8831630945205688,
+ 1.8052797317504883,
+ 1.7287715673446655,
+ 1.65378737449646,
+ 1.5804989337921143,
+ 1.509103536605835,
+ 1.4398307800292969,
+ 1.3729509115219116,
+ 1.30878484249115,
+ 1.247719168663025,
+ 1.2035176753997803,
+ 1.1743961572647095,
+ 1.1464593410491943,
+ 1.1198153495788574,
+ 1.0945930480957031,
+ 1.0709474086761475,
+ 1.0490703582763672,
+ 1.029205083847046,
+ 1.011672854423523,
+ 0.9969115257263184,
+ 0.9870942831039429,
+ 0.9803160429000854,
+ 0.9742891192436218,
+ 0.9690539240837097,
+ 0.9646547436714172,
+ 0.9611369967460632,
+ 0.9585472941398621,
+ 0.9569312334060669,
+ 0.9563301205635071,
+ 0.9567778706550598,
+ 0.956905722618103,
+ 0.9565302729606628,
+ 0.9569666981697083,
+ 0.9581974148750305,
+ 0.9602028727531433,
+ 0.9629611968994141,
+ 0.9664489030838013,
+ 0.9706413149833679,
+ 0.9755125045776367,
+ 0.981036365032196,
+ 0.9865730404853821,
+ 0.9921060800552368,
+ 0.9982366561889648,
+ 1.004952073097229,
+ 1.0122389793395996,
+ 1.0200831890106201,
+ 1.0284702777862549,
+ 1.037385106086731,
+ 1.0468127727508545,
+ 1.056738257408142,
+ 1.064895510673523,
+ 1.071142554283142,
+ 1.0776808261871338,
+ 1.0845054388046265,
+ 1.0916131734848022,
+ 1.0990010499954224,
+ 1.1066666841506958,
+ 1.1146080493927002,
+ 1.1228244304656982,
+ 1.1313146352767944,
+ 1.1336586475372314,
+ 1.1298308372497559,
+ 1.1262400150299072,
+ 1.12288498878479,
+ 1.1197658777236938,
+ 1.1168854236602783,
+ 1.1142475605010986,
+ 1.1118590831756592,
+ 1.1097296476364136,
+ 1.107871413230896,
+ 1.0973613262176514,
+ 1.0787317752838135,
+ 1.061105489730835,
+ 1.044490933418274,
+ 1.0288900136947632,
+ 1.014301061630249,
+ 1.0007188320159912,
+ 0.9881393313407898,
+ 0.9765641093254089,
+ 0.9660071134567261,
+ 0.959515392780304,
+ 0.9588043093681335,
+ 0.9613490104675293,
+ 0.9670503735542297,
+ 0.9758003354072571,
+ 0.9874847531318665,
+ 1.0019856691360474,
+ 1.0191829204559326,
+ 1.0389560461044312,
+ 1.0611851215362549,
+ 1.0713112354278564,
+ 1.0707861185073853,
+ 1.0744258165359497,
+ 1.0820741653442383,
+ 1.0935732126235962,
+ 1.1087642908096313,
+ 1.127488374710083,
+ 1.1495847702026367,
+ 1.1748920679092407,
+ 1.2032458782196045,
+ 1.2204768657684326,
+ 1.2293779850006104,
+ 1.2442595958709717,
+ 1.2645162343978882,
+ 1.2897008657455444,
+ 1.319469690322876,
+ 1.35354483127594,
+ 1.3916923999786377,
+ 1.4337122440338135,
+ 1.479430913925171
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the amplitude of the mean seasonal cycle of sea surface temperature in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Sea Surface Temperature",
+ "value_standard_name": "sea_surface_temperature",
+ "value_units": "degC",
+ "values_name": "tos"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "TROPFLUX",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of sst in the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "kind": "reference",
+ "values": [
+ 0.45128609359422317,
+ 0.4618004665475176,
+ 0.4730685838718825,
+ 0.4850525201562159,
+ 0.4977124084174755,
+ 0.5110078105007465,
+ 0.5248990234252361,
+ 0.5393481948322717,
+ 0.5543201784027618,
+ 0.5697831145098282,
+ 0.4959776390850229,
+ 0.5015952964860505,
+ 0.5074535887827509,
+ 0.5135404842453182,
+ 0.5198442718177961,
+ 0.5263541779569011,
+ 0.5330608494291293,
+ 0.539956679070081,
+ 0.5470359847226468,
+ 0.5542950701863388,
+ 0.5617322027878129,
+ 0.5630304328005156,
+ 0.5645246006877241,
+ 0.5662099717078981,
+ 0.5680823670782609,
+ 0.5701381635920793,
+ 0.5723742924564262,
+ 0.5747882375368073,
+ 0.5773780333019647,
+ 0.5801422628317854,
+ 0.5830800562903364,
+ 0.5814990218805539,
+ 0.580243743978629,
+ 0.579312865750949,
+ 0.5787050196181196,
+ 0.578418824190194,
+ 0.5784528965862238,
+ 0.5788058799072999,
+ 0.5794764847372613,
+ 0.5804635427536009,
+ 0.5817660699457827,
+ 0.5770991051681961,
+ 0.572985647114612,
+ 0.5694206034716042,
+ 0.5663980380122713,
+ 0.5639112972803727,
+ 0.5619532550491417,
+ 0.5605166492184026,
+ 0.5595944763341599,
+ 0.5591804066171772,
+ 0.5592691865413671,
+ 0.5537941480264006,
+ 0.5493789888564197,
+ 0.5460047612222227,
+ 0.543646247220036,
+ 0.5422732386624494,
+ 0.5418519100903822,
+ 0.5423461634324978,
+ 0.5437188641393566,
+ 0.5459329279299396,
+ 0.548952248793834,
+ 0.5439410447941516,
+ 0.5401992797848539,
+ 0.5377212939421033,
+ 0.5364986266021435,
+ 0.536520905380492,
+ 0.5377768047004462,
+ 0.5402550207838649,
+ 0.5439452082559839,
+ 0.5488388207614591,
+ 0.5549297907552779,
+ 0.5544043932826839,
+ 0.5558416691224716,
+ 0.5592851994682122,
+ 0.5647729183248515,
+ 0.5723293269979981,
+ 0.5819553217100805,
+ 0.5936192107677636,
+ 0.6072537126843965,
+ 0.6227612451967348,
+ 0.6400251655556168,
+ 0.6504029460255072,
+ 0.6640567305838434,
+ 0.6807582829704403,
+ 0.7002744805992871,
+ 0.7223777347609066,
+ 0.7468520552574066,
+ 0.7734964212688882,
+ 0.8021265201479265,
+ 0.8325754611501879,
+ 0.8646938096768956,
+ 0.8566643497099886,
+ 0.8533948984328228,
+ 0.8550367062142274,
+ 0.8616728913396345,
+ 0.8733035128166845,
+ 0.8898367096764861,
+ 0.9110897055997473,
+ 0.9368014021090609,
+ 0.966654588630095,
+ 1.0003026041183145,
+ 0.9983251458817254,
+ 1.0014306346317037,
+ 1.0096167591343856,
+ 1.0228075927628422,
+ 1.040855644944593,
+ 1.0635507303191698,
+ 1.0906340071646965,
+ 1.1218146650109218,
+ 1.1567867257934465,
+ 1.1952439900132668,
+ 1.1847647384110538,
+ 1.1757435940843826,
+ 1.1682258737643236,
+ 1.1622641436083208,
+ 1.1579164814917813,
+ 1.1552436767304675,
+ 1.1543053735061806,
+ 1.1551554905620172,
+ 1.157837630041972
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the amplitude of the mean seasonal cycle of zonal wind stress in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Surface Downward Eastward Wind Stress",
+ "value_standard_name": "surface_downward_eastward_stress",
+ "value_units": "1e-3 N/m2",
+ "values_name": "tauu"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "TROPFLUX",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of tauu in the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "kind": "reference",
+ "values": [
+ 13.278434753417969,
+ 13.542805671691895,
+ 13.81774616241455,
+ 14.10246753692627,
+ 14.39622974395752,
+ 14.698324203491211,
+ 15.008105278015137,
+ 15.324958801269531,
+ 15.648323059082031,
+ 15.977684020996094,
+ 16.02642822265625,
+ 15.7935791015625,
+ 15.565240859985352,
+ 15.34168815612793,
+ 15.123211860656738,
+ 14.910122871398926,
+ 14.70274829864502,
+ 14.501426696777344,
+ 14.306509017944336,
+ 14.118362426757812,
+ 13.91630744934082,
+ 13.702609062194824,
+ 13.499563217163086,
+ 13.307853698730469,
+ 13.128156661987305,
+ 12.961137771606445,
+ 12.807426452636719,
+ 12.667612075805664,
+ 12.542218208312988,
+ 12.431686401367188,
+ 12.32050609588623,
+ 12.206977844238281,
+ 12.10651969909668,
+ 12.01927375793457,
+ 11.945318222045898,
+ 11.88466739654541,
+ 11.837270736694336,
+ 11.803024291992188,
+ 11.781777381896973,
+ 11.773332595825195,
+ 11.762954711914062,
+ 11.746679306030273,
+ 11.737661361694336,
+ 11.73581600189209,
+ 11.741044998168945,
+ 11.753232955932617,
+ 11.77226448059082,
+ 11.798011779785156,
+ 11.830339431762695,
+ 11.869112014770508,
+ 11.889863014221191,
+ 11.890679359436035,
+ 11.895278930664062,
+ 11.90366268157959,
+ 11.915830612182617,
+ 11.931772232055664,
+ 11.951475143432617,
+ 11.974916458129883,
+ 12.002062797546387,
+ 12.03288459777832,
+ 12.004648208618164,
+ 11.9171781539917,
+ 11.833169937133789,
+ 11.752705574035645,
+ 11.675857543945312,
+ 11.602699279785156,
+ 11.533297538757324,
+ 11.46771240234375,
+ 11.405999183654785,
+ 11.348207473754883,
+ 11.30777359008789,
+ 11.286664009094238,
+ 11.272116661071777,
+ 11.264093399047852,
+ 11.262537956237793,
+ 11.26738166809082,
+ 11.278544425964355,
+ 11.295929908752441,
+ 11.31943416595459,
+ 11.348946571350098,
+ 11.341096878051758,
+ 11.299474716186523,
+ 11.268518447875977,
+ 11.248151779174805,
+ 11.23826789855957,
+ 11.238734245300293,
+ 11.249393463134766,
+ 11.270064353942871,
+ 11.300555229187012,
+ 11.340655326843262,
+ 11.307634353637695,
+ 11.200601577758789,
+ 11.102018356323242,
+ 11.012136459350586,
+ 10.931192398071289,
+ 10.859413146972656,
+ 10.797018051147461,
+ 10.744208335876465,
+ 10.701167106628418,
+ 10.668065071105957,
+ 10.53098201751709,
+ 10.286961555480957,
+ 10.049327850341797,
+ 9.818429946899414,
+ 9.594632148742676,
+ 9.378314971923828,
+ 9.169879913330078,
+ 8.969744682312012,
+ 8.778355598449707,
+ 8.596186637878418,
+ 8.348105430603027,
+ 8.039477348327637,
+ 7.749658107757568,
+ 7.481420993804932,
+ 7.237968444824219,
+ 7.022924900054932,
+ 6.840230464935303,
+ 6.693853855133057,
+ 6.587286472320557,
+ 6.52294921875
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the sea surface temperature structure across the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N), primarily illustrating the cold tongue bias (typically warmer near South America and cooler further west).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Sea Surface Temperature",
+ "value_standard_name": "sea_surface_temperature",
+ "value_units": "degC",
+ "values_name": "tos"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "TROPFLUX",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the time-mean sst structure across the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "kind": "reference",
+ "values": [
+ 29.658422470092773,
+ 29.570581436157227,
+ 29.57613754272461,
+ 29.631982803344727,
+ 29.672000885009766,
+ 29.666667938232422,
+ 29.656185150146484,
+ 29.647390365600586,
+ 29.634063720703125,
+ 29.621679306030273,
+ 29.606887817382812,
+ 29.585124969482422,
+ 29.560766220092773,
+ 29.53603744506836,
+ 29.51338768005371,
+ 29.488414764404297,
+ 29.457590103149414,
+ 29.42068862915039,
+ 29.380218505859375,
+ 29.338882446289062,
+ 29.301116943359375,
+ 29.267242431640625,
+ 29.2393741607666,
+ 29.21804428100586,
+ 29.199268341064453,
+ 29.178466796875,
+ 29.151296615600586,
+ 29.116008758544922,
+ 29.074026107788086,
+ 29.02923583984375,
+ 28.981807708740234,
+ 28.930007934570312,
+ 28.87359046936035,
+ 28.818256378173828,
+ 28.76480484008789,
+ 28.71184730529785,
+ 28.658071517944336,
+ 28.60296630859375,
+ 28.54669761657715,
+ 28.49153709411621,
+ 28.436248779296875,
+ 28.378219604492188,
+ 28.320093154907227,
+ 28.261077880859375,
+ 28.20061683654785,
+ 28.13945960998535,
+ 28.078327178955078,
+ 28.016881942749023,
+ 27.95623779296875,
+ 27.89699363708496,
+ 27.843496322631836,
+ 27.795337677001953,
+ 27.752222061157227,
+ 27.71175193786621,
+ 27.6641902923584,
+ 27.613998413085938,
+ 27.559112548828125,
+ 27.504100799560547,
+ 27.449636459350586,
+ 27.395984649658203,
+ 27.341556549072266,
+ 27.287683486938477,
+ 27.233440399169922,
+ 27.17778968811035,
+ 27.121728897094727,
+ 27.067623138427734,
+ 27.012008666992188,
+ 26.956817626953125,
+ 26.90498924255371,
+ 26.85879898071289,
+ 26.816608428955078,
+ 26.775915145874023,
+ 26.73456382751465,
+ 26.691320419311523,
+ 26.642642974853516,
+ 26.592737197875977,
+ 26.5425968170166,
+ 26.48922348022461,
+ 26.435863494873047,
+ 26.382455825805664,
+ 26.32980728149414,
+ 26.280593872070312,
+ 26.231775283813477,
+ 26.18014144897461,
+ 26.12664222717285,
+ 26.073871612548828,
+ 26.022632598876953,
+ 25.973962783813477,
+ 25.928115844726562,
+ 25.884029388427734,
+ 25.839614868164062,
+ 25.793746948242188,
+ 25.7445068359375,
+ 25.694320678710938,
+ 25.643966674804688,
+ 25.596647262573242,
+ 25.553531646728516,
+ 25.51413345336914,
+ 25.47797203063965,
+ 25.444854736328125,
+ 25.41105079650879,
+ 25.380029678344727,
+ 25.35219955444336,
+ 25.329402923583984,
+ 25.310482025146484,
+ 25.294322967529297,
+ 25.280685424804688,
+ 25.268701553344727,
+ 25.260974884033203,
+ 25.255298614501953,
+ 25.253286361694336,
+ 25.24777603149414,
+ 25.23656463623047,
+ 25.217029571533203,
+ 25.190601348876953,
+ 25.157541275024414,
+ 25.123376846313477,
+ 25.093229293823242,
+ 25.05885124206543,
+ 25.235559463500977
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the structure of zonal wind stress across the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N), primarily highlighting the trade winds bias (typically weaker circulation in the central Pacific and stronger in the western Pacific).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Surface Downward Eastward Wind Stress",
+ "value_standard_name": "surface_downward_eastward_stress",
+ "value_units": "1e-3 N/m2",
+ "values_name": "tauu"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "TROPFLUX",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the time-mean tauu structure across the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "kind": "reference",
+ "values": [
+ -4.5695109367370605,
+ -5.326211452484131,
+ -5.530359268188477,
+ -5.240467548370361,
+ -5.678308486938477,
+ -6.53862190246582,
+ -7.579104423522949,
+ -8.81894302368164,
+ -10.17841911315918,
+ -11.499174118041992,
+ -12.7847318649292,
+ -14.023179054260254,
+ -15.212560653686523,
+ -16.363765716552734,
+ -17.430471420288086,
+ -18.491151809692383,
+ -19.581523895263672,
+ -20.742759704589844,
+ -21.911483764648438,
+ -23.119863510131836,
+ -24.345170974731445,
+ -25.64137077331543,
+ -27.074974060058594,
+ -28.5657901763916,
+ -30.0846004486084,
+ -31.587467193603516,
+ -32.93317413330078,
+ -34.20405578613281,
+ -35.44738006591797,
+ -36.620399475097656,
+ -37.72029113769531,
+ -38.70223617553711,
+ -39.625247955322266,
+ -40.57472229003906,
+ -41.53760528564453,
+ -42.4527473449707,
+ -43.364463806152344,
+ -44.27690124511719,
+ -45.24585723876953,
+ -46.20132064819336,
+ -47.00767135620117,
+ -47.57070541381836,
+ -48.12709426879883,
+ -48.717063903808594,
+ -49.293556213378906,
+ -49.89558410644531,
+ -50.48392105102539,
+ -50.9875602722168,
+ -51.437103271484375,
+ -51.951866149902344,
+ -52.53530502319336,
+ -53.280155181884766,
+ -54.194580078125,
+ -55.11157989501953,
+ -55.89399337768555,
+ -56.390235900878906,
+ -56.48191833496094,
+ -56.40087127685547,
+ -56.29535675048828,
+ -56.18474578857422,
+ -56.1247673034668,
+ -56.09828186035156,
+ -56.050537109375,
+ -55.962989807128906,
+ -55.89173126220703,
+ -55.81978988647461,
+ -55.80210876464844,
+ -55.9060173034668,
+ -56.050270080566406,
+ -56.13785934448242,
+ -56.007972717285156,
+ -55.52595138549805,
+ -54.9853515625,
+ -54.48855972290039,
+ -54.01140594482422,
+ -53.61316680908203,
+ -53.225643157958984,
+ -52.82037353515625,
+ -52.40117645263672,
+ -51.98040008544922,
+ -51.499176025390625,
+ -51.08176803588867,
+ -50.69338607788086,
+ -50.21259307861328,
+ -49.60730743408203,
+ -48.83047103881836,
+ -47.82243728637695,
+ -46.784576416015625,
+ -45.85718536376953,
+ -44.95863342285156,
+ -44.13890075683594,
+ -43.346126556396484,
+ -42.53369903564453,
+ -41.73318862915039,
+ -40.96259689331055,
+ -40.11703109741211,
+ -39.25932312011719,
+ -38.41639709472656,
+ -37.41629409790039,
+ -36.321502685546875,
+ -35.04623794555664,
+ -33.52903747558594,
+ -32.01654815673828,
+ -30.52562141418457,
+ -29.053945541381836,
+ -27.62590789794922,
+ -26.209239959716797,
+ -24.806974411010742,
+ -23.389053344726562,
+ -21.956636428833008,
+ -20.553571701049805,
+ -19.171977996826172,
+ -17.766925811767578,
+ -16.2373104095459,
+ -14.562524795532227,
+ -12.732682228088379,
+ -10.681818962097168,
+ -8.72663402557373,
+ -7.3739542961120605,
+ -5.826878547668457
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90\u00b0W). ",
+ "index_name": "lat",
+ "index_standard_name": "latitude",
+ "index_units": "degrees_north",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "meridional bias in the amplitude of the mean seasonal pr cycle in the eastern Pacific"
+ },
+ "index": [
+ -14.5,
+ -13.5,
+ -12.5,
+ -11.5,
+ -10.5,
+ -9.5,
+ -8.5,
+ -7.5,
+ -6.5,
+ -5.5,
+ -4.5,
+ -3.5,
+ -2.5,
+ -1.5,
+ -0.5,
+ 0.5,
+ 1.5,
+ 2.5,
+ 3.5,
+ 4.5,
+ 5.5,
+ 6.5,
+ 7.5,
+ 8.5,
+ 9.5,
+ 10.5,
+ 11.5,
+ 12.5,
+ 13.5,
+ 14.5
+ ],
+ "index_name": "lat",
+ "values": [
+ 1.2740155458450317,
+ 1.4513113498687744,
+ 1.631900429725647,
+ 1.814828634262085,
+ 1.9994736909866333,
+ 1.986014485359192,
+ 1.778141736984253,
+ 1.5776915550231934,
+ 1.3855195045471191,
+ 1.2018123865127563,
+ 1.0264452695846558,
+ 0.8594582676887512,
+ 0.7013797163963318,
+ 0.553744375705719,
+ 0.4234409034252167,
+ 0.4606313705444336,
+ 0.8850376605987549,
+ 1.4533424377441406,
+ 2.0656399726867676,
+ 2.6920766830444336,
+ 3.3240840435028076,
+ 3.9587631225585938,
+ 4.59491491317749,
+ 5.231961250305176,
+ 5.869589805603027,
+ 5.919764041900635,
+ 5.382532596588135,
+ 4.84589958190918,
+ 4.310055255889893,
+ 3.7752912044525146
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Meridional bias in the amplitude of the mean seasonal precipitation cycle in the eastern Pacific (averaged between 150-90\u00b0W). ",
+ "index_name": "lat",
+ "index_standard_name": "latitude",
+ "index_units": "degrees_north",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "meridional bias in the amplitude of the mean seasonal pr cycle in the eastern Pacific"
+ },
+ "index": [
+ -14.5,
+ -13.5,
+ -12.5,
+ -11.5,
+ -10.5,
+ -9.5,
+ -8.5,
+ -7.5,
+ -6.5,
+ -5.5,
+ -4.5,
+ -3.5,
+ -2.5,
+ -1.5,
+ -0.5,
+ 0.5,
+ 1.5,
+ 2.5,
+ 3.5,
+ 4.5,
+ 5.5,
+ 6.5,
+ 7.5,
+ 8.5,
+ 9.5,
+ 10.5,
+ 11.5,
+ 12.5,
+ 13.5,
+ 14.5
+ ],
+ "index_name": "lat",
+ "values": [
+ 0.41657572984695435,
+ 0.37971824407577515,
+ 0.35848936438560486,
+ 0.35610005259513855,
+ 0.43405085802078247,
+ 0.5596551299095154,
+ 0.7323409914970398,
+ 0.9949737787246704,
+ 1.2680846452713013,
+ 1.3659218549728394,
+ 1.4142215251922607,
+ 1.3871383666992188,
+ 1.1102941036224365,
+ 0.8518168330192566,
+ 0.8022720813751221,
+ 0.8256241679191589,
+ 0.9178799390792847,
+ 1.2416775226593018,
+ 1.608694076538086,
+ 1.4539971351623535,
+ 1.6589003801345825,
+ 2.047926664352417,
+ 2.552967071533203,
+ 3.685457944869995,
+ 3.9105143547058105,
+ 3.9467885494232178,
+ 3.9599010944366455,
+ 3.4699177742004395,
+ 3.013047695159912,
+ 2.5897719860076904
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Meridional bias in the time-mean precipitation structure across the eastern Pacific (averaged between 150-90\u00b0W), primarily illustrating the double intertropical convergence zone (ITCZ) bias.",
+ "index_name": "lat",
+ "index_standard_name": "latitude",
+ "index_units": "degrees_north",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "meridional bias in the time-mean pr structure across the eastern Pacific"
+ },
+ "index": [
+ -14.5,
+ -13.5,
+ -12.5,
+ -11.5,
+ -10.5,
+ -9.5,
+ -8.5,
+ -7.5,
+ -6.5,
+ -5.5,
+ -4.5,
+ -3.5,
+ -2.5,
+ -1.5,
+ -0.5,
+ 0.5,
+ 1.5,
+ 2.5,
+ 3.5,
+ 4.5,
+ 5.5,
+ 6.5,
+ 7.5,
+ 8.5,
+ 9.5,
+ 10.5,
+ 11.5,
+ 12.5,
+ 13.5,
+ 14.5
+ ],
+ "index_name": "lat",
+ "values": [
+ 2.7396721839904785,
+ 2.749121904373169,
+ 2.7585723400115967,
+ 2.768022060394287,
+ 2.777472496032715,
+ 2.677685499191284,
+ 2.4686617851257324,
+ 2.2596383094787598,
+ 2.050614356994629,
+ 1.8415906429290771,
+ 1.6325671672821045,
+ 1.4235435724258423,
+ 1.2145196199417114,
+ 1.0054960250854492,
+ 0.7964723706245422,
+ 1.0640085935592651,
+ 1.8081053495407104,
+ 2.552201747894287,
+ 3.2962982654571533,
+ 4.0403947830200195,
+ 4.784490585327148,
+ 5.528587818145752,
+ 6.272683620452881,
+ 7.016780376434326,
+ 7.760876655578613,
+ 7.815101146697998,
+ 7.179453372955322,
+ 6.5438055992126465,
+ 5.908157825469971,
+ 5.272509574890137
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the amplitude of the mean seasonal cycle of precipitation in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of pr in the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "values": [
+ 1.9967015981674194,
+ 1.9799515008926392,
+ 1.965376615524292,
+ 1.9529552459716797,
+ 1.9426591396331787,
+ 1.9344574213027954,
+ 1.9283173084259033,
+ 1.9242045879364014,
+ 1.9220869541168213,
+ 1.9219309091567993,
+ 1.8831630945205688,
+ 1.8052797317504883,
+ 1.7287715673446655,
+ 1.65378737449646,
+ 1.5804989337921143,
+ 1.509103536605835,
+ 1.4398307800292969,
+ 1.3729509115219116,
+ 1.30878484249115,
+ 1.247719168663025,
+ 1.2035176753997803,
+ 1.1743961572647095,
+ 1.1464593410491943,
+ 1.1198153495788574,
+ 1.0945930480957031,
+ 1.0709474086761475,
+ 1.0490703582763672,
+ 1.029205083847046,
+ 1.011672854423523,
+ 0.9969115257263184,
+ 0.9870942831039429,
+ 0.9803160429000854,
+ 0.9742891192436218,
+ 0.9690539240837097,
+ 0.9646547436714172,
+ 0.9611369967460632,
+ 0.9585472941398621,
+ 0.9569312334060669,
+ 0.9563301205635071,
+ 0.9567778706550598,
+ 0.956905722618103,
+ 0.9565302729606628,
+ 0.9569666981697083,
+ 0.9581974148750305,
+ 0.9602028727531433,
+ 0.9629611968994141,
+ 0.9664489030838013,
+ 0.9706413149833679,
+ 0.9755125045776367,
+ 0.981036365032196,
+ 0.9865730404853821,
+ 0.9921060800552368,
+ 0.9982366561889648,
+ 1.004952073097229,
+ 1.0122389793395996,
+ 1.0200831890106201,
+ 1.0284702777862549,
+ 1.037385106086731,
+ 1.0468127727508545,
+ 1.056738257408142,
+ 1.064895510673523,
+ 1.071142554283142,
+ 1.0776808261871338,
+ 1.0845054388046265,
+ 1.0916131734848022,
+ 1.0990010499954224,
+ 1.1066666841506958,
+ 1.1146080493927002,
+ 1.1228244304656982,
+ 1.1313146352767944,
+ 1.1336586475372314,
+ 1.1298308372497559,
+ 1.1262400150299072,
+ 1.12288498878479,
+ 1.1197658777236938,
+ 1.1168854236602783,
+ 1.1142475605010986,
+ 1.1118590831756592,
+ 1.1097296476364136,
+ 1.107871413230896,
+ 1.0973613262176514,
+ 1.0787317752838135,
+ 1.061105489730835,
+ 1.044490933418274,
+ 1.0288900136947632,
+ 1.014301061630249,
+ 1.0007188320159912,
+ 0.9881393313407898,
+ 0.9765641093254089,
+ 0.9660071134567261,
+ 0.959515392780304,
+ 0.9588043093681335,
+ 0.9613490104675293,
+ 0.9670503735542297,
+ 0.9758003354072571,
+ 0.9874847531318665,
+ 1.0019856691360474,
+ 1.0191829204559326,
+ 1.0389560461044312,
+ 1.0611851215362549,
+ 1.0713112354278564,
+ 1.0707861185073853,
+ 1.0744258165359497,
+ 1.0820741653442383,
+ 1.0935732126235962,
+ 1.1087642908096313,
+ 1.127488374710083,
+ 1.1495847702026367,
+ 1.1748920679092407,
+ 1.2032458782196045,
+ 1.2204768657684326,
+ 1.2293779850006104,
+ 1.2442595958709717,
+ 1.2645162343978882,
+ 1.2897008657455444,
+ 1.319469690322876,
+ 1.35354483127594,
+ 1.3916923999786377,
+ 1.4337122440338135,
+ 1.479430913925171
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the amplitude of the mean seasonal cycle of sea surface temperature in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Sea Surface Temperature",
+ "value_standard_name": "sea_surface_temperature",
+ "value_units": "degC",
+ "values_name": "tos"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of sst in the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "values": [
+ 0.45128609359422317,
+ 0.4618004665475176,
+ 0.4730685838718825,
+ 0.4850525201562159,
+ 0.4977124084174755,
+ 0.5110078105007465,
+ 0.5248990234252361,
+ 0.5393481948322717,
+ 0.5543201784027618,
+ 0.5697831145098282,
+ 0.4959776390850229,
+ 0.5015952964860505,
+ 0.5074535887827509,
+ 0.5135404842453182,
+ 0.5198442718177961,
+ 0.5263541779569011,
+ 0.5330608494291293,
+ 0.539956679070081,
+ 0.5470359847226468,
+ 0.5542950701863388,
+ 0.5617322027878129,
+ 0.5630304328005156,
+ 0.5645246006877241,
+ 0.5662099717078981,
+ 0.5680823670782609,
+ 0.5701381635920793,
+ 0.5723742924564262,
+ 0.5747882375368073,
+ 0.5773780333019647,
+ 0.5801422628317854,
+ 0.5830800562903364,
+ 0.5814990218805539,
+ 0.580243743978629,
+ 0.579312865750949,
+ 0.5787050196181196,
+ 0.578418824190194,
+ 0.5784528965862238,
+ 0.5788058799072999,
+ 0.5794764847372613,
+ 0.5804635427536009,
+ 0.5817660699457827,
+ 0.5770991051681961,
+ 0.572985647114612,
+ 0.5694206034716042,
+ 0.5663980380122713,
+ 0.5639112972803727,
+ 0.5619532550491417,
+ 0.5605166492184026,
+ 0.5595944763341599,
+ 0.5591804066171772,
+ 0.5592691865413671,
+ 0.5537941480264006,
+ 0.5493789888564197,
+ 0.5460047612222227,
+ 0.543646247220036,
+ 0.5422732386624494,
+ 0.5418519100903822,
+ 0.5423461634324978,
+ 0.5437188641393566,
+ 0.5459329279299396,
+ 0.548952248793834,
+ 0.5439410447941516,
+ 0.5401992797848539,
+ 0.5377212939421033,
+ 0.5364986266021435,
+ 0.536520905380492,
+ 0.5377768047004462,
+ 0.5402550207838649,
+ 0.5439452082559839,
+ 0.5488388207614591,
+ 0.5549297907552779,
+ 0.5544043932826839,
+ 0.5558416691224716,
+ 0.5592851994682122,
+ 0.5647729183248515,
+ 0.5723293269979981,
+ 0.5819553217100805,
+ 0.5936192107677636,
+ 0.6072537126843965,
+ 0.6227612451967348,
+ 0.6400251655556168,
+ 0.6504029460255072,
+ 0.6640567305838434,
+ 0.6807582829704403,
+ 0.7002744805992871,
+ 0.7223777347609066,
+ 0.7468520552574066,
+ 0.7734964212688882,
+ 0.8021265201479265,
+ 0.8325754611501879,
+ 0.8646938096768956,
+ 0.8566643497099886,
+ 0.8533948984328228,
+ 0.8550367062142274,
+ 0.8616728913396345,
+ 0.8733035128166845,
+ 0.8898367096764861,
+ 0.9110897055997473,
+ 0.9368014021090609,
+ 0.966654588630095,
+ 1.0003026041183145,
+ 0.9983251458817254,
+ 1.0014306346317037,
+ 1.0096167591343856,
+ 1.0228075927628422,
+ 1.040855644944593,
+ 1.0635507303191698,
+ 1.0906340071646965,
+ 1.1218146650109218,
+ 1.1567867257934465,
+ 1.1952439900132668,
+ 1.1847647384110538,
+ 1.1757435940843826,
+ 1.1682258737643236,
+ 1.1622641436083208,
+ 1.1579164814917813,
+ 1.1552436767304675,
+ 1.1543053735061806,
+ 1.1551554905620172,
+ 1.157837630041972
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the amplitude of the mean seasonal cycle of zonal wind stress in the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Surface Downward Eastward Wind Stress",
+ "value_standard_name": "surface_downward_eastward_stress",
+ "value_units": "1e-3 N/m2",
+ "values_name": "tauu"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the amplitude of the mean seasonal cycle of tauu in the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "values": [
+ 13.278434753417969,
+ 13.542805671691895,
+ 13.81774616241455,
+ 14.10246753692627,
+ 14.39622974395752,
+ 14.698324203491211,
+ 15.008105278015137,
+ 15.324958801269531,
+ 15.648323059082031,
+ 15.977684020996094,
+ 16.02642822265625,
+ 15.7935791015625,
+ 15.565240859985352,
+ 15.34168815612793,
+ 15.123211860656738,
+ 14.910122871398926,
+ 14.70274829864502,
+ 14.501426696777344,
+ 14.306509017944336,
+ 14.118362426757812,
+ 13.91630744934082,
+ 13.702609062194824,
+ 13.499563217163086,
+ 13.307853698730469,
+ 13.128156661987305,
+ 12.961137771606445,
+ 12.807426452636719,
+ 12.667612075805664,
+ 12.542218208312988,
+ 12.431686401367188,
+ 12.32050609588623,
+ 12.206977844238281,
+ 12.10651969909668,
+ 12.01927375793457,
+ 11.945318222045898,
+ 11.88466739654541,
+ 11.837270736694336,
+ 11.803024291992188,
+ 11.781777381896973,
+ 11.773332595825195,
+ 11.762954711914062,
+ 11.746679306030273,
+ 11.737661361694336,
+ 11.73581600189209,
+ 11.741044998168945,
+ 11.753232955932617,
+ 11.77226448059082,
+ 11.798011779785156,
+ 11.830339431762695,
+ 11.869112014770508,
+ 11.889863014221191,
+ 11.890679359436035,
+ 11.895278930664062,
+ 11.90366268157959,
+ 11.915830612182617,
+ 11.931772232055664,
+ 11.951475143432617,
+ 11.974916458129883,
+ 12.002062797546387,
+ 12.03288459777832,
+ 12.004648208618164,
+ 11.9171781539917,
+ 11.833169937133789,
+ 11.752705574035645,
+ 11.675857543945312,
+ 11.602699279785156,
+ 11.533297538757324,
+ 11.46771240234375,
+ 11.405999183654785,
+ 11.348207473754883,
+ 11.30777359008789,
+ 11.286664009094238,
+ 11.272116661071777,
+ 11.264093399047852,
+ 11.262537956237793,
+ 11.26738166809082,
+ 11.278544425964355,
+ 11.295929908752441,
+ 11.31943416595459,
+ 11.348946571350098,
+ 11.341096878051758,
+ 11.299474716186523,
+ 11.268518447875977,
+ 11.248151779174805,
+ 11.23826789855957,
+ 11.238734245300293,
+ 11.249393463134766,
+ 11.270064353942871,
+ 11.300555229187012,
+ 11.340655326843262,
+ 11.307634353637695,
+ 11.200601577758789,
+ 11.102018356323242,
+ 11.012136459350586,
+ 10.931192398071289,
+ 10.859413146972656,
+ 10.797018051147461,
+ 10.744208335876465,
+ 10.701167106628418,
+ 10.668065071105957,
+ 10.53098201751709,
+ 10.286961555480957,
+ 10.049327850341797,
+ 9.818429946899414,
+ 9.594632148742676,
+ 9.378314971923828,
+ 9.169879913330078,
+ 8.969744682312012,
+ 8.778355598449707,
+ 8.596186637878418,
+ 8.348105430603027,
+ 8.039477348327637,
+ 7.749658107757568,
+ 7.481420993804932,
+ 7.237968444824219,
+ 7.022924900054932,
+ 6.840230464935303,
+ 6.693853855133057,
+ 6.587286472320557,
+ 6.52294921875
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the time-mean precipitation structure across the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N), illustrating the increased precipitation in the eastern Pacific and decreased precipitation in the western Pacific.",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Precipitation",
+ "value_standard_name": "lwe_precipitation_rate",
+ "value_units": "mm/day",
+ "values_name": "pr"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the time-mean pr structure across the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "values": [
+ 5.581721305847168,
+ 5.488589763641357,
+ 5.395458221435547,
+ 5.302326202392578,
+ 5.209193706512451,
+ 5.116062164306641,
+ 5.022930145263672,
+ 4.929798126220703,
+ 4.836665630340576,
+ 4.743534564971924,
+ 4.638801097869873,
+ 4.522467613220215,
+ 4.406133651733398,
+ 4.289799690246582,
+ 4.173466205596924,
+ 4.057132244110107,
+ 3.94079852104187,
+ 3.8244643211364746,
+ 3.7081308364868164,
+ 3.591797113418579,
+ 3.4956185817718506,
+ 3.4195945262908936,
+ 3.343571662902832,
+ 3.267547845840454,
+ 3.1915245056152344,
+ 3.1155011653900146,
+ 3.039477586746216,
+ 2.963454246520996,
+ 2.8874309062957764,
+ 2.8114073276519775,
+ 2.7536556720733643,
+ 2.714176893234253,
+ 2.6746978759765625,
+ 2.635218381881714,
+ 2.5957398414611816,
+ 2.556260585784912,
+ 2.516781806945801,
+ 2.4773027896881104,
+ 2.437823534011841,
+ 2.3983445167541504,
+ 2.3618690967559814,
+ 2.3283979892730713,
+ 2.294926404953003,
+ 2.2614550590515137,
+ 2.227983236312866,
+ 2.194511890411377,
+ 2.1610403060913086,
+ 2.1275687217712402,
+ 2.094097375869751,
+ 2.0606257915496826,
+ 2.0320682525634766,
+ 2.0084245204925537,
+ 1.9847806692123413,
+ 1.9611371755599976,
+ 1.9374932050704956,
+ 1.9138497114181519,
+ 1.8902058601379395,
+ 1.8665621280670166,
+ 1.8429183959960938,
+ 1.8192747831344604,
+ 1.8053468465805054,
+ 1.8011351823806763,
+ 1.7969229221343994,
+ 1.7927110195159912,
+ 1.7884989976882935,
+ 1.7842870950698853,
+ 1.780075192451477,
+ 1.7758632898330688,
+ 1.771651029586792,
+ 1.7674391269683838,
+ 1.7706228494644165,
+ 1.781202793121338,
+ 1.7917823791503906,
+ 1.802362084388733,
+ 1.8129417896270752,
+ 1.8235212564468384,
+ 1.8341012001037598,
+ 1.8446807861328125,
+ 1.8552604913711548,
+ 1.865840196609497,
+ 1.8703536987304688,
+ 1.8688013553619385,
+ 1.8672490119934082,
+ 1.8656965494155884,
+ 1.864144206047058,
+ 1.8625917434692383,
+ 1.8610395193099976,
+ 1.8594870567321777,
+ 1.857934594154358,
+ 1.8563823699951172,
+ 1.8511325120925903,
+ 1.8421857357025146,
+ 1.833238959312439,
+ 1.8242919445037842,
+ 1.815345287322998,
+ 1.806398630142212,
+ 1.7974517345428467,
+ 1.788504719734192,
+ 1.7795580625534058,
+ 1.7706114053726196,
+ 1.7712186574935913,
+ 1.7813801765441895,
+ 1.791541576385498,
+ 1.8017030954360962,
+ 1.8118646144866943,
+ 1.822026252746582,
+ 1.832187533378601,
+ 1.8423491716384888,
+ 1.8525104522705078,
+ 1.862672209739685,
+ 1.9014129638671875,
+ 1.9687331914901733,
+ 2.036053419113159,
+ 2.1033737659454346,
+ 2.17069411277771,
+ 2.2380142211914062,
+ 2.3053343296051025,
+ 2.372654438018799,
+ 2.4399752616882324,
+ 2.5072953701019287
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the sea surface temperature structure across the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N), primarily illustrating the cold tongue bias (typically warmer near South America and cooler further west).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Sea Surface Temperature",
+ "value_standard_name": "sea_surface_temperature",
+ "value_units": "degC",
+ "values_name": "tos"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the time-mean sst structure across the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "values": [
+ 29.228692922907832,
+ 29.190316092314276,
+ 29.152083605845565,
+ 29.11398518334183,
+ 29.076010691263907,
+ 29.038150146215337,
+ 29.00039371872401,
+ 28.962731737446102,
+ 28.925154693956266,
+ 28.887653248292047,
+ 28.947986857233037,
+ 28.904767419692128,
+ 28.86174610525663,
+ 28.818924688151856,
+ 28.776305059780345,
+ 28.73388929386354,
+ 28.691679711458516,
+ 28.649678946491974,
+ 28.60789001245313,
+ 28.56631637089514,
+ 28.52496200241122,
+ 28.480762970700265,
+ 28.436883316863316,
+ 28.39331342181064,
+ 28.350044048315418,
+ 28.307066355861632,
+ 28.264371916531665,
+ 28.221952732206308,
+ 28.179801253356732,
+ 28.137910399718827,
+ 28.0962735831557,
+ 28.057890850514674,
+ 28.019893351270383,
+ 27.98226614072659,
+ 27.9449948177676,
+ 27.908065508086498,
+ 27.87146484921275,
+ 27.835179977356965,
+ 27.799198516102802,
+ 27.763508566988328,
+ 27.728098702033463,
+ 27.69295251865383,
+ 27.658222403082583,
+ 27.623892009677075,
+ 27.589945605798686,
+ 27.556368044562447,
+ 27.52314473970481,
+ 27.490261642499284,
+ 27.457705220662923,
+ 27.425462439210794,
+ 27.393520743229317,
+ 27.36092523128998,
+ 27.328758099525253,
+ 27.297005238478143,
+ 27.26565316304784,
+ 27.23468899221165,
+ 27.204100430897125,
+ 27.17387575397769,
+ 27.144003792379316,
+ 27.114473921300316,
+ 27.085276050561554,
+ 27.040886026737404,
+ 26.996963329249688,
+ 26.95349189490342,
+ 26.910456312608837,
+ 26.86784180968208,
+ 26.825634240290224,
+ 26.783820076105286,
+ 26.742386399245476,
+ 26.70132089759802,
+ 26.660611862635353,
+ 26.607726103085774,
+ 26.555357957136255,
+ 26.503490617857388,
+ 26.45210797878091,
+ 26.40119462807612,
+ 26.350735844958773,
+ 26.30071759848653,
+ 26.25112654890993,
+ 26.201950051765277,
+ 26.15317616491678,
+ 26.104657085441232,
+ 26.05673838818914,
+ 26.009389277438707,
+ 25.96257990524942,
+ 25.916281296364485,
+ 25.870465276558615,
+ 25.825104404054166,
+ 25.780171903650903,
+ 25.735641603233358,
+ 25.691487872335124,
+ 25.67270329051408,
+ 25.65451319652472,
+ 25.636876629724014,
+ 25.619753760500895,
+ 25.603105729984485,
+ 25.586894494413638,
+ 25.571082673051016,
+ 25.555633398553837,
+ 25.540510168730588,
+ 25.525676698617755,
+ 25.541897719175036,
+ 25.558578612796794,
+ 25.57568142703731,
+ 25.593169250789035,
+ 25.611006021629283,
+ 25.62915633786892,
+ 25.64758527381929,
+ 25.666258196823094,
+ 25.68514058460719,
+ 25.704197841510144,
+ 25.78054413190237,
+ 25.857051577500233,
+ 25.933718682656114,
+ 26.010544500081647,
+ 26.087528525438422,
+ 26.164670594890858,
+ 26.241970784574796,
+ 26.319429310955666,
+ 26.397046431055735
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "Zonal bias in the structure of zonal wind stress across the equatorial Pacific (averaged between 5\u00b0S-5\u00b0N), primarily highlighting the trade winds bias (typically weaker circulation in the central Pacific and stronger in the western Pacific).",
+ "index_name": "lon",
+ "index_standard_name": "longitude",
+ "index_units": "degrees_east",
+ "value_long_name": "Surface Downward Eastward Wind Stress",
+ "value_standard_name": "surface_downward_eastward_stress",
+ "value_units": "1e-3 N/m2",
+ "values_name": "tauu"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zonal bias in the time-mean tauu structure across the equatorial Pacific"
+ },
+ "index": [
+ 150.5,
+ 151.5,
+ 152.5,
+ 153.5,
+ 154.5,
+ 155.5,
+ 156.5,
+ 157.5,
+ 158.5,
+ 159.5,
+ 160.5,
+ 161.5,
+ 162.5,
+ 163.5,
+ 164.5,
+ 165.5,
+ 166.5,
+ 167.5,
+ 168.5,
+ 169.5,
+ 170.5,
+ 171.5,
+ 172.5,
+ 173.5,
+ 174.5,
+ 175.5,
+ 176.5,
+ 177.5,
+ 178.5,
+ 179.5,
+ 180.5,
+ 181.5,
+ 182.5,
+ 183.5,
+ 184.5,
+ 185.5,
+ 186.5,
+ 187.5,
+ 188.5,
+ 189.5,
+ 190.5,
+ 191.5,
+ 192.5,
+ 193.5,
+ 194.5,
+ 195.5,
+ 196.5,
+ 197.5,
+ 198.5,
+ 199.5,
+ 200.5,
+ 201.5,
+ 202.5,
+ 203.5,
+ 204.5,
+ 205.5,
+ 206.5,
+ 207.5,
+ 208.5,
+ 209.5,
+ 210.5,
+ 211.5,
+ 212.5,
+ 213.5,
+ 214.5,
+ 215.5,
+ 216.5,
+ 217.5,
+ 218.5,
+ 219.5,
+ 220.5,
+ 221.5,
+ 222.5,
+ 223.5,
+ 224.5,
+ 225.5,
+ 226.5,
+ 227.5,
+ 228.5,
+ 229.5,
+ 230.5,
+ 231.5,
+ 232.5,
+ 233.5,
+ 234.5,
+ 235.5,
+ 236.5,
+ 237.5,
+ 238.5,
+ 239.5,
+ 240.5,
+ 241.5,
+ 242.5,
+ 243.5,
+ 244.5,
+ 245.5,
+ 246.5,
+ 247.5,
+ 248.5,
+ 249.5,
+ 250.5,
+ 251.5,
+ 252.5,
+ 253.5,
+ 254.5,
+ 255.5,
+ 256.5,
+ 257.5,
+ 258.5,
+ 259.5,
+ 260.5,
+ 261.5,
+ 262.5,
+ 263.5,
+ 264.5,
+ 265.5,
+ 266.5,
+ 267.5,
+ 268.5,
+ 269.5
+ ],
+ "index_name": "lon",
+ "values": [
+ -31.92863655090332,
+ -32.28815460205078,
+ -32.647666931152344,
+ -33.007179260253906,
+ -33.366695404052734,
+ -33.7262077331543,
+ -34.085723876953125,
+ -34.44523239135742,
+ -34.80474853515625,
+ -35.164268493652344,
+ -35.64631271362305,
+ -36.250877380371094,
+ -36.85544967651367,
+ -37.460018157958984,
+ -38.0645866394043,
+ -38.669158935546875,
+ -39.27372360229492,
+ -39.878292083740234,
+ -40.48286437988281,
+ -41.08742904663086,
+ -41.61963653564453,
+ -42.07948303222656,
+ -42.53932189941406,
+ -42.999168395996094,
+ -43.45901107788086,
+ -43.918853759765625,
+ -44.37869644165039,
+ -44.83853530883789,
+ -45.298377990722656,
+ -45.75822448730469,
+ -46.19227981567383,
+ -46.60055923461914,
+ -47.00883102416992,
+ -47.4171028137207,
+ -47.82538604736328,
+ -48.2336540222168,
+ -48.64192581176758,
+ -49.05020523071289,
+ -49.45848083496094,
+ -49.86675262451172,
+ -50.2750358581543,
+ -50.683311462402344,
+ -51.091590881347656,
+ -51.499874114990234,
+ -51.90815353393555,
+ -52.316436767578125,
+ -52.7247200012207,
+ -53.132999420166016,
+ -53.54127883911133,
+ -53.949554443359375,
+ -54.34296798706055,
+ -54.72148513793945,
+ -55.10001754760742,
+ -55.47854995727539,
+ -55.85707473754883,
+ -56.235599517822266,
+ -56.614131927490234,
+ -56.99265670776367,
+ -57.37118148803711,
+ -57.74971008300781,
+ -58.00701141357422,
+ -58.143089294433594,
+ -58.27915573120117,
+ -58.41523361206055,
+ -58.55130386352539,
+ -58.687381744384766,
+ -58.823455810546875,
+ -58.95952606201172,
+ -59.095603942871094,
+ -59.2316780090332,
+ -59.1231803894043,
+ -58.77012634277344,
+ -58.41706085205078,
+ -58.06400680541992,
+ -57.71094512939453,
+ -57.35788345336914,
+ -57.00482177734375,
+ -56.65176010131836,
+ -56.298709869384766,
+ -55.945640563964844,
+ -55.28741455078125,
+ -54.32402420043945,
+ -53.36064147949219,
+ -52.39725112915039,
+ -51.433860778808594,
+ -50.47047805786133,
+ -49.5070915222168,
+ -48.543697357177734,
+ -47.58031463623047,
+ -46.61692428588867,
+ -45.54755401611328,
+ -44.37220764160156,
+ -43.19686508178711,
+ -42.021514892578125,
+ -40.846168518066406,
+ -39.67082214355469,
+ -38.4954719543457,
+ -37.320125579833984,
+ -36.1447868347168,
+ -34.96943664550781,
+ -33.8260612487793,
+ -32.71466064453125,
+ -31.603254318237305,
+ -30.491849899291992,
+ -29.380449295043945,
+ -28.269046783447266,
+ -27.15764045715332,
+ -26.046239852905273,
+ -24.93483543395996,
+ -23.823436737060547,
+ -22.69724464416504,
+ -21.556264877319336,
+ -20.415285110473633,
+ -19.274307250976562,
+ -18.133331298828125,
+ -16.992353439331055,
+ -15.851372718811035,
+ -14.710393905639648,
+ -13.569416046142578,
+ -12.428437232971191
+ ]
+ }
+]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png
deleted file mode 100644
index ddea9d8..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png
deleted file mode 100644
index 1453c2c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png
deleted file mode 100644
index e0839fd..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png
deleted file mode 100644
index fd3262d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png
deleted file mode 100644
index 7a0c39b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png
deleted file mode 100644
index 5016c8e..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png
deleted file mode 100644
index 9e4eb78..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/diagnostic.json
similarity index 97%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/diagnostic.json
index 3c4ba31..fe8a46a 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/diagnostic.json
@@ -1,5 +1,8 @@
{
"DIMENSIONS": {
+ "grid_label": {
+ "gn": {}
+ },
"json_structure": [
"grid_label",
"member_id",
@@ -7,8 +10,8 @@
"region",
"metric"
],
- "region": {
- "global": {}
+ "member_id": {
+ "r1i1p1f1": {}
},
"metric": {
"09pattern": {},
@@ -19,16 +22,16 @@
"14duration": {},
"15diversity": {}
},
- "grid_label": {
- "gn": {}
- },
- "member_id": {
- "r1i1p1f1": {}
+ "region": {
+ "global": {}
},
"source_id": {
"ACCESS-ESM1-5": {}
}
},
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
"RESULTS": {
"gn": {
"r1i1p1f1": {
@@ -45,8 +48,5 @@
}
}
}
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
+ }
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png
new file mode 100644
index 0000000..ba314c1
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png
new file mode 100644
index 0000000..d41efe4
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png
new file mode 100644
index 0000000..4d358b0
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png
new file mode 100644
index 0000000..2f57783
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png
new file mode 100644
index 0000000..868b66d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png
new file mode 100644
index 0000000..ef88825
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png
new file mode 100644
index 0000000..6aa0748
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/matrix.csv b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/matrix.csv
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/matrix.csv
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/matrix.csv
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/output.json
similarity index 53%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/output.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/output.json
index f4f0198..a9a5884 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/output.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/output.json
@@ -1,66 +1,80 @@
{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/index.html",
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/index.html",
"provenance": {
"environment": {},
"modeldata": [],
"obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/run/main_log_debug.txt"
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/run/main_log_debug.txt"
},
"data": {
- "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/matrix.csv": {
- "filename": "executions/recipe_20251001_162136/work/diagnostic_metrics/plot_script/matrix.csv",
+ "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/matrix.csv": {
+ "filename": "executions/recipe_20260716_140605/work/diagnostic_metrics/plot_script/matrix.csv",
"long_name": "List of metric values.",
"description": "",
- "dimensions": null
+ "dimensions": {}
}
},
"plots": {
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_09pattern.png",
"long_name": "Zonal structure of sea surface temperature anomalies in the equatorial Pacific (averaged between 5°S and 5°N).",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "metric": "09pattern"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_10lifecycle.png",
"long_name": "Temporal evolution of sea surface temperature anomalies in the central equatorial Pacific (Niño 3.4 region average), illustrating the ENSO-associated variability.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "metric": "10lifecycle"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_11amplitude.png",
"long_name": "Standard deviation of sea surface temperature anomalies in the central equatorial Pacific (Niño 3.4 region average), representing the amplitude of variability.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "metric": "11amplitude"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_12seasonality.png",
"long_name": "Ratio of winter to spring standard deviation of sea surface temperature anomalies in the central equatorial Pacific, illustrating the seasonal timing of SSTA.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "metric": "12seasonality"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_13asymmetry.png",
"long_name": "Skewness of sea surface temperature anomalies in the central equatorial Pacific, illustrating the expected asymmetry where positive SSTA values should typically be larger than negative SSTA values (usually close to 0). ",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "metric": "13asymmetry"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_14duration.png",
"long_name": "Duration of the ENSO life cycle where SSTA exceeds 0.25, illustrating the 'duration' of the SSTA event.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "metric": "14duration"
+ }
},
- "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png": {
- "filename": "executions/recipe_20251001_162136/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png",
+ "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png": {
+ "filename": "executions/recipe_20260716_140605/plots/diagnostic_metrics/plot_script/png/ACCESS-ESM1-5_15diversity.png",
"long_name": "Width of the zonal location of maximum (minimum) SSTA during all El Niño (La Niña) events, illustrating the 'diversity' of ENSO events.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "metric": "15diversity"
+ }
}
},
"html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/executions/recipe_20251001_162136/index.html",
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/executions/recipe_20260716_140605/index.html",
"long_name": "Results page",
"description": "Page showing the executions of the ESMValTool run.",
"dimensions": null
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/cloud-scatterplots-clwvi-pr/5bdb17b5ac3d27616ddb623f5577186a40209a88/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/gn_r1i1p1f1_ACCESS-ESM1-5_g7_v1_0f5f9918/7/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/plots/ecs/calculate/ACCESS-ESM1-5.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/plots/ecs/calculate/ACCESS-ESM1-5.png
deleted file mode 100644
index 74fd8eb..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/plots/ecs/calculate/ACCESS-ESM1-5.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/work/ecs/calculate/ecs.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/work/ecs/calculate/ecs.nc
deleted file mode 100644
index c5564a9..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/work/ecs/calculate/ecs.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/work/ecs/calculate/ecs_regression_ACCESS-ESM1-5.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/work/ecs/calculate/ecs_regression_ACCESS-ESM1-5.nc
deleted file mode 100644
index 1b948ab..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/work/ecs/calculate/ecs_regression_ACCESS-ESM1-5.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/work/ecs/calculate/lambda.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/work/ecs/calculate/lambda.nc
deleted file mode 100644
index 1d9e95b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/work/ecs/calculate/lambda.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/output.json
deleted file mode 100644
index cb905d7..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/output.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162136/work/ecs/calculate/ecs.nc": {
- "filename": "executions/recipe_20251001_162136/work/ecs/calculate/ecs.nc",
- "long_name": "Equilibrium Climate Sensitivity (Gregory method) for multiple climate models.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/ecs/calculate/ecs_regression_ACCESS-ESM1-5.nc": {
- "filename": "executions/recipe_20251001_162136/work/ecs/calculate/ecs_regression_ACCESS-ESM1-5.nc",
- "long_name": "Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly ΔT for 25 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and ΔT. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162136/work/ecs/calculate/lambda.nc": {
- "filename": "executions/recipe_20251001_162136/work/ecs/calculate/lambda.nc",
- "long_name": "Climate Feedback Parameter for multiple climate models.",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162136/plots/ecs/calculate/ACCESS-ESM1-5.png": {
- "filename": "executions/recipe_20251001_162136/plots/ecs/calculate/ACCESS-ESM1-5.png",
- "long_name": "Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly ΔT for 25 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and ΔT. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2.",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/series.json
deleted file mode 100644
index dca9a6e..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/series.json
+++ /dev/null
@@ -1,75 +0,0 @@
-[
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "global annual mean anomaly of rtnt vs tas"
- },
- "values": [
- 6.301618810433608,
- 5.329962324973865,
- 4.457168487524375,
- 4.063270473235693,
- 3.997668802432525,
- 4.180433805416792,
- 3.0609276012273936,
- 3.861434506880931,
- 3.3595875535867155,
- 2.549070238455748,
- 3.594881887558179,
- 2.7598500562325503,
- 3.0452323230107625,
- 3.285782995957595,
- 2.7328950753578773,
- 2.9276911566807673,
- 3.4169596145091914,
- 2.6721401283068538,
- 2.671833517979353,
- 2.906354267169268,
- 2.62062533170749,
- 2.370520582443629,
- 2.514279511158283,
- 2.2912092035244673,
- 2.6026399716352806
- ],
- "index": [
- 0.7859516476362387,
- 1.5846867018479998,
- 2.0082183055388896,
- 2.1679763089694006,
- 2.4878905623999117,
- 2.777185512444987,
- 2.9923634377504413,
- 3.000489768003888,
- 3.341766326121842,
- 3.2141301238231677,
- 3.242804956680743,
- 3.434891247871633,
- 3.2548868815104584,
- 3.547904976086784,
- 3.5990610914964236,
- 3.3830256378956847,
- 3.63331912309701,
- 3.7885808700170855,
- 3.6890615296975398,
- 3.875451206305115,
- 3.9293335586939406,
- 3.7931931246244517,
- 3.9513438689403415,
- 4.052976058568788,
- 3.957220552884678
- ],
- "index_name": "tas_anomaly",
- "attributes": {
- "caption": "Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly \u0394T for 25 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and \u0394T. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2.",
- "values_name": "rtnt_anomaly",
- "index_name": "tas_anomaly",
- "value_long_name": "TOA Net downward Total Radiation Anomaly",
- "index_long_name": "Near-Surface Air Temperature Anomaly",
- "index_standard_name": "air_temperature",
- "value_units": "W m-2",
- "index_units": "K"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/diagnostic.json
similarity index 84%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/diagnostic.json
index 1cf642b..3e38af0 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/diagnostic.json
@@ -1,5 +1,8 @@
{
"DIMENSIONS": {
+ "grid_label": {
+ "gn": {}
+ },
"json_structure": [
"grid_label",
"member_id",
@@ -7,36 +10,33 @@
"region",
"metric"
],
- "region": {
- "global": {}
+ "member_id": {
+ "r1i1p1f1": {}
},
"metric": {
"ecs": {},
"lambda": {}
},
- "grid_label": {
- "gn": {}
- },
- "member_id": {
- "r1i1p1f1": {}
+ "region": {
+ "global": {}
},
"source_id": {
"ACCESS-ESM1-5": {}
}
},
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
"RESULTS": {
"gn": {
"r1i1p1f1": {
"ACCESS-ESM1-5": {
"global": {
- "ecs": 3.0848609023686766,
- "lambda": -1.1180573295106322
+ "ecs": 3.8893563243493334,
+ "lambda": -0.7191879432468846
}
}
}
}
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
+ }
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/index.html
similarity index 88%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/index.html
index 0c49ab5..9f50f82 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/22afada9cf9d962cd9b5d50fe01419704dc80130/executions/recipe_20251001_162136/index.html
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/index.html
@@ -120,8 +120,6 @@ Projects
- EU H2020 project CRESCENDO
-
References
@@ -236,10 +234,10 @@ Ecs: Calculate
">
-
+
- Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly ΔT for 25 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and ΔT. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2.
+ Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly ΔT for 150 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and ΔT. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2.
download |
@@ -271,7 +269,7 @@ Data files
- Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly ΔT for 25 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and ΔT. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2. |
+ Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly ΔT for 150 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and ΔT. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2. |
download |
references |
extra data citation |
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/plots/ecs/calculate/ACCESS-ESM1-5.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/plots/ecs/calculate/ACCESS-ESM1-5.png
new file mode 100644
index 0000000..42814e7
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/plots/ecs/calculate/ACCESS-ESM1-5.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/output.json
new file mode 100644
index 0000000..ec00bf3
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/output.json
@@ -0,0 +1,55 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140606/work/ecs/calculate/ecs.nc": {
+ "filename": "executions/recipe_20260716_140606/work/ecs/calculate/ecs.nc",
+ "long_name": "Equilibrium Climate Sensitivity (Gregory method) for multiple climate models.",
+ "description": "",
+ "dimensions": {
+ "metric": "ecs"
+ }
+ },
+ "executions/recipe_20260716_140606/work/ecs/calculate/ecs_regression_ACCESS-ESM1-5.nc": {
+ "filename": "executions/recipe_20260716_140606/work/ecs/calculate/ecs_regression_ACCESS-ESM1-5.nc",
+ "long_name": "Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly ΔT for 150 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and ΔT. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2.",
+ "description": "",
+ "dimensions": {
+ "statistic": "global annual mean anomaly of rtnt vs tas"
+ }
+ },
+ "executions/recipe_20260716_140606/work/ecs/calculate/lambda.nc": {
+ "filename": "executions/recipe_20260716_140606/work/ecs/calculate/lambda.nc",
+ "long_name": "Climate Feedback Parameter for multiple climate models.",
+ "description": "",
+ "dimensions": {
+ "metric": "lambda"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140606/plots/ecs/calculate/ACCESS-ESM1-5.png": {
+ "filename": "executions/recipe_20260716_140606/plots/ecs/calculate/ACCESS-ESM1-5.png",
+ "long_name": "Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly ΔT for 150 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and ΔT. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2.",
+ "description": "",
+ "dimensions": {
+ "statistic": "global annual mean anomaly of rtnt vs tas"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/executions/recipe_20260716_140606/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/series.json
new file mode 100644
index 0000000..1a018e0
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/equilibrium-climate-sensitivity/gn_r1i1p1f1_ACCESS-ESM1-5_g8_v1_d9cc5189/8/series.json
@@ -0,0 +1,325 @@
+[
+ {
+ "attributes": {
+ "caption": "Global annual mean top of the atmosphere (TOA) net radiation flux anomaly N vs. global annual mean near-surface air temperature anomaly \u0394T for 150 years (blue circles) of the abrupt 4x CO2 experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The solid black line corresponds to an ordinary linear regression between N and \u0394T. On the top left, R2 corresponds to the coefficient of determination of the linear regression. The equilibrium climate sensitivity (ECS) is estimated as the x-intercept of the linear regression (interception of the solid and dashed black lines) divided by 2.",
+ "index_long_name": "Near-Surface Air Temperature Anomaly",
+ "index_name": "tas_anomaly",
+ "index_standard_name": "air_temperature",
+ "index_units": "K",
+ "value_long_name": "TOA Net downward Total Radiation Anomaly",
+ "value_units": "W m-2",
+ "values_name": "rtnt_anomaly"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "global annual mean anomaly of rtnt vs tas"
+ },
+ "index": [
+ 0.7562164664268494,
+ 1.5558018684387207,
+ 1.9802042245864868,
+ 2.140812635421753,
+ 2.4615771770477295,
+ 2.751732587814331,
+ 2.9677915573120117,
+ 2.9767580032348633,
+ 3.318915367126465,
+ 3.1921398639678955,
+ 3.221675157546997,
+ 3.4146015644073486,
+ 3.2354578971862793,
+ 3.529336452484131,
+ 3.5813632011413574,
+ 3.366178274154663,
+ 3.6173322200775146,
+ 3.773454427719116,
+ 3.674816131591797,
+ 3.8620662689208984,
+ 3.91680908203125,
+ 3.7815191745758057,
+ 3.9405405521392822,
+ 4.043013095855713,
+ 3.9481282234191895,
+ 4.011873722076416,
+ 4.016903400421143,
+ 4.124380588531494,
+ 4.159867286682129,
+ 4.1782941818237305,
+ 4.145298957824707,
+ 4.120665550231934,
+ 4.170708656311035,
+ 4.134905815124512,
+ 4.0661444664001465,
+ 4.351020336151123,
+ 4.25888204574585,
+ 4.091334819793701,
+ 4.338307857513428,
+ 4.379165172576904,
+ 4.223581314086914,
+ 4.329044342041016,
+ 4.450010299682617,
+ 4.429893493652344,
+ 4.528093338012695,
+ 4.612773895263672,
+ 4.581884860992432,
+ 4.600189685821533,
+ 4.637110233306885,
+ 4.574360370635986,
+ 4.727064609527588,
+ 4.7502522468566895,
+ 4.818057060241699,
+ 4.640561103820801,
+ 4.661581993103027,
+ 4.644577980041504,
+ 4.6804914474487305,
+ 4.685948371887207,
+ 4.485442638397217,
+ 4.511163234710693,
+ 4.75477933883667,
+ 4.7739386558532715,
+ 4.768683910369873,
+ 4.776612758636475,
+ 4.764980316162109,
+ 4.755270004272461,
+ 4.7132415771484375,
+ 4.838632583618164,
+ 4.904087066650391,
+ 4.791501998901367,
+ 4.949089527130127,
+ 4.8031182289123535,
+ 4.721691608428955,
+ 4.904150485992432,
+ 4.966827869415283,
+ 4.85375452041626,
+ 5.0061845779418945,
+ 4.790450096130371,
+ 4.884865760803223,
+ 5.002657890319824,
+ 4.718899726867676,
+ 4.877219200134277,
+ 4.926591396331787,
+ 4.923198223114014,
+ 5.05170202255249,
+ 4.948607921600342,
+ 5.100823879241943,
+ 5.033740520477295,
+ 5.05824089050293,
+ 5.228401184082031,
+ 5.060091018676758,
+ 5.157161712646484,
+ 5.101461410522461,
+ 4.8999176025390625,
+ 4.915476322174072,
+ 4.915775775909424,
+ 4.8007493019104,
+ 4.939232349395752,
+ 5.0115532875061035,
+ 5.03208589553833,
+ 5.15897274017334,
+ 5.072999000549316,
+ 5.114039421081543,
+ 5.2671709060668945,
+ 4.982863426208496,
+ 5.090828895568848,
+ 5.456119060516357,
+ 5.326047420501709,
+ 5.3242716789245605,
+ 5.304795742034912,
+ 5.123271465301514,
+ 5.38867712020874,
+ 5.309661865234375,
+ 5.008783340454102,
+ 5.160480499267578,
+ 5.20014762878418,
+ 4.903083801269531,
+ 5.156679153442383,
+ 5.349300861358643,
+ 5.268728733062744,
+ 5.376663684844971,
+ 5.212809085845947,
+ 5.351475238800049,
+ 5.37722635269165,
+ 5.503960609436035,
+ 5.604388236999512,
+ 5.648877143859863,
+ 5.540228843688965,
+ 5.653717994689941,
+ 5.623591423034668,
+ 5.369344234466553,
+ 5.471389293670654,
+ 5.537393093109131,
+ 5.587039470672607,
+ 5.386075496673584,
+ 5.4765849113464355,
+ 5.593400955200195,
+ 5.467662811279297,
+ 5.494878768920898,
+ 5.352264404296875,
+ 5.620386123657227,
+ 5.585163116455078,
+ 5.573286533355713,
+ 5.7065815925598145,
+ 5.466707706451416,
+ 5.632107257843018,
+ 5.713125705718994,
+ 5.468582630157471,
+ 5.6764936447143555,
+ 5.712895393371582
+ ],
+ "index_name": "tas_anomaly",
+ "values": [
+ 6.311809539794922,
+ 5.338582992553711,
+ 4.464219570159912,
+ 4.068751811981201,
+ 4.001580238342285,
+ 4.182775497436523,
+ 3.061699628829956,
+ 3.8606367111206055,
+ 3.357219696044922,
+ 2.545132875442505,
+ 3.589374542236328,
+ 2.7527730464935303,
+ 3.0365853309631348,
+ 3.2755661010742188,
+ 2.7211086750030518,
+ 2.914334774017334,
+ 3.402033567428589,
+ 2.655644178390503,
+ 2.6537675857543945,
+ 2.88671875,
+ 2.5994198322296143,
+ 2.347745418548584,
+ 2.4899344444274902,
+ 2.2652945518493652,
+ 2.57515549659729,
+ 2.6559605598449707,
+ 2.6648106575012207,
+ 2.2606940269470215,
+ 2.4157588481903076,
+ 2.2061047554016113,
+ 2.4762988090515137,
+ 2.029815912246704,
+ 2.3680808544158936,
+ 2.561868667602539,
+ 2.3111066818237305,
+ 2.6150901317596436,
+ 1.6540162563323975,
+ 2.684103012084961,
+ 2.2712583541870117,
+ 2.4532411098480225,
+ 2.2020516395568848,
+ 2.4553401470184326,
+ 1.9045156240463257,
+ 2.010483503341675,
+ 2.9675137996673584,
+ 1.9137088060379028,
+ 2.097559690475464,
+ 1.962032675743103,
+ 2.1459407806396484,
+ 2.4834938049316406,
+ 1.9687052965164185,
+ 2.148479700088501,
+ 2.2804019451141357,
+ 2.0270464420318604,
+ 2.024411201477051,
+ 2.4851467609405518,
+ 2.3784403800964355,
+ 1.8319222927093506,
+ 2.0550076961517334,
+ 2.428825616836548,
+ 2.3179755210876465,
+ 2.099597692489624,
+ 2.0953309535980225,
+ 2.2371773719787598,
+ 2.0239882469177246,
+ 2.3999571800231934,
+ 2.2103874683380127,
+ 2.243532657623291,
+ 2.156830072402954,
+ 1.934539794921875,
+ 2.1710760593414307,
+ 2.0902791023254395,
+ 2.303267240524292,
+ 2.073932409286499,
+ 1.8299299478530884,
+ 1.752624750137329,
+ 2.3809447288513184,
+ 2.156008005142212,
+ 2.2201080322265625,
+ 1.71034836769104,
+ 2.046365976333618,
+ 2.3069698810577393,
+ 1.8773860931396484,
+ 2.512568712234497,
+ 1.8065152168273926,
+ 2.441784620285034,
+ 1.9321789741516113,
+ 1.798303484916687,
+ 2.3413116931915283,
+ 1.929510235786438,
+ 1.5241007804870605,
+ 1.8157978057861328,
+ 1.6675868034362793,
+ 1.7499862909317017,
+ 2.3246383666992188,
+ 1.6718186140060425,
+ 1.8154006004333496,
+ 2.2853870391845703,
+ 1.8117648363113403,
+ 2.0801753997802734,
+ 1.6756685972213745,
+ 1.761181354522705,
+ 2.180450439453125,
+ 1.9886233806610107,
+ 1.6549017429351807,
+ 2.4405250549316406,
+ 1.8832401037216187,
+ 1.6272786855697632,
+ 2.009028911590576,
+ 1.5042697191238403,
+ 2.26225209236145,
+ 1.9873522520065308,
+ 1.8420414924621582,
+ 1.5817818641662598,
+ 1.8412578105926514,
+ 1.6226297616958618,
+ 1.941252589225769,
+ 2.381171464920044,
+ 1.6262850761413574,
+ 1.7663973569869995,
+ 1.8902772665023804,
+ 1.6300767660140991,
+ 1.8670096397399902,
+ 2.060673952102661,
+ 2.3921375274658203,
+ 1.625472068786621,
+ 1.768129587173462,
+ 1.9409178495407104,
+ 2.064492702484131,
+ 1.422119379043579,
+ 1.855118751525879,
+ 1.5031852722167969,
+ 2.0118532180786133,
+ 2.072251081466675,
+ 1.5940985679626465,
+ 2.0173301696777344,
+ 1.778290867805481,
+ 1.4111863374710083,
+ 1.472051739692688,
+ 1.5765340328216553,
+ 1.7036023139953613,
+ 1.9119852781295776,
+ 1.6769800186157227,
+ 1.5187063217163086,
+ 1.9552682638168335,
+ 1.9119032621383667,
+ 1.8025342226028442,
+ 2.049659013748169,
+ 1.954239010810852,
+ 1.3017874956130981
+ ]
+ }
+]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/diagnostic.json
new file mode 100644
index 0000000..032b445
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/diagnostic.json
@@ -0,0 +1,9 @@
+{
+ "DIMENSIONS": {
+ "json_structure": []
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/executions/recipe_20260716_140606/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/executions/recipe_20260716_140606/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/executions/recipe_20260716_140606/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/executions/recipe_20260716_140606/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png
new file mode 100644
index 0000000..59eb1be
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/executions/recipe_20260716_140606/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/output.json
new file mode 100644
index 0000000..74a2082
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/output.json
@@ -0,0 +1,43 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/executions/recipe_20260716_140606/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/executions/recipe_20260716_140606/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140606/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.nc": {
+ "filename": "executions/recipe_20260716_140606/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.nc",
+ "long_name": "Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5.",
+ "description": "",
+ "dimensions": {
+ "statistic": "annual mean",
+ "variable_id": "tas",
+ "region": "global"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140606/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png": {
+ "filename": "executions/recipe_20260716_140606/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png",
+ "long_name": "Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5.",
+ "description": "",
+ "dimensions": {
+ "statistic": "annual mean",
+ "variable_id": "tas",
+ "region": "global"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/executions/recipe_20260716_140606/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/executions/recipe_20260716_140606/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/series.json
similarity index 98%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/series.json
index 421dfa2..2240037 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/series.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/1pctCO2_gn_r1i1p1f1_ACCESS-ESM1-5_Amon_tas_g9_v1_4ec8d8d2/9/series.json
@@ -1,166 +1,26 @@
[
{
+ "attributes": {
+ "calendar": "proleptic_gregorian",
+ "caption": "Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5.",
+ "index_long_name": "time",
+ "index_name": "time",
+ "index_standard_name": "time",
+ "value_long_name": "Near-Surface Air Temperature",
+ "value_standard_name": "air_temperature",
+ "value_units": "degrees_C",
+ "values_name": "tas"
+ },
"dimensions": {
"experiment_id": "1pctCO2",
"grid_label": "gn",
"member_id": "r1i1p1f1",
+ "region": "global",
"source_id": "ACCESS-ESM1-5",
+ "statistic": "annual mean",
"table_id": "Amon",
- "variable_id": "tas",
- "statistic": "tas annual global mean"
+ "variable_id": "tas"
},
- "values": [
- 14.334039688110352,
- 14.516870498657227,
- 14.505823135375977,
- 14.290704727172852,
- 14.465021133422852,
- 14.475152969360352,
- 14.470331192016602,
- 14.721246719360352,
- 14.804224014282227,
- 14.688501358032227,
- 14.753595352172852,
- 14.680963516235352,
- 14.915552139282227,
- 14.822565078735352,
- 14.799798965454102,
- 15.035120010375977,
- 15.030023574829102,
- 15.066766738891602,
- 14.996332168579102,
- 14.957605361938477,
- 14.983911514282227,
- 15.068933486938477,
- 14.976221084594727,
- 15.166376113891602,
- 15.144708633422852,
- 15.193536758422852,
- 15.242364883422852,
- 15.318292617797852,
- 15.296686172485352,
- 15.167047500610352,
- 15.209589004516602,
- 15.321863174438477,
- 15.386468887329102,
- 15.323053359985352,
- 15.363153457641602,
- 15.422784805297852,
- 15.448236465454102,
- 15.564081192016602,
- 15.599115371704102,
- 15.495721817016602,
- 15.477807998657227,
- 15.594507217407227,
- 15.628870010375977,
- 15.683801651000977,
- 15.796625137329102,
- 15.786035537719727,
- 15.859552383422852,
- 15.823968887329102,
- 15.729059219360352,
- 15.659296035766602,
- 15.677850723266602,
- 15.747949600219727,
- 15.819604873657227,
- 15.851831436157227,
- 15.776788711547852,
- 15.871210098266602,
- 16.072839736938477,
- 16.01873207092285,
- 16.0991153717041,
- 16.155420303344727,
- 16.18877601623535,
- 16.2844181060791,
- 16.2208194732666,
- 16.242456436157227,
- 16.27959632873535,
- 16.4090518951416,
- 16.5285587310791,
- 16.414514541625977,
- 16.15349769592285,
- 16.3984317779541,
- 16.43401527404785,
- 16.64055824279785,
- 16.558435440063477,
- 16.56975746154785,
- 16.66326332092285,
- 16.7380313873291,
- 16.655420303344727,
- 16.834253311157227,
- 16.915185928344727,
- 16.759546279907227,
- 16.895715713500977,
- 16.96978187561035,
- 17.10466957092285,
- 16.9466495513916,
- 16.965784072875977,
- 17.0570011138916,
- 16.97490882873535,
- 16.99273109436035,
- 17.1169376373291,
- 17.130090713500977,
- 17.1418399810791,
- 17.17852210998535,
- 17.10064125061035,
- 17.29778480529785,
- 17.361169815063477,
- 17.37078285217285,
- 17.47698402404785,
- 17.365991592407227,
- 17.47783851623535,
- 17.5438175201416,
- 17.64299964904785,
- 17.53887367248535,
- 17.5707950592041,
- 17.52532386779785,
- 17.60527992248535,
- 17.664392471313477,
- 17.712793350219727,
- 17.775354385375977,
- 17.763635635375977,
- 17.99053382873535,
- 17.943262100219727,
- 17.768274307250977,
- 17.962244033813477,
- 17.76091957092285,
- 17.98858070373535,
- 18.1077823638916,
- 18.04094886779785,
- 18.008996963500977,
- 18.001367568969727,
- 18.061120986938477,
- 18.33245277404785,
- 18.30986976623535,
- 18.439599990844727,
- 18.507104873657227,
- 18.4835147857666,
- 18.345239639282227,
- 18.4498233795166,
- 18.65679359436035,
- 18.610010147094727,
- 18.596033096313477,
- 18.664941787719727,
- 18.77471351623535,
- 18.734949111938477,
- 18.838647842407227,
- 18.72332191467285,
- 18.9886417388916,
- 18.8992862701416,
- 18.806787490844727,
- 19.115442276000977,
- 18.8861026763916,
- 18.8358097076416,
- 19.035242080688477,
- 19.0711612701416,
- 19.1568546295166,
- 19.22490882873535,
- 19.17205238342285,
- 19.51384925842285,
- 19.353906631469727,
- 19.241968154907227,
- 19.5606632232666
- ],
"index": [
"0101-07-02T12:00:00",
"0102-07-02T12:00:00",
@@ -314,16 +174,157 @@
"0250-07-02T12:00:00"
],
"index_name": "time",
- "attributes": {
- "caption": "Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5.",
- "values_name": "tas",
- "index_name": "time",
- "value_long_name": "Near-Surface Air Temperature",
- "index_long_name": "time",
- "value_standard_name": "air_temperature",
- "index_standard_name": "time",
- "value_units": "degrees_C",
- "calendar": "proleptic_gregorian"
- }
+ "values": [
+ 14.334039688110352,
+ 14.516870498657227,
+ 14.505823135375977,
+ 14.290704727172852,
+ 14.465021133422852,
+ 14.475152969360352,
+ 14.470331192016602,
+ 14.721246719360352,
+ 14.804224014282227,
+ 14.688501358032227,
+ 14.753595352172852,
+ 14.680963516235352,
+ 14.915552139282227,
+ 14.822565078735352,
+ 14.799798965454102,
+ 15.035120010375977,
+ 15.030023574829102,
+ 15.066766738891602,
+ 14.996332168579102,
+ 14.957605361938477,
+ 14.983911514282227,
+ 15.068933486938477,
+ 14.976221084594727,
+ 15.166376113891602,
+ 15.144708633422852,
+ 15.193536758422852,
+ 15.242364883422852,
+ 15.318292617797852,
+ 15.296686172485352,
+ 15.167047500610352,
+ 15.209589004516602,
+ 15.321863174438477,
+ 15.386468887329102,
+ 15.323053359985352,
+ 15.363153457641602,
+ 15.422784805297852,
+ 15.448236465454102,
+ 15.564081192016602,
+ 15.599115371704102,
+ 15.495721817016602,
+ 15.477807998657227,
+ 15.594507217407227,
+ 15.628870010375977,
+ 15.683801651000977,
+ 15.796625137329102,
+ 15.786035537719727,
+ 15.859552383422852,
+ 15.823968887329102,
+ 15.729059219360352,
+ 15.659296035766602,
+ 15.677850723266602,
+ 15.747949600219727,
+ 15.819604873657227,
+ 15.851831436157227,
+ 15.776788711547852,
+ 15.871210098266602,
+ 16.072839736938477,
+ 16.01873207092285,
+ 16.0991153717041,
+ 16.155420303344727,
+ 16.18877601623535,
+ 16.2844181060791,
+ 16.2208194732666,
+ 16.242456436157227,
+ 16.27959632873535,
+ 16.4090518951416,
+ 16.5285587310791,
+ 16.414514541625977,
+ 16.15349769592285,
+ 16.3984317779541,
+ 16.43401527404785,
+ 16.64055824279785,
+ 16.558435440063477,
+ 16.56975746154785,
+ 16.66326332092285,
+ 16.7380313873291,
+ 16.655420303344727,
+ 16.834253311157227,
+ 16.915185928344727,
+ 16.759546279907227,
+ 16.895715713500977,
+ 16.96978187561035,
+ 17.10466957092285,
+ 16.9466495513916,
+ 16.965784072875977,
+ 17.0570011138916,
+ 16.97490882873535,
+ 16.99273109436035,
+ 17.1169376373291,
+ 17.130090713500977,
+ 17.1418399810791,
+ 17.17852210998535,
+ 17.10064125061035,
+ 17.29778480529785,
+ 17.361169815063477,
+ 17.37078285217285,
+ 17.47698402404785,
+ 17.365991592407227,
+ 17.47783851623535,
+ 17.5438175201416,
+ 17.64299964904785,
+ 17.53887367248535,
+ 17.5707950592041,
+ 17.52532386779785,
+ 17.60527992248535,
+ 17.664392471313477,
+ 17.712793350219727,
+ 17.775354385375977,
+ 17.763635635375977,
+ 17.99053382873535,
+ 17.943262100219727,
+ 17.768274307250977,
+ 17.962244033813477,
+ 17.76091957092285,
+ 17.98858070373535,
+ 18.1077823638916,
+ 18.04094886779785,
+ 18.008996963500977,
+ 18.001367568969727,
+ 18.061120986938477,
+ 18.33245277404785,
+ 18.30986976623535,
+ 18.439599990844727,
+ 18.507104873657227,
+ 18.4835147857666,
+ 18.345239639282227,
+ 18.4498233795166,
+ 18.65679359436035,
+ 18.610010147094727,
+ 18.596033096313477,
+ 18.664941787719727,
+ 18.77471351623535,
+ 18.734949111938477,
+ 18.838647842407227,
+ 18.72332191467285,
+ 18.9886417388916,
+ 18.8992862701416,
+ 18.806787490844727,
+ 19.115442276000977,
+ 18.8861026763916,
+ 18.8358097076416,
+ 19.035242080688477,
+ 19.0711612701416,
+ 19.1568546295166,
+ 19.22490882873535,
+ 19.17205238342285,
+ 19.51384925842285,
+ 19.353906631469727,
+ 19.241968154907227,
+ 19.5606632232666
+ ]
}
]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/diagnostic.json
deleted file mode 100644
index 30503d8..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/diagnostic.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": []
- },
- "RESULTS": {},
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png
deleted file mode 100644
index 9bad3fe..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.nc
deleted file mode 100644
index 74a4f3f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/output.json
deleted file mode 100644
index 358b1b6..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/output.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162136/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.nc": {
- "filename": "executions/recipe_20251001_162136/work/timeseries/script1/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.nc",
- "long_name": "Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5.",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162136/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png": {
- "filename": "executions/recipe_20251001_162136/plots/timeseries/script1/png/CMIP6_ACCESS-ESM1-5_Amon_1pctCO2_r1i1p1f1_tas_gn_01010116T120000-02501216T120000.png",
- "long_name": "Annual global mean Near-Surface Air Temperature according to ACCESS-ESM1-5.",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/global-mean-timeseries/310487d8ac48efd400644be806c9257124ad24cf/executions/recipe_20251001_162136/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/diagnostic.json
new file mode 100644
index 0000000..032b445
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/diagnostic.json
@@ -0,0 +1,9 @@
+{
+ "DIMENSIONS": {
+ "json_structure": []
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/index.html
new file mode 100644
index 0000000..a9b969f
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/index.html
@@ -0,0 +1,434 @@
+
+
+
+
+
+
+
+ Recipe
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Model evaluation with focus on total column and stratospheric ozone.
+
+
+ Plot climatologies, zonal means, and selected monthly means for total
+column ozone and stratospheric ozone for the REF.
+
+
+Authors
+
+
+
+Maintainers
+
+
+
+Projects
+
+
+
+References
+
+
+
+
+
+
+
+
+
+
+
+ All
+
+
+
+ Zonal_Mean_Profiles
+
+
+
+
+
+
+
+
+
Zonal_Mean_Profiles
+
+
+
+
+
+
Zonal Mean Profiles: Plot
+
+
+
+
+
+
+
+
+
Data files Show/Hide
+
+
+
+
+
+
+
+
+
+
+ Files
+
+
+ main_log.txt |
+ main_log_debug.txt |
+ recipe.yml |
+ figures |
+ data
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/plots/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/plots/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical.png
new file mode 100644
index 0000000..fa9f37d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/plots/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/output.json
new file mode 100644
index 0000000..733dabb
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/output.json
@@ -0,0 +1,47 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140605/work/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical_bottom.nc": {
+ "filename": "executions/recipe_20260716_140605/work/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical_bottom.nc",
+ "long_name": "Zonal mean profile of Mole Fraction of O3 of dataset CMIP6 - ESACCI-OZONE.",
+ "description": "",
+ "dimensions": {}
+ },
+ "executions/recipe_20260716_140605/work/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical_top_left.nc": {
+ "filename": "executions/recipe_20260716_140605/work/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical_top_left.nc",
+ "long_name": "Zonal mean profile of Mole Fraction of O3 of dataset CMIP6.",
+ "description": "",
+ "dimensions": {}
+ },
+ "executions/recipe_20260716_140605/work/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical_top_right.nc": {
+ "filename": "executions/recipe_20260716_140605/work/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical_top_right.nc",
+ "long_name": "Zonal mean profile of Mole Fraction of O3 of dataset ESACCI-OZONE.",
+ "description": "",
+ "dimensions": {}
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140605/plots/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical.png": {
+ "filename": "executions/recipe_20260716_140605/plots/zonal_mean_profiles/plot/zonal_mean_profile_o3_CNRM-ESM2-1_historical.png",
+ "long_name": "Zonal mean profile of Mole Fraction of O3 of dataset CMIP6.",
+ "description": "",
+ "dimensions": {}
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/executions/recipe_20260716_140605/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/enso-characteristics/80f3465adf5c011475f6f2c01d5c1230b2af2b70/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/ozone-zonal/gr_r1i1p1f2_CNRM-ESM2-1_g19_v1_f40d466d/10/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/diagnostic.json
new file mode 100644
index 0000000..17d9919
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/diagnostic.json
@@ -0,0 +1,790 @@
+{
+ "DIMENSIONS": {
+ "grid_label": {
+ "gn": {}
+ },
+ "json_structure": [
+ "grid_label",
+ "member_id",
+ "source_id",
+ "variable_id",
+ "region",
+ "metric"
+ ],
+ "member_id": {
+ "r1i1p1f1": {}
+ },
+ "metric": {
+ "trend": {}
+ },
+ "region": {
+ "ARP": {},
+ "CAF": {},
+ "CAR": {},
+ "CAU": {},
+ "CNA": {},
+ "EAN": {},
+ "EAS": {},
+ "EAU": {},
+ "ECA": {},
+ "EEU": {},
+ "ENA": {},
+ "ESAF": {},
+ "ESB": {},
+ "GIC": {},
+ "MDG": {},
+ "MED": {},
+ "NAU": {},
+ "NCA": {},
+ "NEAF": {},
+ "NEN": {},
+ "NES": {},
+ "NEU": {},
+ "NSA": {},
+ "NWN": {},
+ "NWS": {},
+ "NZ": {},
+ "RAR": {},
+ "RFE": {},
+ "SAH": {},
+ "SAM": {},
+ "SAS": {},
+ "SAU": {},
+ "SCA": {},
+ "SEA": {},
+ "SEAF": {},
+ "SES": {},
+ "SSA": {},
+ "SWS": {},
+ "TIB": {},
+ "WAF": {},
+ "WAN": {},
+ "WCA": {},
+ "WCE": {},
+ "WNA": {},
+ "WSAF": {},
+ "WSB": {}
+ },
+ "source_id": {
+ "ACCESS-ESM1-5": {}
+ },
+ "variable_id": {
+ "hus": {},
+ "pr": {},
+ "psl": {},
+ "tas": {},
+ "ua": {}
+ }
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {
+ "gn": {
+ "r1i1p1f1": {
+ "ACCESS-ESM1-5": {
+ "hus": {
+ "ARP": {
+ "trend": 3.1197788530334947e-07
+ },
+ "CAF": {
+ "trend": 4.6452240098915354e-07
+ },
+ "CAR": {
+ "trend": 1.844099557501977e-07
+ },
+ "CAU": {
+ "trend": 6.192065882260067e-08
+ },
+ "CNA": {
+ "trend": 1.1347025008490164e-07
+ },
+ "EAN": {
+ "trend": 3.0220110858181215e-09
+ },
+ "EAS": {
+ "trend": 3.132019514850981e-07
+ },
+ "EAU": {
+ "trend": 6.76231621810075e-08
+ },
+ "ECA": {
+ "trend": 1.5318499890781823e-07
+ },
+ "EEU": {
+ "trend": 6.711744759968497e-08
+ },
+ "ENA": {
+ "trend": 1.268114289132427e-07
+ },
+ "ESAF": {
+ "trend": 1.4452203345172165e-07
+ },
+ "ESB": {
+ "trend": 9.424255154044658e-08
+ },
+ "GIC": {
+ "trend": 3.741627807585246e-08
+ },
+ "MDG": {
+ "trend": 1.5630648420028592e-07
+ },
+ "MED": {
+ "trend": 4.913755802249398e-08
+ },
+ "NAU": {
+ "trend": 2.7145043546283887e-08
+ },
+ "NCA": {
+ "trend": 1.41848630619279e-07
+ },
+ "NEAF": {
+ "trend": 3.9220213920998503e-07
+ },
+ "NEN": {
+ "trend": 4.31482582996523e-08
+ },
+ "NES": {
+ "trend": 1.4066355902286887e-07
+ },
+ "NEU": {
+ "trend": 6.083314474381041e-08
+ },
+ "NSA": {
+ "trend": 3.8772492416683235e-07
+ },
+ "NWN": {
+ "trend": 6.872556213011194e-08
+ },
+ "NWS": {
+ "trend": 4.057899900544726e-07
+ },
+ "NZ": {
+ "trend": 3.9934203499569776e-08
+ },
+ "RAR": {
+ "trend": 5.268836389404896e-08
+ },
+ "RFE": {
+ "trend": 8.582139798818389e-08
+ },
+ "SAH": {
+ "trend": 2.1922254234141292e-07
+ },
+ "SAM": {
+ "trend": 4.3252975956420414e-07
+ },
+ "SAS": {
+ "trend": 3.5441945556158316e-07
+ },
+ "SAU": {
+ "trend": 5.360425703315741e-08
+ },
+ "SCA": {
+ "trend": 3.179258669661067e-07
+ },
+ "SEA": {
+ "trend": 4.712078975899203e-07
+ },
+ "SEAF": {
+ "trend": 3.375722315013263e-07
+ },
+ "SES": {
+ "trend": 1.746784050737915e-07
+ },
+ "SSA": {
+ "trend": -2.5155173499769035e-09
+ },
+ "SWS": {
+ "trend": 1.4230381850666163e-07
+ },
+ "TIB": {
+ "trend": 5.115990688864258e-07
+ },
+ "WAF": {
+ "trend": 3.196734041921445e-07
+ },
+ "WAN": {
+ "trend": 6.9265069235768806e-09
+ },
+ "WCA": {
+ "trend": 6.889185044656188e-08
+ },
+ "WCE": {
+ "trend": 6.615803016529753e-08
+ },
+ "WNA": {
+ "trend": 9.183126081779847e-08
+ },
+ "WSAF": {
+ "trend": 8.841940513093505e-08
+ },
+ "WSB": {
+ "trend": 4.81070081548296e-08
+ }
+ },
+ "pr": {
+ "ARP": {
+ "trend": 0.4245976209640503
+ },
+ "CAF": {
+ "trend": 18.754776000976562
+ },
+ "CAR": {
+ "trend": -0.7570448517799377
+ },
+ "CAU": {
+ "trend": -10.94982624053955
+ },
+ "CNA": {
+ "trend": -12.382620811462402
+ },
+ "EAN": {
+ "trend": -0.054980408400297165
+ },
+ "EAS": {
+ "trend": 7.691738128662109
+ },
+ "EAU": {
+ "trend": 1.6428278684616089
+ },
+ "ECA": {
+ "trend": 0.5850033760070801
+ },
+ "EEU": {
+ "trend": -2.9259355068206787
+ },
+ "ENA": {
+ "trend": 6.808752536773682
+ },
+ "ESAF": {
+ "trend": 4.80537748336792
+ },
+ "ESB": {
+ "trend": 2.2341816425323486
+ },
+ "GIC": {
+ "trend": 11.748871803283691
+ },
+ "MDG": {
+ "trend": -7.772272109985352
+ },
+ "MED": {
+ "trend": 10.398098945617676
+ },
+ "NAU": {
+ "trend": -21.936065673828125
+ },
+ "NCA": {
+ "trend": -1.9622904062271118
+ },
+ "NEAF": {
+ "trend": 11.668655395507812
+ },
+ "NEN": {
+ "trend": 6.0409979820251465
+ },
+ "NES": {
+ "trend": -9.9142484664917
+ },
+ "NEU": {
+ "trend": 3.2360899448394775
+ },
+ "NSA": {
+ "trend": 1.7594833374023438
+ },
+ "NWN": {
+ "trend": 5.521894931793213
+ },
+ "NWS": {
+ "trend": 0.7696653008460999
+ },
+ "NZ": {
+ "trend": 0.1466447412967682
+ },
+ "RAR": {
+ "trend": 8.328296661376953
+ },
+ "RFE": {
+ "trend": 5.003114223480225
+ },
+ "SAH": {
+ "trend": 1.7517507076263428
+ },
+ "SAM": {
+ "trend": -12.957470893859863
+ },
+ "SAS": {
+ "trend": 0.25166937708854675
+ },
+ "SAU": {
+ "trend": -4.096724510192871
+ },
+ "SCA": {
+ "trend": -5.231343746185303
+ },
+ "SEA": {
+ "trend": -6.8876142501831055
+ },
+ "SEAF": {
+ "trend": 13.229887962341309
+ },
+ "SES": {
+ "trend": 16.676515579223633
+ },
+ "SSA": {
+ "trend": 0.3328258693218231
+ },
+ "SWS": {
+ "trend": 1.6712067127227783
+ },
+ "TIB": {
+ "trend": 13.811650276184082
+ },
+ "WAF": {
+ "trend": 17.116662979125977
+ },
+ "WAN": {
+ "trend": 0.25596126914024353
+ },
+ "WCA": {
+ "trend": 1.4322049617767334
+ },
+ "WCE": {
+ "trend": 1.3303591012954712
+ },
+ "WNA": {
+ "trend": 6.672789096832275
+ },
+ "WSAF": {
+ "trend": -3.3819353580474854
+ },
+ "WSB": {
+ "trend": 0.15548671782016754
+ }
+ },
+ "psl": {
+ "ARP": {
+ "trend": -1.3945828676223755
+ },
+ "CAF": {
+ "trend": 0.2646122872829437
+ },
+ "CAR": {
+ "trend": -0.7759556770324707
+ },
+ "CAU": {
+ "trend": 2.1242902278900146
+ },
+ "CNA": {
+ "trend": 0.1919725388288498
+ },
+ "EAN": {
+ "trend": 8.80600643157959
+ },
+ "EAS": {
+ "trend": -1.298933982849121
+ },
+ "EAU": {
+ "trend": 1.5096887350082397
+ },
+ "ECA": {
+ "trend": -1.2188615798950195
+ },
+ "EEU": {
+ "trend": 1.9863663911819458
+ },
+ "ENA": {
+ "trend": -1.0304648876190186
+ },
+ "ESAF": {
+ "trend": 1.491648554801941
+ },
+ "ESB": {
+ "trend": -2.072435140609741
+ },
+ "GIC": {
+ "trend": -7.636495113372803
+ },
+ "MDG": {
+ "trend": 2.7094807624816895
+ },
+ "MED": {
+ "trend": -5.4987874031066895
+ },
+ "NAU": {
+ "trend": 2.205645799636841
+ },
+ "NCA": {
+ "trend": -0.19214549660682678
+ },
+ "NEAF": {
+ "trend": 0.35537606477737427
+ },
+ "NEN": {
+ "trend": -5.3818278312683105
+ },
+ "NES": {
+ "trend": 0.5624266266822815
+ },
+ "NEU": {
+ "trend": -0.06285706907510757
+ },
+ "NSA": {
+ "trend": -0.20376251637935638
+ },
+ "NWN": {
+ "trend": -1.0252412557601929
+ },
+ "NWS": {
+ "trend": 0.09528668224811554
+ },
+ "NZ": {
+ "trend": 1.1490139961242676
+ },
+ "RAR": {
+ "trend": -3.9938957691192627
+ },
+ "RFE": {
+ "trend": -3.1977715492248535
+ },
+ "SAH": {
+ "trend": -3.163419008255005
+ },
+ "SAM": {
+ "trend": -0.642691433429718
+ },
+ "SAS": {
+ "trend": 1.4977679252624512
+ },
+ "SAU": {
+ "trend": 1.2833455801010132
+ },
+ "SCA": {
+ "trend": -0.36614495515823364
+ },
+ "SEA": {
+ "trend": 1.0030461549758911
+ },
+ "SEAF": {
+ "trend": 0.8437135219573975
+ },
+ "SES": {
+ "trend": -0.31609612703323364
+ },
+ "SSA": {
+ "trend": -1.4769282341003418
+ },
+ "SWS": {
+ "trend": -0.3771262764930725
+ },
+ "TIB": {
+ "trend": 2.0584776401519775
+ },
+ "WAF": {
+ "trend": -0.18154126405715942
+ },
+ "WAN": {
+ "trend": 10.223946571350098
+ },
+ "WCA": {
+ "trend": -1.9021042585372925
+ },
+ "WCE": {
+ "trend": -5.001772880554199
+ },
+ "WNA": {
+ "trend": -1.2174967527389526
+ },
+ "WSAF": {
+ "trend": 0.3251904547214508
+ },
+ "WSB": {
+ "trend": -0.7128691077232361
+ }
+ },
+ "tas": {
+ "ARP": {
+ "trend": 0.05729154497385025
+ },
+ "CAF": {
+ "trend": 0.03163915127515793
+ },
+ "CAR": {
+ "trend": 0.037270404398441315
+ },
+ "CAU": {
+ "trend": 0.02285912074148655
+ },
+ "CNA": {
+ "trend": 0.06700249761343002
+ },
+ "EAN": {
+ "trend": 0.04067213088274002
+ },
+ "EAS": {
+ "trend": 0.03864305838942528
+ },
+ "EAU": {
+ "trend": 0.035846319049596786
+ },
+ "ECA": {
+ "trend": 0.057497136294841766
+ },
+ "EEU": {
+ "trend": 0.10941462963819504
+ },
+ "ENA": {
+ "trend": 0.050821349024772644
+ },
+ "ESAF": {
+ "trend": 0.024651527404785156
+ },
+ "ESB": {
+ "trend": 0.07792463153600693
+ },
+ "GIC": {
+ "trend": 0.11710298806428909
+ },
+ "MDG": {
+ "trend": 0.013781668618321419
+ },
+ "MED": {
+ "trend": 0.06855598837137222
+ },
+ "NAU": {
+ "trend": 0.034441202878952026
+ },
+ "NCA": {
+ "trend": 0.041793130338191986
+ },
+ "NEAF": {
+ "trend": 0.031268179416656494
+ },
+ "NEN": {
+ "trend": 0.1090349555015564
+ },
+ "NES": {
+ "trend": 0.030812636017799377
+ },
+ "NEU": {
+ "trend": 0.0772683396935463
+ },
+ "NSA": {
+ "trend": 0.03369826450943947
+ },
+ "NWN": {
+ "trend": 0.08022749423980713
+ },
+ "NWS": {
+ "trend": 0.027956606820225716
+ },
+ "NZ": {
+ "trend": -0.01185515895485878
+ },
+ "RAR": {
+ "trend": 0.10603936016559601
+ },
+ "RFE": {
+ "trend": 0.09369164705276489
+ },
+ "SAH": {
+ "trend": 0.07103288173675537
+ },
+ "SAM": {
+ "trend": 0.04427023231983185
+ },
+ "SAS": {
+ "trend": 0.018957048654556274
+ },
+ "SAU": {
+ "trend": -0.002432814799249172
+ },
+ "SCA": {
+ "trend": 0.03188040107488632
+ },
+ "SEA": {
+ "trend": 0.02531507983803749
+ },
+ "SEAF": {
+ "trend": 0.024090919643640518
+ },
+ "SES": {
+ "trend": 0.022451188415288925
+ },
+ "SSA": {
+ "trend": 0.009333409368991852
+ },
+ "SWS": {
+ "trend": 0.03478120267391205
+ },
+ "TIB": {
+ "trend": 0.0231146439909935
+ },
+ "WAF": {
+ "trend": 0.03484893962740898
+ },
+ "WAN": {
+ "trend": 0.045186784118413925
+ },
+ "WCA": {
+ "trend": 0.0701020285487175
+ },
+ "WCE": {
+ "trend": 0.08078574389219284
+ },
+ "WNA": {
+ "trend": 0.06189612299203873
+ },
+ "WSAF": {
+ "trend": 0.030096929520368576
+ },
+ "WSB": {
+ "trend": 0.06967192888259888
+ }
+ },
+ "ua": {
+ "ARP": {
+ "trend": 0.09236843883991241
+ },
+ "CAF": {
+ "trend": -0.009432331658899784
+ },
+ "CAR": {
+ "trend": 0.010346947237849236
+ },
+ "CAU": {
+ "trend": 0.014086912386119366
+ },
+ "CNA": {
+ "trend": -0.06968244910240173
+ },
+ "EAN": {
+ "trend": -0.022373786196112633
+ },
+ "EAS": {
+ "trend": -0.019375598058104515
+ },
+ "EAU": {
+ "trend": 0.05151344835758209
+ },
+ "ECA": {
+ "trend": -0.09769320487976074
+ },
+ "EEU": {
+ "trend": -0.02677888050675392
+ },
+ "ENA": {
+ "trend": -0.004058309830725193
+ },
+ "ESAF": {
+ "trend": 0.04975297302007675
+ },
+ "ESB": {
+ "trend": 0.028283657506108284
+ },
+ "GIC": {
+ "trend": 0.005195517558604479
+ },
+ "MDG": {
+ "trend": 0.08565837144851685
+ },
+ "MED": {
+ "trend": -0.009519408456981182
+ },
+ "NAU": {
+ "trend": 0.080119289457798
+ },
+ "NCA": {
+ "trend": 0.01441954355686903
+ },
+ "NEAF": {
+ "trend": 0.027599744498729706
+ },
+ "NEN": {
+ "trend": 0.02653585933148861
+ },
+ "NES": {
+ "trend": 0.06105629727244377
+ },
+ "NEU": {
+ "trend": 0.0008896462386474013
+ },
+ "NSA": {
+ "trend": 0.0528954342007637
+ },
+ "NWN": {
+ "trend": 0.024667656049132347
+ },
+ "NWS": {
+ "trend": 0.06747360527515411
+ },
+ "NZ": {
+ "trend": 0.05706353485584259
+ },
+ "RAR": {
+ "trend": 0.008082239888608456
+ },
+ "RFE": {
+ "trend": 0.022841813042759895
+ },
+ "SAH": {
+ "trend": 0.02603776566684246
+ },
+ "SAM": {
+ "trend": 0.06898833066225052
+ },
+ "SAS": {
+ "trend": 0.09565111249685287
+ },
+ "SAU": {
+ "trend": 0.045023441314697266
+ },
+ "SCA": {
+ "trend": 0.02363012172281742
+ },
+ "SEA": {
+ "trend": -0.021896716207265854
+ },
+ "SEAF": {
+ "trend": -0.015462184324860573
+ },
+ "SES": {
+ "trend": 0.046050064265728
+ },
+ "SSA": {
+ "trend": 0.018096577376127243
+ },
+ "SWS": {
+ "trend": 0.04855472594499588
+ },
+ "TIB": {
+ "trend": 0.009882960468530655
+ },
+ "WAF": {
+ "trend": -0.009478234685957432
+ },
+ "WAN": {
+ "trend": 0.006548513192683458
+ },
+ "WCA": {
+ "trend": -0.07664330303668976
+ },
+ "WCE": {
+ "trend": -0.021442681550979614
+ },
+ "WNA": {
+ "trend": -0.07288078218698502
+ },
+ "WSAF": {
+ "trend": 0.0350659117102623
+ },
+ "WSB": {
+ "trend": -0.036814820021390915
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/index.html
similarity index 50%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/index.html
index e94fdfb..3eba410 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/climate-drivers-for-fire/cb9d6f6dcaacca6d9b6a1803cabd555cea97d2d5/executions/recipe_20251001_162136/index.html
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/index.html
@@ -92,22 +92,22 @@
- Climate drivers for fire.
+ Linear trends.
- Recipe that plots diagnostics regarding climate drivers for fire. The
-diagnostic uses code for the ConFire model from the following GitHub
-repository:
-https://github.com/douglask3/Bayesian_fire_models/tree/AR7_REF
+ Box plot, linear trends for the 46 IPCC AR6 reference regions for land
+(Iturbide et al., 2020). The diagnostic called in this recipe uses the
+seaborn.boxplot function. See seaborn manual for detailed information
+(https://seaborn.pydata.org/generated/seaborn.boxplot.html).
Authors
@@ -115,7 +115,7 @@ Maintainers
@@ -168,7 +168,23 @@ References
- Fire_Evaluation
+ Tas_Trends
+
+
+
+ Pr_Trends
+
+
+
+ Psl_Trends
+
+
+
+ Ua200_Trends
+
+
+
+ Hus200_Trends
@@ -177,13 +193,13 @@ References
-
Fire_Evaluation
-
Climate drivers for fire
+
Tas_Trends
+
-
Fire Evaluation: Fire Evaluation
+
Tas Trends: Plot
@@ -191,59 +207,135 @@
Fire Evaluation: Fire Evaluation
">
-
-
+
+
- Burnt area fraction for the ACCESS-ESM1-5 (CMIP6-historical) for the time period 2013/2014 as computed with the ConFire model (Jones et al., 2024).
+ Seaborn barplot for one or more dataset(s)
- download |
- references |
- extra data citation |
- provenance
+ download |
+ references |
+ extra data citation |
+ provenance
+
+Data files Show/Hide
+
+
+
+
+
+
+
+
+
+
+
Pr_Trends
+
+
+
+
+
+
Pr Trends: Plot
+
+
+
+
+
Data files Show/Hide
+
+
+
+
+
+
+
+
+
+
+
Psl_Trends
+
+
+
+
+
+
Psl Trends: Plot
+
+
+
@@ -251,19 +343,137 @@
Fire Evaluation: Fire Evaluation
-
Data files Show/Hide
+
Data files Show/Hide
-
+
+
+
+
+
Ua200_Trends
+
+
+
+
+
+
Ua200 Trends: Plot
+
+
+
+
+
+
+
+
+
Data files Show/Hide
+
+
+
+
+
+
+
+
+
+
+
Hus200_Trends
+
+
+
+
+
+
Hus200 Trends: Plot
+
+
+
+
+
+
+
+
+
Data files Show/Hide
+
+
- |
- download |
- references |
- extra data citation |
- provenance
+ Seaborn barplot for one or more dataset(s) |
+ download |
+ references |
+ extra data citation |
+ provenance
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/hus200_trends/plot/seaborn_barplot.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/hus200_trends/plot/seaborn_barplot.png
new file mode 100644
index 0000000..ca9c774
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/hus200_trends/plot/seaborn_barplot.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/pr_trends/plot/seaborn_barplot.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/pr_trends/plot/seaborn_barplot.png
new file mode 100644
index 0000000..beb134b
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/pr_trends/plot/seaborn_barplot.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/psl_trends/plot/seaborn_barplot.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/psl_trends/plot/seaborn_barplot.png
new file mode 100644
index 0000000..2e08fb5
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/psl_trends/plot/seaborn_barplot.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/tas_trends/plot/seaborn_barplot.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/tas_trends/plot/seaborn_barplot.png
new file mode 100644
index 0000000..b4fe295
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/tas_trends/plot/seaborn_barplot.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/ua200_trends/plot/seaborn_barplot.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/ua200_trends/plot/seaborn_barplot.png
new file mode 100644
index 0000000..52e526c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/plots/ua200_trends/plot/seaborn_barplot.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/output.json
new file mode 100644
index 0000000..bd411f8
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/output.json
@@ -0,0 +1,113 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140605/work/hus200_trends/plot/seaborn_barplot.nc": {
+ "filename": "executions/recipe_20260716_140605/work/hus200_trends/plot/seaborn_barplot.nc",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "hus200",
+ "statistic": "trend"
+ }
+ },
+ "executions/recipe_20260716_140605/work/pr_trends/plot/seaborn_barplot.nc": {
+ "filename": "executions/recipe_20260716_140605/work/pr_trends/plot/seaborn_barplot.nc",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "pr",
+ "statistic": "trend"
+ }
+ },
+ "executions/recipe_20260716_140605/work/psl_trends/plot/seaborn_barplot.nc": {
+ "filename": "executions/recipe_20260716_140605/work/psl_trends/plot/seaborn_barplot.nc",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "psl",
+ "statistic": "trend"
+ }
+ },
+ "executions/recipe_20260716_140605/work/tas_trends/plot/seaborn_barplot.nc": {
+ "filename": "executions/recipe_20260716_140605/work/tas_trends/plot/seaborn_barplot.nc",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "tas",
+ "statistic": "trend"
+ }
+ },
+ "executions/recipe_20260716_140605/work/ua200_trends/plot/seaborn_barplot.nc": {
+ "filename": "executions/recipe_20260716_140605/work/ua200_trends/plot/seaborn_barplot.nc",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "ua200",
+ "statistic": "trend"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140605/plots/hus200_trends/plot/seaborn_barplot.png": {
+ "filename": "executions/recipe_20260716_140605/plots/hus200_trends/plot/seaborn_barplot.png",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "hus200",
+ "statistic": "trend"
+ }
+ },
+ "executions/recipe_20260716_140605/plots/pr_trends/plot/seaborn_barplot.png": {
+ "filename": "executions/recipe_20260716_140605/plots/pr_trends/plot/seaborn_barplot.png",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "pr",
+ "statistic": "trend"
+ }
+ },
+ "executions/recipe_20260716_140605/plots/psl_trends/plot/seaborn_barplot.png": {
+ "filename": "executions/recipe_20260716_140605/plots/psl_trends/plot/seaborn_barplot.png",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "psl",
+ "statistic": "trend"
+ }
+ },
+ "executions/recipe_20260716_140605/plots/tas_trends/plot/seaborn_barplot.png": {
+ "filename": "executions/recipe_20260716_140605/plots/tas_trends/plot/seaborn_barplot.png",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "tas",
+ "statistic": "trend"
+ }
+ },
+ "executions/recipe_20260716_140605/plots/ua200_trends/plot/seaborn_barplot.png": {
+ "filename": "executions/recipe_20260716_140605/plots/ua200_trends/plot/seaborn_barplot.png",
+ "long_name": "Seaborn barplot for one or more dataset(s)",
+ "description": "",
+ "dimensions": {
+ "variable_id": "ua200",
+ "statistic": "trend"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/executions/recipe_20260716_140605/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/regional-historical-trend/gn_r1i1p1f1_ACCESS-ESM1-5_g26_v1_a18aa09b/13/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/diagnostic.json
deleted file mode 100644
index 30503d8..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/diagnostic.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": []
- },
- "RESULTS": {},
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png
deleted file mode 100644
index f7ead23..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png
deleted file mode 100644
index 8b5e293..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png
deleted file mode 100644
index 5eaaea5..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png
deleted file mode 100644
index a85a4a5..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc
deleted file mode 100644
index 95658c1..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc
deleted file mode 100644
index f1aad2d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc
deleted file mode 100644
index a49feed..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc
deleted file mode 100644
index c0c4497..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/series.json
deleted file mode 100644
index 6eed60c..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/series.json
+++ /dev/null
@@ -1,320 +0,0 @@
-[
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "region": "Northern Hemisphere",
- "statistic": "September sea ice area"
- },
- "values": [
- 9.969209968386869e+36,
- 0.04015940625817315,
- 9.969209968386869e+36,
- 0.04180759243756993,
- 0.04501442450728457,
- 9.969209968386869e+36,
- 9.969209968386869e+36,
- 0.04253469377602983,
- 0.04024108630964183,
- 9.969209968386869e+36,
- 0.04338435508650115,
- 9.969209968386869e+36,
- 9.969209968386869e+36,
- 0.0422797376383814,
- 0.0416691327274686,
- 9.969209968386869e+36,
- 0.04389612111460191,
- 0.04292504995323311,
- 0.044915520715736054,
- 0.041264947257306936,
- 0.03865808482934309,
- 0.04479943621188944,
- 0.04052965729921486,
- 0.04113452972718207,
- 0.037002053437909875,
- 0.03526087324999494,
- 0.03832877573198795,
- 0.03627206355364277,
- 0.03422124436443156,
- 0.037836888046041364,
- 0.03570905291731795,
- 0.029257894083475712,
- 0.03234965428088082,
- 0.02543836749158592,
- 0.03264939644200429,
- 0.03172448202788944,
- 0.025163579841318128,
- 0.03306220316951839,
- 0.02472175977275424,
- 0.029072035348770998,
- 0.020299757014290546,
- 0.03255876596111265,
- 0.030582242008714976,
- 0.02949630136008592
- ],
- "index": [
- "1979-09-15T12:00:00",
- "1979-09-16T00:00:00",
- "1980-09-15T12:00:00",
- "1980-09-16T00:00:00",
- "1981-09-16T00:00:00",
- "1981-09-16T12:00:00",
- "1982-09-15T12:00:00",
- "1982-09-16T00:00:00",
- "1983-09-16T00:00:00",
- "1983-09-16T12:00:00",
- "1984-09-16T00:00:00",
- "1984-09-16T12:00:00",
- "1985-09-15T12:00:00",
- "1985-09-16T00:00:00",
- "1986-09-16T00:00:00",
- "1986-09-16T12:00:00",
- "1987-09-16T00:00:00",
- "1988-09-16T00:00:00",
- "1989-09-16T00:00:00",
- "1990-09-16T00:00:00",
- "1991-09-16T00:00:00",
- "1992-09-16T00:00:00",
- "1993-09-16T00:00:00",
- "1994-09-16T00:00:00",
- "1995-09-16T00:00:00",
- "1996-09-16T00:00:00",
- "1997-09-16T00:00:00",
- "1998-09-16T00:00:00",
- "1999-09-16T00:00:00",
- "2000-09-16T00:00:00",
- "2001-09-16T00:00:00",
- "2002-09-16T00:00:00",
- "2003-09-16T00:00:00",
- "2004-09-16T00:00:00",
- "2005-09-16T00:00:00",
- "2006-09-16T00:00:00",
- "2007-09-16T00:00:00",
- "2008-09-16T00:00:00",
- "2009-09-16T00:00:00",
- "2010-09-16T00:00:00",
- "2011-09-16T00:00:00",
- "2012-09-16T00:00:00",
- "2013-09-16T00:00:00",
- "2014-09-16T00:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "caption": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
- "values_name": "siconc",
- "index_name": "time",
- "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
- "index_long_name": "time",
- "index_standard_name": "time",
- "value_units": "1e6 km2",
- "calendar": "standard"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "region": "Southern Hemisphere",
- "statistic": "February sea ice area"
- },
- "values": [
- 9.969209968386869e+36,
- 0.015981158979836034,
- 9.969209968386869e+36,
- 0.016207287751904963,
- 9.969209968386869e+36,
- 0.01468869988868252,
- 9.969209968386869e+36,
- 0.016931563451841637,
- 0.014326717573206464,
- 9.969209968386869e+36,
- 0.020097286861580483,
- 9.969209968386869e+36,
- 0.017573485010937133,
- 0.014928437374346888,
- 9.969209968386869e+36,
- 9.969209968386869e+36,
- 0.02334844970737923,
- 0.011826873756785195,
- 0.019666914774667546,
- 0.014879409410196026,
- 0.018816297883758246,
- 0.017297208038360937,
- 0.015785939372220625,
- 0.016836122839239815,
- 0.014827420415654099,
- 0.011375765495842344,
- 0.014977325522023625,
- 0.012489100513348277,
- 0.015019050753421423,
- 0.015771177042531767,
- 0.0181460087632701,
- 0.014617934959160596,
- 0.015717934780902613,
- 0.017214520733516783,
- 0.014202931695546072,
- 0.01765911689531614,
- 0.01769079322604561,
- 0.013224647524578399,
- 0.014720462911014752,
- 0.016275288309407887,
- 0.016894779392273553,
- 0.010699500286760524,
- 0.011963574024940601,
- 0.014130955078476807
- ],
- "index": [
- "1979-02-14T12:00:00",
- "1979-02-15T00:00:00",
- "1980-02-14T12:00:00",
- "1980-02-15T12:00:00",
- "1981-02-14T12:00:00",
- "1981-02-15T00:00:00",
- "1982-02-14T12:00:00",
- "1982-02-15T00:00:00",
- "1983-02-15T00:00:00",
- "1983-02-15T12:00:00",
- "1984-02-15T12:00:00",
- "1985-02-14T12:00:00",
- "1985-02-15T00:00:00",
- "1986-02-15T00:00:00",
- "1986-02-15T12:00:00",
- "1987-02-14T12:00:00",
- "1987-02-15T00:00:00",
- "1988-02-15T12:00:00",
- "1989-02-15T00:00:00",
- "1990-02-15T00:00:00",
- "1991-02-15T00:00:00",
- "1992-02-15T12:00:00",
- "1993-02-15T00:00:00",
- "1994-02-15T00:00:00",
- "1995-02-15T00:00:00",
- "1996-02-15T12:00:00",
- "1997-02-15T00:00:00",
- "1998-02-15T00:00:00",
- "1999-02-15T00:00:00",
- "2000-02-15T12:00:00",
- "2001-02-15T00:00:00",
- "2002-02-15T00:00:00",
- "2003-02-15T00:00:00",
- "2004-02-15T12:00:00",
- "2005-02-15T00:00:00",
- "2006-02-15T00:00:00",
- "2007-02-15T00:00:00",
- "2008-02-15T12:00:00",
- "2009-02-15T00:00:00",
- "2010-02-15T00:00:00",
- "2011-02-15T00:00:00",
- "2012-02-15T12:00:00",
- "2013-02-15T00:00:00",
- "2014-02-15T00:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "caption": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
- "values_name": "siconc",
- "index_name": "time",
- "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
- "index_long_name": "time",
- "index_standard_name": "time",
- "value_units": "1e6 km2",
- "calendar": "standard"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "region": "Northern Hemisphere",
- "statistic": "20-year average seasonal cycle of the sea ice area"
- },
- "values": [
- 0.09463192158409449,
- 0.10776419574214144,
- 0.11025533942766796,
- 0.10779347541058888,
- 0.09373823847814935,
- 0.07325715255736158,
- 0.051269890565546844,
- 0.03507009671486205,
- 0.03155036950518643,
- 0.04046943242246503,
- 0.05535769791950322,
- 0.07570655015282994
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month_number",
- "attributes": {
- "caption": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
- "values_name": "siconc",
- "index_name": "month_number",
- "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
- "index_long_name": "month_number",
- "value_units": "1e6 km2",
- "index_units": "1"
- }
- },
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "region": "Southern Hemisphere",
- "statistic": "20-year average seasonal cycle of the sea ice area,"
- },
- "values": [
- 0.027687808414139755,
- 0.014880914416201596,
- 0.015284665032370337,
- 0.024652827621377865,
- 0.046033047351644776,
- 0.07975795525200818,
- 0.10491087812179294,
- 0.11897866064657879,
- 0.12056140144760784,
- 0.11130102573471613,
- 0.091777900969933,
- 0.05869078169620705
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month_number",
- "attributes": {
- "caption": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
- "values_name": "siconc",
- "index_name": "month_number",
- "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
- "index_long_name": "month_number",
- "value_units": "1e6 km2",
- "index_units": "1"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/diagnostic.json
new file mode 100644
index 0000000..032b445
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/diagnostic.json
@@ -0,0 +1,9 @@
+{
+ "DIMENSIONS": {
+ "json_structure": []
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png
new file mode 100644
index 0000000..c9ae40c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png
new file mode 100644
index 0000000..a8f9641
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png
new file mode 100644
index 0000000..9ae79a4
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png
new file mode 100644
index 0000000..5e2545d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/output.json
similarity index 52%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/output.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/output.json
index 7314e0f..f7c89b4 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/output.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/output.json
@@ -1,66 +1,90 @@
{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/index.html",
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/index.html",
"provenance": {
"environment": {},
"modeldata": [],
"obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/run/main_log_debug.txt"
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/run/main_log_debug.txt"
},
"data": {
- "executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc": {
- "filename": "executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc",
+ "executions/recipe_20260716_140606/work/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc": {
+ "filename": "executions/recipe_20260716_140606/work/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc",
"long_name": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "region": "Northern Hemisphere",
+ "statistic": "September sea ice area"
+ }
},
- "executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc": {
- "filename": "executions/recipe_20251001_162137/work/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc",
+ "executions/recipe_20260716_140606/work/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc": {
+ "filename": "executions/recipe_20260716_140606/work/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc",
"long_name": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "region": "Southern Hemisphere",
+ "statistic": "February sea ice area"
+ }
},
- "executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc": {
- "filename": "executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc",
+ "executions/recipe_20260716_140606/work/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc": {
+ "filename": "executions/recipe_20260716_140606/work/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc",
"long_name": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "region": "Northern Hemisphere",
+ "statistic": "20-year average seasonal cycle of the sea ice area"
+ }
},
- "executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc": {
- "filename": "executions/recipe_20251001_162137/work/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc",
+ "executions/recipe_20260716_140606/work/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc": {
+ "filename": "executions/recipe_20260716_140606/work/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.nc",
"long_name": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "region": "Southern Hemisphere",
+ "statistic": "20-year average seasonal cycle of the sea ice area"
+ }
}
},
"plots": {
- "executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png": {
- "filename": "executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png",
+ "executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png": {
+ "filename": "executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_nh_sep_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png",
"long_name": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "region": "Northern Hemisphere",
+ "statistic": "September sea ice area"
+ }
},
- "executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png": {
- "filename": "executions/recipe_20251001_162137/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png",
+ "executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png": {
+ "filename": "executions/recipe_20260716_140606/plots/siarea_min/allplots/timeseries_sea_ice_area_sh_feb_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png",
"long_name": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "region": "Southern Hemisphere",
+ "statistic": "February sea ice area"
+ }
},
- "executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png": {
- "filename": "executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png",
+ "executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png": {
+ "filename": "executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_nh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png",
"long_name": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "region": "Northern Hemisphere",
+ "statistic": "20-year average seasonal cycle of the sea ice area"
+ }
},
- "executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png": {
- "filename": "executions/recipe_20251001_162137/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png",
+ "executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png": {
+ "filename": "executions/recipe_20260716_140606/plots/siarea_seas/allplots/annual_cycle_sea_ice_area_sh_ambiguous_dataset_ambiguous_mip_historical_r1i1p1f1.png",
"long_name": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
"description": "",
- "dimensions": null
+ "dimensions": {
+ "region": "Southern Hemisphere",
+ "statistic": "20-year average seasonal cycle of the sea ice area"
+ }
}
},
"html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-area-basic/154539eda582be529f5412f1258774eba7ac67ec/executions/recipe_20251001_162137/index.html",
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/executions/recipe_20260716_140606/index.html",
"long_name": "Results page",
"description": "Page showing the executions of the ESMValTool run.",
"dimensions": null
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/series.json
new file mode 100644
index 0000000..2379501
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-area-basic/gn_r1i1p1f1_ACCESS-ESM1-5_g29_v1_78696480/14/series.json
@@ -0,0 +1,646 @@
+[
+ {
+ "attributes": {
+ "caption": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
+ "index_long_name": "month_number",
+ "index_name": "month_number",
+ "index_units": "1",
+ "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
+ "value_units": "1e6 km2",
+ "values_name": "siconc"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "OSI-450-nh",
+ "region": "Northern Hemisphere",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "20-year average seasonal cycle of the sea ice area"
+ },
+ "index": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ],
+ "index_name": "month_number",
+ "kind": "reference",
+ "values": [
+ 12.795985221862793,
+ 13.636373519897461,
+ 13.764803886413574,
+ 13.017985343933105,
+ 11.514541625976562,
+ 9.260672569274902,
+ 6.740006923675537,
+ 4.814935684204102,
+ 4.575021743774414,
+ 6.662736415863037,
+ 9.274603843688965,
+ 11.322897911071777
+ ]
+ },
+ {
+ "attributes": {
+ "calendar": "standard",
+ "caption": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
+ "index_long_name": "time",
+ "index_name": "time",
+ "index_standard_name": "time",
+ "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
+ "value_units": "1e6 km2",
+ "values_name": "siconc"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "OSI-450-nh",
+ "region": "Northern Hemisphere",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "September sea ice area"
+ },
+ "index": [
+ "1979-09-15T12:00:00",
+ "1979-09-16T00:00:00",
+ "1980-09-15T12:00:00",
+ "1980-09-16T00:00:00",
+ "1981-09-16T00:00:00",
+ "1981-09-16T12:00:00",
+ "1982-09-15T12:00:00",
+ "1982-09-16T00:00:00",
+ "1983-09-16T00:00:00",
+ "1983-09-16T12:00:00",
+ "1984-09-16T00:00:00",
+ "1984-09-16T12:00:00",
+ "1985-09-15T12:00:00",
+ "1985-09-16T00:00:00",
+ "1986-09-16T00:00:00",
+ "1986-09-16T12:00:00",
+ "1987-09-16T00:00:00",
+ "1988-09-16T00:00:00",
+ "1989-09-16T00:00:00",
+ "1990-09-16T00:00:00",
+ "1991-09-16T00:00:00",
+ "1992-09-16T00:00:00",
+ "1993-09-16T00:00:00",
+ "1994-09-16T00:00:00",
+ "1995-09-16T00:00:00",
+ "1996-09-16T00:00:00",
+ "1997-09-16T00:00:00",
+ "1998-09-16T00:00:00",
+ "1999-09-16T00:00:00",
+ "2000-09-16T00:00:00",
+ "2001-09-16T00:00:00",
+ "2002-09-16T00:00:00",
+ "2003-09-16T00:00:00",
+ "2004-09-16T00:00:00",
+ "2005-09-16T00:00:00",
+ "2006-09-16T00:00:00",
+ "2007-09-16T00:00:00",
+ "2008-09-16T00:00:00",
+ "2009-09-16T00:00:00",
+ "2010-09-16T00:00:00",
+ "2011-09-16T00:00:00",
+ "2012-09-16T00:00:00",
+ "2013-09-16T00:00:00",
+ "2014-09-16T00:00:00"
+ ],
+ "index_name": "time",
+ "kind": "reference",
+ "values": [
+ 6.301602840423584,
+ null,
+ 6.632652282714844,
+ null,
+ null,
+ 6.083450794219971,
+ 5.873033046722412,
+ null,
+ null,
+ 6.341911792755127,
+ null,
+ 5.7826619148254395,
+ 5.928003311157227,
+ null,
+ null,
+ 6.50816535949707,
+ 6.423974514007568,
+ 6.157700061798096,
+ 5.589455604553223,
+ 5.174315452575684,
+ 5.287879467010498,
+ 6.179641246795654,
+ 5.308059215545654,
+ 6.043673992156982,
+ 5.10996675491333,
+ 6.221447944641113,
+ 5.471498966217041,
+ 5.145776271820068,
+ 4.924284934997559,
+ 5.123483180999756,
+ 5.380928039550781,
+ 4.690702438354492,
+ 4.941279411315918,
+ 5.014082431793213,
+ 4.5900092124938965,
+ 4.650059223175049,
+ 3.4083948135375977,
+ 3.759544849395752,
+ 4.275408744812012,
+ 3.7815566062927246,
+ 3.7362220287323,
+ 2.880955696105957,
+ 4.223511219024658,
+ 4.171321868896484
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
+ "index_long_name": "month_number",
+ "index_name": "month_number",
+ "index_units": "1",
+ "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
+ "value_units": "1e6 km2",
+ "values_name": "siconc"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "OSI-450-sh",
+ "region": "Southern Hemisphere",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "20-year average seasonal cycle of the sea ice area"
+ },
+ "index": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ],
+ "index_name": "month_number",
+ "kind": "reference",
+ "values": [
+ 3.64091420173645,
+ 2.2527871131896973,
+ 3.193793296813965,
+ 5.949848175048828,
+ 9.134632110595703,
+ 12.073555946350098,
+ 14.38237476348877,
+ 15.852147102355957,
+ 16.454038619995117,
+ 15.870501518249512,
+ 13.134278297424316,
+ 7.807084083557129
+ ]
+ },
+ {
+ "attributes": {
+ "calendar": "standard",
+ "caption": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
+ "index_long_name": "time",
+ "index_name": "time",
+ "index_standard_name": "time",
+ "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
+ "value_units": "1e6 km2",
+ "values_name": "siconc"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "reference_source_id": "OSI-450-sh",
+ "region": "Southern Hemisphere",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "February sea ice area"
+ },
+ "index": [
+ "1979-02-14T12:00:00",
+ "1979-02-15T00:00:00",
+ "1980-02-14T12:00:00",
+ "1980-02-15T12:00:00",
+ "1981-02-14T12:00:00",
+ "1981-02-15T00:00:00",
+ "1982-02-14T12:00:00",
+ "1982-02-15T00:00:00",
+ "1983-02-15T00:00:00",
+ "1983-02-15T12:00:00",
+ "1984-02-15T12:00:00",
+ "1985-02-14T12:00:00",
+ "1985-02-15T00:00:00",
+ "1986-02-15T00:00:00",
+ "1986-02-15T12:00:00",
+ "1987-02-14T12:00:00",
+ "1987-02-15T00:00:00",
+ "1988-02-15T12:00:00",
+ "1989-02-15T00:00:00",
+ "1990-02-15T00:00:00",
+ "1991-02-15T00:00:00",
+ "1992-02-15T12:00:00",
+ "1993-02-15T00:00:00",
+ "1994-02-15T00:00:00",
+ "1995-02-15T00:00:00",
+ "1996-02-15T12:00:00",
+ "1997-02-15T00:00:00",
+ "1998-02-15T00:00:00",
+ "1999-02-15T00:00:00",
+ "2000-02-15T12:00:00",
+ "2001-02-15T00:00:00",
+ "2002-02-15T00:00:00",
+ "2003-02-15T00:00:00",
+ "2004-02-15T12:00:00",
+ "2005-02-15T00:00:00",
+ "2006-02-15T00:00:00",
+ "2007-02-15T00:00:00",
+ "2008-02-15T12:00:00",
+ "2009-02-15T00:00:00",
+ "2010-02-15T00:00:00",
+ "2011-02-15T00:00:00",
+ "2012-02-15T12:00:00",
+ "2013-02-15T00:00:00",
+ "2014-02-15T00:00:00"
+ ],
+ "index_name": "time",
+ "kind": "reference",
+ "values": [
+ 2.269725799560547,
+ null,
+ 1.9988234043121338,
+ null,
+ 1.9127731323242188,
+ null,
+ 2.1265830993652344,
+ null,
+ null,
+ 2.0783212184906006,
+ 1.9361286163330078,
+ 1.9604421854019165,
+ null,
+ null,
+ 2.2473273277282715,
+ 2.1634819507598877,
+ null,
+ 2.029031753540039,
+ 2.1592719554901123,
+ 2.259216547012329,
+ 2.2034103870391846,
+ 2.0079421997070312,
+ 1.6461358070373535,
+ 2.38531231880188,
+ 2.463075637817383,
+ 1.9947131872177124,
+ 1.8090214729309082,
+ 2.0258524417877197,
+ 1.998500108718872,
+ 1.9555360078811646,
+ 2.6310572624206543,
+ 2.036390781402588,
+ 2.857728958129883,
+ 2.48177170753479,
+ 1.9959824085235596,
+ 1.838531494140625,
+ 2.0882346630096436,
+ 2.657419443130493,
+ 2.16349720954895,
+ 2.181950569152832,
+ 1.9322121143341064,
+ 2.508066177368164,
+ 2.714963674545288,
+ 2.721242666244507
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
+ "index_long_name": "month_number",
+ "index_name": "month_number",
+ "index_units": "1",
+ "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
+ "value_units": "1e6 km2",
+ "values_name": "siconc"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "region": "Northern Hemisphere",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "20-year average seasonal cycle of the sea ice area"
+ },
+ "index": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ],
+ "index_name": "month_number",
+ "values": [
+ 0.09463192158409449,
+ 0.10776419574214144,
+ 0.11025533942766796,
+ 0.10779347541058888,
+ 0.09373823847814935,
+ 0.07325715255736158,
+ 0.051269890565546844,
+ 0.03507009671486205,
+ 0.03155036950518643,
+ 0.04046943242246503,
+ 0.05535769791950322,
+ 0.07570655015282994
+ ]
+ },
+ {
+ "attributes": {
+ "calendar": "standard",
+ "caption": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
+ "index_long_name": "time",
+ "index_name": "time",
+ "index_standard_name": "time",
+ "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
+ "value_units": "1e6 km2",
+ "values_name": "siconc"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "region": "Northern Hemisphere",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "September sea ice area"
+ },
+ "index": [
+ "1979-09-15T12:00:00",
+ "1979-09-16T00:00:00",
+ "1980-09-15T12:00:00",
+ "1980-09-16T00:00:00",
+ "1981-09-16T00:00:00",
+ "1981-09-16T12:00:00",
+ "1982-09-15T12:00:00",
+ "1982-09-16T00:00:00",
+ "1983-09-16T00:00:00",
+ "1983-09-16T12:00:00",
+ "1984-09-16T00:00:00",
+ "1984-09-16T12:00:00",
+ "1985-09-15T12:00:00",
+ "1985-09-16T00:00:00",
+ "1986-09-16T00:00:00",
+ "1986-09-16T12:00:00",
+ "1987-09-16T00:00:00",
+ "1988-09-16T00:00:00",
+ "1989-09-16T00:00:00",
+ "1990-09-16T00:00:00",
+ "1991-09-16T00:00:00",
+ "1992-09-16T00:00:00",
+ "1993-09-16T00:00:00",
+ "1994-09-16T00:00:00",
+ "1995-09-16T00:00:00",
+ "1996-09-16T00:00:00",
+ "1997-09-16T00:00:00",
+ "1998-09-16T00:00:00",
+ "1999-09-16T00:00:00",
+ "2000-09-16T00:00:00",
+ "2001-09-16T00:00:00",
+ "2002-09-16T00:00:00",
+ "2003-09-16T00:00:00",
+ "2004-09-16T00:00:00",
+ "2005-09-16T00:00:00",
+ "2006-09-16T00:00:00",
+ "2007-09-16T00:00:00",
+ "2008-09-16T00:00:00",
+ "2009-09-16T00:00:00",
+ "2010-09-16T00:00:00",
+ "2011-09-16T00:00:00",
+ "2012-09-16T00:00:00",
+ "2013-09-16T00:00:00",
+ "2014-09-16T00:00:00"
+ ],
+ "index_name": "time",
+ "values": [
+ null,
+ 0.04015940625817315,
+ null,
+ 0.04180759243756993,
+ 0.04501442450728457,
+ null,
+ null,
+ 0.04253469377602983,
+ 0.04024108630964183,
+ null,
+ 0.04338435508650115,
+ null,
+ null,
+ 0.0422797376383814,
+ 0.0416691327274686,
+ null,
+ 0.04389612111460191,
+ 0.04292504995323311,
+ 0.044915520715736054,
+ 0.041264947257306936,
+ 0.03865808482934309,
+ 0.04479943621188944,
+ 0.04052965729921486,
+ 0.04113452972718207,
+ 0.037002053437909875,
+ 0.03526087324999494,
+ 0.03832877573198795,
+ 0.03627206355364277,
+ 0.03422124436443156,
+ 0.037836888046041364,
+ 0.03570905291731795,
+ 0.029257894083475712,
+ 0.03234965428088082,
+ 0.02543836749158592,
+ 0.03264939644200429,
+ 0.03172448202788944,
+ 0.025163579841318128,
+ 0.03306220316951839,
+ 0.02472175977275424,
+ 0.029072035348770998,
+ 0.020299757014290546,
+ 0.03255876596111265,
+ 0.030582242008714976,
+ 0.02949630136008592
+ ]
+ },
+ {
+ "attributes": {
+ "caption": "20-year average seasonal cycle of the sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
+ "index_long_name": "month_number",
+ "index_name": "month_number",
+ "index_units": "1",
+ "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
+ "value_units": "1e6 km2",
+ "values_name": "siconc"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "region": "Southern Hemisphere",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "20-year average seasonal cycle of the sea ice area"
+ },
+ "index": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ],
+ "index_name": "month_number",
+ "values": [
+ 0.027687808414139755,
+ 0.014880914416201596,
+ 0.015284665032370337,
+ 0.024652827621377865,
+ 0.046033047351644776,
+ 0.07975795525200818,
+ 0.10491087812179294,
+ 0.11897866064657879,
+ 0.12056140144760784,
+ 0.11130102573471613,
+ 0.091777900969933,
+ 0.05869078169620705
+ ]
+ },
+ {
+ "attributes": {
+ "calendar": "standard",
+ "caption": "Time series of NH September/SH February sea ice area in million km2 from ACCESS-ESM1-5.r1i1p1f1.gn compared with OSI-450.",
+ "index_long_name": "time",
+ "index_name": "time",
+ "index_standard_name": "time",
+ "value_long_name": "Sea-Ice Area Percentage (Ocean Grid)",
+ "value_units": "1e6 km2",
+ "values_name": "siconc"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "region": "Southern Hemisphere",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "February sea ice area"
+ },
+ "index": [
+ "1979-02-14T12:00:00",
+ "1979-02-15T00:00:00",
+ "1980-02-14T12:00:00",
+ "1980-02-15T12:00:00",
+ "1981-02-14T12:00:00",
+ "1981-02-15T00:00:00",
+ "1982-02-14T12:00:00",
+ "1982-02-15T00:00:00",
+ "1983-02-15T00:00:00",
+ "1983-02-15T12:00:00",
+ "1984-02-15T12:00:00",
+ "1985-02-14T12:00:00",
+ "1985-02-15T00:00:00",
+ "1986-02-15T00:00:00",
+ "1986-02-15T12:00:00",
+ "1987-02-14T12:00:00",
+ "1987-02-15T00:00:00",
+ "1988-02-15T12:00:00",
+ "1989-02-15T00:00:00",
+ "1990-02-15T00:00:00",
+ "1991-02-15T00:00:00",
+ "1992-02-15T12:00:00",
+ "1993-02-15T00:00:00",
+ "1994-02-15T00:00:00",
+ "1995-02-15T00:00:00",
+ "1996-02-15T12:00:00",
+ "1997-02-15T00:00:00",
+ "1998-02-15T00:00:00",
+ "1999-02-15T00:00:00",
+ "2000-02-15T12:00:00",
+ "2001-02-15T00:00:00",
+ "2002-02-15T00:00:00",
+ "2003-02-15T00:00:00",
+ "2004-02-15T12:00:00",
+ "2005-02-15T00:00:00",
+ "2006-02-15T00:00:00",
+ "2007-02-15T00:00:00",
+ "2008-02-15T12:00:00",
+ "2009-02-15T00:00:00",
+ "2010-02-15T00:00:00",
+ "2011-02-15T00:00:00",
+ "2012-02-15T12:00:00",
+ "2013-02-15T00:00:00",
+ "2014-02-15T00:00:00"
+ ],
+ "index_name": "time",
+ "values": [
+ null,
+ 0.015981158979836034,
+ null,
+ 0.016207287751904963,
+ null,
+ 0.01468869988868252,
+ null,
+ 0.016931563451841637,
+ 0.014326717573206464,
+ null,
+ 0.020097286861580483,
+ null,
+ 0.017573485010937133,
+ 0.014928437374346888,
+ null,
+ null,
+ 0.02334844970737923,
+ 0.011826873756785195,
+ 0.019666914774667546,
+ 0.014879409410196026,
+ 0.018816297883758246,
+ 0.017297208038360937,
+ 0.015785939372220625,
+ 0.016836122839239815,
+ 0.014827420415654099,
+ 0.011375765495842344,
+ 0.014977325522023625,
+ 0.012489100513348277,
+ 0.015019050753421423,
+ 0.015771177042531767,
+ 0.0181460087632701,
+ 0.014617934959160596,
+ 0.015717934780902613,
+ 0.017214520733516783,
+ 0.014202931695546072,
+ 0.01765911689531614,
+ 0.01769079322604561,
+ 0.013224647524578399,
+ 0.014720462911014752,
+ 0.016275288309407887,
+ 0.016894779392273553,
+ 0.010699500286760524,
+ 0.011963574024940601,
+ 0.014130955078476807
+ ]
+ }
+]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png
deleted file mode 100644
index 2ea48c5..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png
deleted file mode 100644
index 36d0f67..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png
deleted file mode 100644
index 83fb71c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png
deleted file mode 100644
index 045be39..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/output.json
deleted file mode 100644
index e1eab33..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/output.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162138/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv": {
- "filename": "executions/recipe_20251001_162138/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv",
- "long_name": "Annual (not decadal) figures",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162138/work/arctic/sea_ice_sensitivity_script/plotted_values.csv": {
- "filename": "executions/recipe_20251001_162138/work/arctic/sea_ice_sensitivity_script/plotted_values.csv",
- "long_name": "Annual (not decadal) figures",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png": {
- "filename": "executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png",
- "long_name": "Sensitivity of sea ice area to annual mean global warming.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png": {
- "filename": "executions/recipe_20251001_162138/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png",
- "long_name": "Decadal trends of sea ice area and global mean temperature.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png": {
- "filename": "executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png",
- "long_name": "Sensitivity of sea ice area to annual mean global warming.Mean (dashed), standard deviation (shaded) and plausible values from 1979-2014.",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png": {
- "filename": "executions/recipe_20251001_162138/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png",
- "long_name": "Decadal trends of sea ice area and global mean temperature.",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/diagnostic.json
similarity index 82%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/diagnostic.json
index 7c5d49f..a3659f3 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/diagnostic.json
@@ -1,84 +1,84 @@
{
"DIMENSIONS": {
+ "experiment_id": {
+ "historical": {}
+ },
"json_structure": [
"experiment_id",
"source_id",
"region",
"metric"
],
- "source_id": {
- "ACCESS-ESM1-5": {},
- "CanESM5": {},
- "HadGEM3-GC31-LL": {}
- },
- "region": {
- "antarctic": {},
- "arctic": {}
- },
"metric": {
- "direct_sensitivity_(notz-style)": {},
"annual_siconc_trend": {},
"annual_tas_trend": {},
+ "direct_p_val": {},
"direct_r_val": {},
- "direct_p_val": {}
+ "direct_sensitivity_(notz-style)": {}
},
- "experiment_id": {
- "historical": {}
+ "region": {
+ "antarctic": {},
+ "arctic": {}
+ },
+ "source_id": {
+ "ACCESS-ESM1-5": {},
+ "CanESM5": {},
+ "HadGEM3-GC31-LL": {}
}
},
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
"RESULTS": {
"historical": {
"ACCESS-ESM1-5": {
"antarctic": {
- "direct_sensitivity_(notz-style)": -0.0093089389765667,
"annual_siconc_trend": -0.0002971439814176,
"annual_tas_trend": 0.0325482853284367,
+ "direct_p_val": 1.6582163952524317e-07,
"direct_r_val": -0.747116470283511,
- "direct_p_val": 1.6582163952524357e-7
+ "direct_sensitivity_(notz-style)": -0.0093089389765667
},
"arctic": {
- "direct_sensitivity_(notz-style)": -0.0154132028358053,
"annual_siconc_trend": -0.0005345031872321,
"annual_tas_trend": 0.0325482853284367,
+ "direct_p_val": 3.1662085847651617e-12,
"direct_r_val": -0.8745553580707366,
- "direct_p_val": 3.1662085847651657e-12
+ "direct_sensitivity_(notz-style)": -0.0154132028358053
}
},
"CanESM5": {
"antarctic": {
- "direct_sensitivity_(notz-style)": -0.0012511191937113,
- "annual_siconc_trend": 7.261761385609422e-6,
+ "annual_siconc_trend": 7.261761385609422e-06,
"annual_tas_trend": 0.0327313947248029,
+ "direct_p_val": 0.6194724879437625,
"direct_r_val": -0.0856362852677212,
- "direct_p_val": 0.6194724879437625
+ "direct_sensitivity_(notz-style)": -0.0012511191937113
},
"arctic": {
- "direct_sensitivity_(notz-style)": -0.0195835210216465,
"annual_siconc_trend": -0.0007012069342604,
"annual_tas_trend": 0.0327313947248029,
+ "direct_p_val": 6.8797936993024045e-09,
"direct_r_val": -0.7952221159781833,
- "direct_p_val": 6.87979369930241e-9
+ "direct_sensitivity_(notz-style)": -0.0195835210216465
}
},
"HadGEM3-GC31-LL": {
"antarctic": {
- "direct_sensitivity_(notz-style)": -0.0240291003592504,
"annual_siconc_trend": -0.0010106442791242,
"annual_tas_trend": 0.038504358240076,
+ "direct_p_val": 8.345568766166341e-16,
"direct_r_val": -0.9245224453912408,
- "direct_p_val": 8.345568766166358e-16
+ "direct_sensitivity_(notz-style)": -0.0240291003592504
},
"arctic": {
- "direct_sensitivity_(notz-style)": -0.0182667687090698,
"annual_siconc_trend": -0.0007086997732451,
"annual_tas_trend": 0.038504358240076,
+ "direct_p_val": 3.456803123954115e-17,
"direct_r_val": -0.9377936932511496,
- "direct_p_val": 3.456803123954097e-17
+ "direct_sensitivity_(notz-style)": -0.0182667687090698
}
}
}
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
+ }
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/index.html
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/index.html
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png
new file mode 100644
index 0000000..6e6a199
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png
new file mode 100644
index 0000000..e4e35ec
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png
new file mode 100644
index 0000000..70074f2
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png
new file mode 100644
index 0000000..5826e5c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv
similarity index 73%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv
index ee70a60..2a424f2 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv
@@ -1,4 +1,4 @@
,label,direct_sensitivity_(notz-style),annual_siconc_trend,annual_tas_trend,direct_r_val,direct_p_val
-ACCESS-ESM1-5,unlabelled,-0.009308938976566736,-0.0002971439814176324,0.0325482853284367,-0.747116470283511,1.6582163952524357e-07
+ACCESS-ESM1-5,unlabelled,-0.009308938976566736,-0.0002971439814176324,0.0325482853284367,-0.747116470283511,1.6582163952524317e-07
CanESM5,unlabelled,-0.0012511191937113518,7.261761385609422e-06,0.03273139472480293,-0.08563628526772124,0.6194724879437625
-HadGEM3-GC31-LL,unlabelled,-0.0240291003592504,-0.0010106442791242645,0.03850435824007602,-0.9245224453912407,8.345568766166358e-16
+HadGEM3-GC31-LL,unlabelled,-0.0240291003592504,-0.0010106442791242645,0.03850435824007602,-0.9245224453912407,8.345568766166341e-16
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/work/arctic/sea_ice_sensitivity_script/plotted_values.csv b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/work/arctic/sea_ice_sensitivity_script/plotted_values.csv
similarity index 61%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/work/arctic/sea_ice_sensitivity_script/plotted_values.csv
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/work/arctic/sea_ice_sensitivity_script/plotted_values.csv
index da93295..6fb67e9 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/838f64e1c772691aef3fe7b18c6a81ec46699545/executions/recipe_20251001_162138/work/arctic/sea_ice_sensitivity_script/plotted_values.csv
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/work/arctic/sea_ice_sensitivity_script/plotted_values.csv
@@ -1,4 +1,4 @@
,label,direct_sensitivity_(notz-style),annual_siconc_trend,annual_tas_trend,direct_r_val,direct_p_val
-ACCESS-ESM1-5,unlabelled,-0.015413202835805372,-0.0005345031872321633,0.0325482853284367,-0.8745553580707366,3.1662085847651657e-12
-CanESM5,unlabelled,-0.01958352102164651,-0.0007012069342604543,0.03273139472480293,-0.7952221159781833,6.87979369930241e-09
-HadGEM3-GC31-LL,unlabelled,-0.01826676870906983,-0.0007086997732451398,0.03850435824007602,-0.9377936932511497,3.456803123954097e-17
+ACCESS-ESM1-5,unlabelled,-0.015413202835805372,-0.0005345031872321633,0.0325482853284367,-0.8745553580707366,3.1662085847651617e-12
+CanESM5,unlabelled,-0.01958352102164651,-0.0007012069342604543,0.03273139472480293,-0.7952221159781833,6.879793699302404e-09
+HadGEM3-GC31-LL,unlabelled,-0.01826676870906983,-0.0007086997732451398,0.03850435824007602,-0.9377936932511497,3.456803123954115e-17
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/output.json
new file mode 100644
index 0000000..e66ce80
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/output.json
@@ -0,0 +1,71 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140606/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv": {
+ "filename": "executions/recipe_20260716_140606/work/antarctic/sea_ice_sensitivity_script/plotted_values.csv",
+ "long_name": "Annual (not decadal) figures",
+ "description": "",
+ "dimensions": {
+ "region": "antarctic"
+ }
+ },
+ "executions/recipe_20260716_140606/work/arctic/sea_ice_sensitivity_script/plotted_values.csv": {
+ "filename": "executions/recipe_20260716_140606/work/arctic/sea_ice_sensitivity_script/plotted_values.csv",
+ "long_name": "Annual (not decadal) figures",
+ "description": "",
+ "dimensions": {
+ "region": "arctic"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png": {
+ "filename": "executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice sensitivity.png",
+ "long_name": "Sensitivity of sea ice area to annual mean global warming.",
+ "description": "",
+ "dimensions": {
+ "region": "antarctic"
+ }
+ },
+ "executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png": {
+ "filename": "executions/recipe_20260716_140606/plots/antarctic/sea_ice_sensitivity_script/png/Annual Antarctic sea ice trends.png",
+ "long_name": "Decadal trends of sea ice area and global mean temperature.",
+ "description": "",
+ "dimensions": {
+ "region": "antarctic"
+ }
+ },
+ "executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png": {
+ "filename": "executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice sensitivity.png",
+ "long_name": "Sensitivity of sea ice area to annual mean global warming.Mean (dashed), standard deviation (shaded) and plausible values from 1979-2014.",
+ "description": "",
+ "dimensions": {
+ "region": "arctic"
+ }
+ },
+ "executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png": {
+ "filename": "executions/recipe_20260716_140606/plots/arctic/sea_ice_sensitivity_script/png/September Arctic sea ice trends.png",
+ "long_name": "Decadal trends of sea ice area and global mean temperature.",
+ "description": "",
+ "dimensions": {
+ "region": "arctic"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/executions/recipe_20260716_140606/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/sea-ice-sensitivity/historical_g32_v1_7446f754/15/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/plots/tcre/calculate_tcre/tcre.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/plots/tcre/calculate_tcre/tcre.png
deleted file mode 100644
index 0ed4f0a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/plots/tcre/calculate_tcre/tcre.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/work/tcre/calculate_tcre/tcre.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/work/tcre/calculate_tcre/tcre.nc
deleted file mode 100644
index 290ed3b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/work/tcre/calculate_tcre/tcre.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/output.json
deleted file mode 100644
index a64c185..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/output.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162137/work/tcre/calculate_tcre/tcre.nc": {
- "filename": "executions/recipe_20251001_162137/work/tcre/calculate_tcre/tcre.nc",
- "long_name": "Transient Climate Response to Cumulative CO2 Emissions (TCRE) for multiple datasets.",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162137/plots/tcre/calculate_tcre/tcre.png": {
- "filename": "executions/recipe_20251001_162137/plots/tcre/calculate_tcre/tcre.png",
- "long_name": "Global annual mean near-surface air temperature anomaly ΔT vs.\nglobal annual cumulative CO2 emissions E of the emission-driven 1%\nCO2 increase per year experiment for model MPI-ESM1-2-LR (ensemble\nmember r1i1p1f1). The transient climate response to cumulative CO2\nEmissions (TCRE) is defined as the 20-year average ΔT centered at\nthe time where cumulative CO2 emissions E reach 1000 PgC.\n",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/diagnostic.json
similarity index 90%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/diagnostic.json
index 3498d65..65e3e4b 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/diagnostic.json
@@ -1,5 +1,8 @@
{
"DIMENSIONS": {
+ "grid_label": {
+ "gn": {}
+ },
"json_structure": [
"grid_label",
"member_id",
@@ -7,34 +10,31 @@
"region",
"metric"
],
- "region": {
- "global": {}
+ "member_id": {
+ "r1i1p1f1": {}
},
"metric": {
"tcre": {}
},
- "grid_label": {
- "gn": {}
- },
- "member_id": {
- "r1i1p1f1": {}
+ "region": {
+ "global": {}
},
"source_id": {
"MPI-ESM1-2-LR": {}
}
},
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
"RESULTS": {
"gn": {
"r1i1p1f1": {
"MPI-ESM1-2-LR": {
"global": {
- "tcre": 46.568565368652344
+ "tcre": 46.56883239746094
}
}
}
}
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
+ }
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/index.html
similarity index 84%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/index.html
index 7c2a10b..c590861 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/91c9474166906cc0d12cfe51ff506186fc4ef1c3/executions/recipe_20251001_162137/index.html
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/index.html
@@ -211,7 +211,7 @@ Tcre
- Tcre: Calculate Tcre
+ Tcre: Calculate
@@ -233,29 +233,17 @@ Tcre: Calculate Tcre
">
-
-
+
+
- Global annual mean near-surface air temperature anomaly ΔT vs.
-global annual cumulative CO2 emissions E of the emission-driven 1%
-CO2 increase per year experiment for model MPI-ESM1-2-LR (ensemble
-member r1i1p1f1). The transient climate response to cumulative CO2
-Emissions (TCRE) is defined as the 20-year average ΔT centered at
-the time where cumulative CO2 emissions E reach 1000 PgC.
-
+ Global annual mean near-surface air temperature anomaly ΔT vs. global annual cumulative CO2 emissions E of the emission-driven 1% CO2 increase per year experiment. The transient climate response to cumulative CO2 Emissions (TCRE) is defined as the 20-year average ΔT centered at the time where cumulative CO2 emissions E reach 1000 PgC (i.e., after 55 years).
- download |
- references |
- extra data citation |
- provenance
+ download |
+ references |
+ extra data citation |
+ provenance
@@ -271,17 +259,21 @@
Data files
- Global annual mean near-surface air temperature anomaly ΔT vs.
-global annual cumulative CO2 emissions E of the emission-driven 1%
-CO2 increase per year experiment for model MPI-ESM1-2-LR (ensemble
-member r1i1p1f1). The transient climate response to cumulative CO2
-Emissions (TCRE) is defined as the 20-year average ΔT centered at
-the time where cumulative CO2 emissions E reach 1000 PgC.
- |
- download |
- references |
- extra data citation |
- provenance
+ Global annual mean near-surface air temperature anomaly ΔT vs. global annual cumulative CO2 emissions E of the emission-driven 1% CO2 increase per year experiment. The transient climate response to cumulative CO2 Emissions (TCRE) is defined as the 20-year average ΔT centered at the time where cumulative CO2 emissions E reach 1000 PgC (i.e., after 55 years). |
+ download |
+ references |
+ extra data citation |
+ provenance
+
+
+
+
+
+ Transient Climate Response to Cumulative CO2 Emissions (TCRE) for multiple datasets. |
+ download |
+ references |
+ extra data citation |
+ provenance
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/plots/tcre/calculate/tcre.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/plots/tcre/calculate/tcre.png
new file mode 100644
index 0000000..702955f
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/plots/tcre/calculate/tcre.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/output.json
new file mode 100644
index 0000000..16768dc
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/output.json
@@ -0,0 +1,47 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140606/work/tcre/calculate/MPI-ESM1-2-LR.nc": {
+ "filename": "executions/recipe_20260716_140606/work/tcre/calculate/MPI-ESM1-2-LR.nc",
+ "long_name": "Global annual mean near-surface air temperature anomaly ΔT vs. global annual cumulative CO2 emissions E of the emission-driven 1% CO2 increase per year experiment. The transient climate response to cumulative CO2 Emissions (TCRE) is defined as the 20-year average ΔT centered at the time where cumulative CO2 emissions E reach 1000 PgC (i.e., after 55 years).",
+ "description": "",
+ "dimensions": {
+ "statistic": "global annual mean anomaly of tas vs cumulative fco2antt"
+ }
+ },
+ "executions/recipe_20260716_140606/work/tcre/calculate/tcre.nc": {
+ "filename": "executions/recipe_20260716_140606/work/tcre/calculate/tcre.nc",
+ "long_name": "Transient Climate Response to Cumulative CO2 Emissions (TCRE) for multiple datasets.",
+ "description": "",
+ "dimensions": {
+ "metric": "tcre"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140606/plots/tcre/calculate/tcre.png": {
+ "filename": "executions/recipe_20260716_140606/plots/tcre/calculate/tcre.png",
+ "long_name": "Global annual mean near-surface air temperature anomaly ΔT vs. global annual cumulative CO2 emissions E of the emission-driven 1% CO2 increase per year experiment. The transient climate response to cumulative CO2 Emissions (TCRE) is defined as the 20-year average ΔT centered at the time where cumulative CO2 emissions E reach 1000 PgC (i.e., after 55 years).",
+ "description": "",
+ "dimensions": {
+ "statistic": "tcre"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/executions/recipe_20260716_140606/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/series.json
new file mode 100644
index 0000000..322a4ea
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response-emissions/gn_r1i1p1f1_MPI-ESM1-2-LR_g34_v1_e1d2d84e/17/series.json
@@ -0,0 +1,155 @@
+[
+ {
+ "attributes": {
+ "caption": "Global annual mean near-surface air temperature anomaly \u0394T vs. global annual cumulative CO2 emissions E of the emission-driven 1% CO2 increase per year experiment. The transient climate response to cumulative CO2 Emissions (TCRE) is defined as the 20-year average \u0394T centered at the time where cumulative CO2 emissions E reach 1000 PgC (i.e., after 55 years).",
+ "index_long_name": "Cumulative Carbon Mass Flux into Atmosphere Due to All Anthropogenic Emissions of CO2 [kgC m-2 s-1]",
+ "index_name": "cumulative_fco2antt",
+ "index_units": "Pg",
+ "value_long_name": "Near-Surface Air Temperature Anomaly",
+ "value_standard_name": "air_temperature",
+ "value_units": "K",
+ "values_name": "tas"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "MPI-ESM1-2-LR",
+ "statistic": "global annual mean anomaly of tas vs cumulative fco2antt"
+ },
+ "index": [
+ 0.035874128341674805,
+ 0.06845869868993759,
+ 0.3363379240036011,
+ 0.5194162130355835,
+ 0.736731767654419,
+ 1.0707356929779053,
+ 1.4131224155426025,
+ 1.7956889867782593,
+ 2.237955093383789,
+ 2.6762492656707764,
+ 3.079704523086548,
+ 3.4179670810699463,
+ 3.800870180130005,
+ 4.213480472564697,
+ 4.600919723510742,
+ 5.031399726867676,
+ 5.4839019775390625,
+ 5.953713893890381,
+ 6.486113548278809,
+ 6.952219009399414,
+ 7.325130462646484,
+ 7.793193817138672,
+ 8.355582237243652,
+ 8.876544952392578,
+ 9.431882858276367,
+ 9.946220397949219,
+ 10.444835662841797,
+ 11.022703170776367,
+ 11.589228630065918,
+ 12.211175918579102,
+ 12.849420547485352,
+ 13.409064292907715,
+ 13.955361366271973,
+ 14.522868156433105,
+ 15.083121299743652,
+ 15.793733596801758,
+ 16.41191864013672,
+ 17.035680770874023,
+ 17.574068069458008,
+ 18.200410842895508,
+ 18.91688346862793,
+ 19.487565994262695,
+ 20.141185760498047,
+ 20.868572235107422,
+ 21.559904098510742,
+ 22.252872467041016,
+ 23.006250381469727,
+ 23.641536712646484,
+ 24.354612350463867,
+ 25.064109802246094,
+ 25.734310150146484,
+ 26.308197021484375,
+ 26.928180694580078,
+ 27.673290252685547,
+ 28.419641494750977,
+ 29.200313568115234,
+ 29.939651489257812,
+ 30.64359474182129,
+ 31.363466262817383,
+ 32.10993576049805,
+ 32.84352111816406,
+ 33.54419708251953,
+ 34.257476806640625,
+ 35.01445770263672,
+ 35.811588287353516
+ ],
+ "index_name": "cumulative_fco2antt",
+ "values": [
+ -0.155548095703125,
+ -0.12506103515625,
+ -0.008087158203125,
+ 0.017242431640625,
+ -0.164794921875,
+ -0.163116455078125,
+ -0.051025390625,
+ 0.14703369140625,
+ 0.181488037109375,
+ 0.040130615234375,
+ -0.01336669921875,
+ 0.039398193359375,
+ 0.151519775390625,
+ 0.3336181640625,
+ 0.364654541015625,
+ 0.16448974609375,
+ 0.167724609375,
+ 0.312103271484375,
+ 0.24853515625,
+ 0.51531982421875,
+ 0.432403564453125,
+ 0.350555419921875,
+ 0.387786865234375,
+ 0.3206787109375,
+ 0.2847900390625,
+ 0.36041259765625,
+ 0.36572265625,
+ 0.52972412109375,
+ 0.48944091796875,
+ 0.51873779296875,
+ 0.611297607421875,
+ 0.657745361328125,
+ 0.692413330078125,
+ 0.671722412109375,
+ 0.596221923828125,
+ 0.710052490234375,
+ 0.8734130859375,
+ 0.828033447265625,
+ 0.7281494140625,
+ 0.763519287109375,
+ 0.90234375,
+ 0.79351806640625,
+ 0.731109619140625,
+ 0.77642822265625,
+ 1.0303955078125,
+ 1.162261962890625,
+ 1.173553466796875,
+ 1.033660888671875,
+ 1.044769287109375,
+ 1.1485595703125,
+ 1.027099609375,
+ 1.10791015625,
+ 1.283111572265625,
+ 1.3087158203125,
+ 1.275360107421875,
+ 1.430572509765625,
+ 1.432220458984375,
+ 1.3070068359375,
+ 1.360076904296875,
+ 1.469970703125,
+ 1.48974609375,
+ 1.656646728515625,
+ 1.53289794921875,
+ 1.55810546875,
+ 1.667144775390625
+ ]
+ }
+]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/plots/tcr/calculate/ACCESS-ESM1-5.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/plots/tcr/calculate/ACCESS-ESM1-5.png
deleted file mode 100644
index b06ee5e..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/plots/tcr/calculate/ACCESS-ESM1-5.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/work/tcr/calculate/ACCESS-ESM1-5.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/work/tcr/calculate/ACCESS-ESM1-5.nc
deleted file mode 100644
index bbd5969..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/work/tcr/calculate/ACCESS-ESM1-5.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/work/tcr/calculate/tcr.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/work/tcr/calculate/tcr.nc
deleted file mode 100644
index 575abaf..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/work/tcr/calculate/tcr.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/output.json
deleted file mode 100644
index a3c71a3..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/output.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162137/work/tcr/calculate/ACCESS-ESM1-5.nc": {
- "filename": "executions/recipe_20251001_162137/work/tcr/calculate/ACCESS-ESM1-5.nc",
- "long_name": "Time series of the global annual mean near-surface air temperature anomaly ΔT of the 1% CO2 increase per year experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The horizontal dashed line indicates the transient climate response (TCR) defined as the 20-year average ΔT centered at the time of CO2 doubling (vertical dashed lines).",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162137/work/tcr/calculate/tcr.nc": {
- "filename": "executions/recipe_20251001_162137/work/tcr/calculate/tcr.nc",
- "long_name": "Transient Climate Response (TCR) for multiple climate models.",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162137/plots/tcr/calculate/ACCESS-ESM1-5.png": {
- "filename": "executions/recipe_20251001_162137/plots/tcr/calculate/ACCESS-ESM1-5.png",
- "long_name": "Time series of the global annual mean near-surface air temperature anomaly ΔT of the 1% CO2 increase per year experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The horizontal dashed line indicates the transient climate response (TCR) defined as the 20-year average ΔT centered at the time of CO2 doubling (vertical dashed lines).",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/series.json
deleted file mode 100644
index 0672d3f..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/series.json
+++ /dev/null
@@ -1,185 +0,0 @@
-[
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "global annual mean tas anomaly relative to linear fit of piControl run"
- },
- "values": [
- -0.2524285964023534,
- -0.06867851380127377,
- -0.07879643250225854,
- -0.2929752235990577,
- -0.11772937276879247,
- -0.10666809225102725,
- -0.11058077006663325,
- 0.14126420185738198,
- 0.22518111388558282,
- 0.11038790221584804,
- 0.17640116841067766,
- 0.10471912210556411,
- 0.3402270172066437,
- 0.24815922871397333,
- 0.22632256001298856,
- 0.46258322204124624,
- 0.4584264036006971,
- 0.4960990122434623,
- 0.4265735414591063,
- 0.38878635192480715,
- 0.4160219488488224,
- 0.5019733660853376,
- 0.41019040832185283,
- 0.6012850547250537,
- 0.5805266737844477,
- 0.6302842433647129,
- 0.6800621579970993,
- 0.7568989919002433,
- 0.7362423362201298,
- 0.607533108925395,
- 0.6510040574119671,
- 0.7641974993880467,
- 0.8297224843328763,
- 0.7672567466215128,
- 0.808286288858028,
- 0.868826736042422,
- 0.8952078407789372,
- 1.0119820119217025,
- 1.0479456361894677,
- 0.9454815260822329,
- 0.9285073248291837,
- 1.046135988159449,
- 1.0814282257084642,
- 1.1372893109137294,
- 1.251032069296059,
- 1.2413820867930099,
- 1.3158182045503963,
- 1.2811844980890328,
- 1.1871839296484268,
- 1.1183705356870632,
- 1.1378546677673285,
- 1.208872816774658,
- 1.2814575347924233,
- 1.3146135418726885,
- 1.2405104343696394,
- 1.3358409206165334,
- 1.5384101763947342,
- 1.485242127485435,
- 1.566534527794829,
- 1.6237790765417799,
- 1.6580540614866095,
- 1.7546255959106816,
- 1.691976752730568,
- 1.7145329876753976,
- 1.7526124973598485,
- 1.8829771632942425,
- 2.0034134438120077,
- 1.8903088714652085,
- 1.6302316428684094,
- 1.8760748244278034,
- 1.9126081101539398,
- 2.120080523484205,
- 2.0388769928040347,
- 2.0511182863426143,
- 2.1455535902978795,
- 2.221271446336516,
- 2.1395796344064024,
- 2.3193420867991676,
- 2.401204148566933,
- 2.246493944709698
- ],
- "index": [
- "0101-07-02T12:00:00",
- "0102-07-02T12:00:00",
- "0103-07-02T12:00:00",
- "0104-07-02T00:00:00",
- "0105-07-02T12:00:00",
- "0106-07-02T12:00:00",
- "0107-07-02T12:00:00",
- "0108-07-02T00:00:00",
- "0109-07-02T12:00:00",
- "0110-07-02T12:00:00",
- "0111-07-02T12:00:00",
- "0112-07-02T00:00:00",
- "0113-07-02T12:00:00",
- "0114-07-02T12:00:00",
- "0115-07-02T12:00:00",
- "0116-07-02T00:00:00",
- "0117-07-02T12:00:00",
- "0118-07-02T12:00:00",
- "0119-07-02T12:00:00",
- "0120-07-02T00:00:00",
- "0121-07-02T12:00:00",
- "0122-07-02T12:00:00",
- "0123-07-02T12:00:00",
- "0124-07-02T00:00:00",
- "0125-07-02T12:00:00",
- "0126-07-02T12:00:00",
- "0127-07-02T12:00:00",
- "0128-07-02T00:00:00",
- "0129-07-02T12:00:00",
- "0130-07-02T12:00:00",
- "0131-07-02T12:00:00",
- "0132-07-02T00:00:00",
- "0133-07-02T12:00:00",
- "0134-07-02T12:00:00",
- "0135-07-02T12:00:00",
- "0136-07-02T00:00:00",
- "0137-07-02T12:00:00",
- "0138-07-02T12:00:00",
- "0139-07-02T12:00:00",
- "0140-07-02T00:00:00",
- "0141-07-02T12:00:00",
- "0142-07-02T12:00:00",
- "0143-07-02T12:00:00",
- "0144-07-02T00:00:00",
- "0145-07-02T12:00:00",
- "0146-07-02T12:00:00",
- "0147-07-02T12:00:00",
- "0148-07-02T00:00:00",
- "0149-07-02T12:00:00",
- "0150-07-02T12:00:00",
- "0151-07-02T12:00:00",
- "0152-07-02T00:00:00",
- "0153-07-02T12:00:00",
- "0154-07-02T12:00:00",
- "0155-07-02T12:00:00",
- "0156-07-02T00:00:00",
- "0157-07-02T12:00:00",
- "0158-07-02T12:00:00",
- "0159-07-02T12:00:00",
- "0160-07-02T00:00:00",
- "0161-07-02T12:00:00",
- "0162-07-02T12:00:00",
- "0163-07-02T12:00:00",
- "0164-07-02T00:00:00",
- "0165-07-02T12:00:00",
- "0166-07-02T12:00:00",
- "0167-07-02T12:00:00",
- "0168-07-02T00:00:00",
- "0169-07-02T12:00:00",
- "0170-07-02T12:00:00",
- "0171-07-02T12:00:00",
- "0172-07-02T00:00:00",
- "0173-07-02T12:00:00",
- "0174-07-02T12:00:00",
- "0175-07-02T12:00:00",
- "0176-07-02T00:00:00",
- "0177-07-02T12:00:00",
- "0178-07-02T12:00:00",
- "0179-07-02T12:00:00",
- "0180-07-02T00:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "caption": "Time series of the global annual mean near-surface air temperature anomaly \u0394T of the 1% CO2 increase per year experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The horizontal dashed line indicates the transient climate response (TCR) defined as the 20-year average \u0394T centered at the time of CO2 doubling (vertical dashed lines).",
- "values_name": "tas_anomaly",
- "index_name": "time",
- "value_long_name": "Near-Surface Air Temperature (Anomaly)",
- "index_long_name": "time",
- "index_standard_name": "time",
- "value_units": "K",
- "calendar": "proleptic_gregorian"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/diagnostic.json
similarity index 90%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/diagnostic.json
index 029a745..f6d68cf 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/diagnostic.json
@@ -1,5 +1,8 @@
{
"DIMENSIONS": {
+ "grid_label": {
+ "gn": {}
+ },
"json_structure": [
"grid_label",
"member_id",
@@ -7,34 +10,31 @@
"region",
"metric"
],
- "region": {
- "global": {}
+ "member_id": {
+ "r1i1p1f1": {}
},
"metric": {
"tcr": {}
},
- "grid_label": {
- "gn": {}
- },
- "member_id": {
- "r1i1p1f1": {}
+ "region": {
+ "global": {}
},
"source_id": {
"ACCESS-ESM1-5": {}
}
},
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
"RESULTS": {
"gn": {
"r1i1p1f1": {
"ACCESS-ESM1-5": {
"global": {
- "tcr": 1.9725468302466083
+ "tcr": 1.948978066444397
}
}
}
}
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
+ }
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/index.html
similarity index 99%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/index.html
index e527907..1bc511b 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/0ae730d7525bbc60927f0abf9467d5c2ac149c5b/executions/recipe_20251001_162137/index.html
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/index.html
@@ -119,8 +119,6 @@ Projects
- EU H2020 project CRESCENDO
-
References
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/plots/tcr/calculate/ACCESS-ESM1-5.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/plots/tcr/calculate/ACCESS-ESM1-5.png
new file mode 100644
index 0000000..3e5f246
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/plots/tcr/calculate/ACCESS-ESM1-5.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/output.json
new file mode 100644
index 0000000..dd6c1bb
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/output.json
@@ -0,0 +1,47 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140606/work/tcr/calculate/ACCESS-ESM1-5.nc": {
+ "filename": "executions/recipe_20260716_140606/work/tcr/calculate/ACCESS-ESM1-5.nc",
+ "long_name": "Time series of the global annual mean near-surface air temperature anomaly ΔT of the 1% CO2 increase per year experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The horizontal dashed line indicates the transient climate response (TCR) defined as the 20-year average ΔT centered at the time of CO2 doubling (vertical dashed lines).",
+ "description": "",
+ "dimensions": {
+ "statistic": "global annual mean tas anomaly relative to linear fit of piControl run"
+ }
+ },
+ "executions/recipe_20260716_140606/work/tcr/calculate/tcr.nc": {
+ "filename": "executions/recipe_20260716_140606/work/tcr/calculate/tcr.nc",
+ "long_name": "Transient Climate Response (TCR) for multiple climate models.",
+ "description": "",
+ "dimensions": {
+ "metric": "tcr"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140606/plots/tcr/calculate/ACCESS-ESM1-5.png": {
+ "filename": "executions/recipe_20260716_140606/plots/tcr/calculate/ACCESS-ESM1-5.png",
+ "long_name": "Time series of the global annual mean near-surface air temperature anomaly ΔT of the 1% CO2 increase per year experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The horizontal dashed line indicates the transient climate response (TCR) defined as the 20-year average ΔT centered at the time of CO2 doubling (vertical dashed lines).",
+ "description": "",
+ "dimensions": {
+ "statistic": "global annual mean tas anomaly relative to linear fit of piControl run"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/executions/recipe_20260716_140606/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/series.json
new file mode 100644
index 0000000..f41a1f7
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/transient-climate-response/gn_r1i1p1f1_ACCESS-ESM1-5_g33_v1_f02b4b67/16/series.json
@@ -0,0 +1,305 @@
+[
+ {
+ "attributes": {
+ "calendar": "proleptic_gregorian",
+ "caption": "Time series of the global annual mean near-surface air temperature anomaly \u0394T of the 1% CO2 increase per year experiment for model ACCESS-ESM1-5 (ensemble member r1i1p1f1). Anomalies are calculated relative to a pre-industrial control simulation of the same model. The horizontal dashed line indicates the transient climate response (TCR) defined as the 20-year average \u0394T centered at the time of CO2 doubling (vertical dashed lines).",
+ "index_long_name": "time",
+ "index_name": "time",
+ "index_standard_name": "time",
+ "value_long_name": "Near-Surface Air Temperature (Anomaly)",
+ "value_units": "K",
+ "values_name": "tas_anomaly"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "global annual mean tas anomaly relative to linear fit of piControl run"
+ },
+ "index": [
+ "0101-07-02T12:00:00",
+ "0102-07-02T12:00:00",
+ "0103-07-02T12:00:00",
+ "0104-07-02T00:00:00",
+ "0105-07-02T12:00:00",
+ "0106-07-02T12:00:00",
+ "0107-07-02T12:00:00",
+ "0108-07-02T00:00:00",
+ "0109-07-02T12:00:00",
+ "0110-07-02T12:00:00",
+ "0111-07-02T12:00:00",
+ "0112-07-02T00:00:00",
+ "0113-07-02T12:00:00",
+ "0114-07-02T12:00:00",
+ "0115-07-02T12:00:00",
+ "0116-07-02T00:00:00",
+ "0117-07-02T12:00:00",
+ "0118-07-02T12:00:00",
+ "0119-07-02T12:00:00",
+ "0120-07-02T00:00:00",
+ "0121-07-02T12:00:00",
+ "0122-07-02T12:00:00",
+ "0123-07-02T12:00:00",
+ "0124-07-02T00:00:00",
+ "0125-07-02T12:00:00",
+ "0126-07-02T12:00:00",
+ "0127-07-02T12:00:00",
+ "0128-07-02T00:00:00",
+ "0129-07-02T12:00:00",
+ "0130-07-02T12:00:00",
+ "0131-07-02T12:00:00",
+ "0132-07-02T00:00:00",
+ "0133-07-02T12:00:00",
+ "0134-07-02T12:00:00",
+ "0135-07-02T12:00:00",
+ "0136-07-02T00:00:00",
+ "0137-07-02T12:00:00",
+ "0138-07-02T12:00:00",
+ "0139-07-02T12:00:00",
+ "0140-07-02T00:00:00",
+ "0141-07-02T12:00:00",
+ "0142-07-02T12:00:00",
+ "0143-07-02T12:00:00",
+ "0144-07-02T00:00:00",
+ "0145-07-02T12:00:00",
+ "0146-07-02T12:00:00",
+ "0147-07-02T12:00:00",
+ "0148-07-02T00:00:00",
+ "0149-07-02T12:00:00",
+ "0150-07-02T12:00:00",
+ "0151-07-02T12:00:00",
+ "0152-07-02T00:00:00",
+ "0153-07-02T12:00:00",
+ "0154-07-02T12:00:00",
+ "0155-07-02T12:00:00",
+ "0156-07-02T00:00:00",
+ "0157-07-02T12:00:00",
+ "0158-07-02T12:00:00",
+ "0159-07-02T12:00:00",
+ "0160-07-02T00:00:00",
+ "0161-07-02T12:00:00",
+ "0162-07-02T12:00:00",
+ "0163-07-02T12:00:00",
+ "0164-07-02T00:00:00",
+ "0165-07-02T12:00:00",
+ "0166-07-02T12:00:00",
+ "0167-07-02T12:00:00",
+ "0168-07-02T00:00:00",
+ "0169-07-02T12:00:00",
+ "0170-07-02T12:00:00",
+ "0171-07-02T12:00:00",
+ "0172-07-02T00:00:00",
+ "0173-07-02T12:00:00",
+ "0174-07-02T12:00:00",
+ "0175-07-02T12:00:00",
+ "0176-07-02T00:00:00",
+ "0177-07-02T12:00:00",
+ "0178-07-02T12:00:00",
+ "0179-07-02T12:00:00",
+ "0180-07-02T00:00:00",
+ "0181-07-02T12:00:00",
+ "0182-07-02T12:00:00",
+ "0183-07-02T12:00:00",
+ "0184-07-02T00:00:00",
+ "0185-07-02T12:00:00",
+ "0186-07-02T12:00:00",
+ "0187-07-02T12:00:00",
+ "0188-07-02T00:00:00",
+ "0189-07-02T12:00:00",
+ "0190-07-02T12:00:00",
+ "0191-07-02T12:00:00",
+ "0192-07-02T00:00:00",
+ "0193-07-02T12:00:00",
+ "0194-07-02T12:00:00",
+ "0195-07-02T12:00:00",
+ "0196-07-02T00:00:00",
+ "0197-07-02T12:00:00",
+ "0198-07-02T12:00:00",
+ "0199-07-02T12:00:00",
+ "0200-07-02T12:00:00",
+ "0201-07-02T12:00:00",
+ "0202-07-02T12:00:00",
+ "0203-07-02T12:00:00",
+ "0204-07-02T00:00:00",
+ "0205-07-02T12:00:00",
+ "0206-07-02T12:00:00",
+ "0207-07-02T12:00:00",
+ "0208-07-02T00:00:00",
+ "0209-07-02T12:00:00",
+ "0210-07-02T12:00:00",
+ "0211-07-02T12:00:00",
+ "0212-07-02T00:00:00",
+ "0213-07-02T12:00:00",
+ "0214-07-02T12:00:00",
+ "0215-07-02T12:00:00",
+ "0216-07-02T00:00:00",
+ "0217-07-02T12:00:00",
+ "0218-07-02T12:00:00",
+ "0219-07-02T12:00:00",
+ "0220-07-02T00:00:00",
+ "0221-07-02T12:00:00",
+ "0222-07-02T12:00:00",
+ "0223-07-02T12:00:00",
+ "0224-07-02T00:00:00",
+ "0225-07-02T12:00:00",
+ "0226-07-02T12:00:00",
+ "0227-07-02T12:00:00",
+ "0228-07-02T00:00:00",
+ "0229-07-02T12:00:00",
+ "0230-07-02T12:00:00",
+ "0231-07-02T12:00:00",
+ "0232-07-02T00:00:00",
+ "0233-07-02T12:00:00",
+ "0234-07-02T12:00:00",
+ "0235-07-02T12:00:00",
+ "0236-07-02T00:00:00",
+ "0237-07-02T12:00:00",
+ "0238-07-02T12:00:00",
+ "0239-07-02T12:00:00",
+ "0240-07-02T00:00:00"
+ ],
+ "index_name": "time",
+ "values": [
+ -0.22606998682022095,
+ -0.04302825778722763,
+ -0.05386471003293991,
+ -0.2687722146511078,
+ -0.09424488991498947,
+ -0.08390214294195175,
+ -0.08851300179958344,
+ 0.16261343657970428,
+ 0.245801642537117,
+ 0.13028989732265472,
+ 0.19559480249881744,
+ 0.12317387759685516,
+ 0.3579734265804291,
+ 0.2651972770690918,
+ 0.24264205992221832,
+ 0.47817403078079224,
+ 0.47328850626945496,
+ 0.5102425813674927,
+ 0.4400189220905304,
+ 0.4015030264854431,
+ 0.42802008986473083,
+ 0.5132529735565186,
+ 0.4207514822483063,
+ 0.611117422580719,
+ 0.5896608233451843,
+ 0.6386998891830444,
+ 0.6877388954162598,
+ 0.7638775706291199,
+ 0.7424820065498352,
+ 0.6130542755126953,
+ 0.6558066606521606,
+ 0.7682917714118958,
+ 0.8331084251403809,
+ 0.7699037790298462,
+ 0.8102148175239563,
+ 0.8700570464134216,
+ 0.8957196474075317,
+ 1.011775255203247,
+ 1.0470203161239624,
+ 0.9438377022743225,
+ 0.9261348247528076,
+ 1.043044924736023,
+ 1.0776185989379883,
+ 1.1327612400054932,
+ 1.2457956075668335,
+ 1.2354168891906738,
+ 1.3091446161270142,
+ 1.273772120475769,
+ 1.1790733337402344,
+ 1.1095210313796997,
+ 1.128286600112915,
+ 1.198596477508545,
+ 1.2704626321792603,
+ 1.3029000759124756,
+ 1.228068232536316,
+ 1.3227006196975708,
+ 1.5245411396026611,
+ 1.4706443548202515,
+ 1.5512385368347168,
+ 1.6077544689178467,
+ 1.641321063041687,
+ 1.7371740341186523,
+ 1.6737862825393677,
+ 1.6956342458724976,
+ 1.732985019683838,
+ 1.8626514673233032,
+ 1.9823691844940186,
+ 1.8685359954833984,
+ 1.6077300310134888,
+ 1.852874994277954,
+ 1.8886693716049194,
+ 2.0954232215881348,
+ 2.0135114192962646,
+ 2.0250444412231445,
+ 2.1187610626220703,
+ 2.193740129470825,
+ 2.111340045928955,
+ 2.290383815765381,
+ 2.3715274333953857,
+ 2.2160985469818115,
+ 2.3524789810180664,
+ 2.4267561435699463,
+ 2.561854600906372,
+ 2.404045581817627,
+ 2.423391103744507,
+ 2.5148189067840576,
+ 2.4329376220703125,
+ 2.4509706497192383,
+ 2.575388193130493,
+ 2.588752269744873,
+ 2.600712299346924,
+ 2.6376054286956787,
+ 2.5599355697631836,
+ 2.7572898864746094,
+ 2.8208858966827393,
+ 2.83070969581604,
+ 2.937121868133545,
+ 2.826340436935425,
+ 2.9383981227874756,
+ 3.0045881271362305,
+ 3.1039812564849854,
+ 3.000066041946411,
+ 3.032198429107666,
+ 2.986937999725342,
+ 3.0671050548553467,
+ 3.1264286041259766,
+ 3.1750402450561523,
+ 3.2378122806549072,
+ 3.226304531097412,
+ 3.453413486480713,
+ 3.4063527584075928,
+ 3.2315757274627686,
+ 3.4257564544677734,
+ 3.2246429920196533,
+ 3.452514886856079,
+ 3.571927547454834,
+ 3.505305051803589,
+ 3.4735639095306396,
+ 3.4661455154418945,
+ 3.5261099338531494,
+ 3.79765248298645,
+ 3.775280475616455,
+ 3.905221462249756,
+ 3.9729373455047607,
+ 3.9495582580566406,
+ 3.8114938735961914,
+ 3.9162886142730713,
+ 4.123469829559326,
+ 4.076897144317627,
+ 4.063130855560303,
+ 4.132250785827637,
+ 4.2422332763671875,
+ 4.202679634094238,
+ 4.306589603424072,
+ 4.191474437713623,
+ 4.457005023956299,
+ 4.367860794067383,
+ 4.275572776794434,
+ 4.584438323974609,
+ 4.355309963226318
+ ]
+ }
+]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/plots/zec/zec/zec_50_barplot.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/plots/zec/zec/zec_50_barplot.png
deleted file mode 100644
index 3bfffc6..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/plots/zec/zec/zec_50_barplot.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/plots/zec/zec/zec_timeseries_all_models.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/plots/zec/zec/zec_timeseries_all_models.png
deleted file mode 100644
index 4c44ec9..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/plots/zec/zec/zec_timeseries_all_models.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/work/zec/zec/zec.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/work/zec/zec/zec.nc
deleted file mode 100644
index 56357ef..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/work/zec/zec/zec.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/work/zec/zec/zec_50.nc b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/work/zec/zec/zec_50.nc
deleted file mode 100644
index f349d0d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/work/zec/zec/zec_50.nc and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/output.json
deleted file mode 100644
index d165900..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/output.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- "index": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/run/main_log_debug.txt"
- },
- "data": {
- "executions/recipe_20251001_162139/work/zec/zec/zec.nc": {
- "filename": "executions/recipe_20251001_162139/work/zec/zec/zec.nc",
- "long_name": "",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162139/work/zec/zec/zec_50.nc": {
- "filename": "executions/recipe_20251001_162139/work/zec/zec/zec_50.nc",
- "long_name": "",
- "description": "",
- "dimensions": null
- }
- },
- "plots": {
- "executions/recipe_20251001_162139/plots/zec/zec/zec_50_barplot.png": {
- "filename": "executions/recipe_20251001_162139/plots/zec/zec/zec_50_barplot.png",
- "long_name": "Barplot of ZEC_50",
- "description": "",
- "dimensions": null
- },
- "executions/recipe_20251001_162139/plots/zec/zec/zec_timeseries_all_models.png": {
- "filename": "executions/recipe_20251001_162139/plots/zec/zec/zec_timeseries_all_models.png",
- "long_name": "ZEC timeseries",
- "description": "",
- "dimensions": null
- }
- },
- "html": {
- "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/index.html": {
- "filename": "/home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/index.html",
- "long_name": "Results page",
- "description": "Page showing the executions of the ESMValTool run.",
- "dimensions": null
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/series.json
deleted file mode 100644
index 83efe13..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/series.json
+++ /dev/null
@@ -1,227 +0,0 @@
-[
- {
- "dimensions": {
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "statistic": "zec"
- },
- "values": [
- 0.106903076171875,
- 0.003448486328125,
- 0.09185791015625,
- 0.240692138671875,
- 0.264617919921875,
- 0.11102294921875,
- 0.239990234375,
- 0.00494384765625,
- 0.1337890625,
- 0.0621337890625,
- -0.11212158203125,
- -0.106201171875,
- -0.00946044921875,
- 0.03729248046875,
- 0.0120849609375,
- 0.08447265625,
- -0.09942626953125,
- 0.0458984375,
- 0.1163330078125,
- 0.06304931640625,
- 0.081817626953125,
- -0.003692626953125,
- 0.045379638671875,
- 0.03369140625,
- -0.220916748046875,
- -0.061370849609375,
- 0.07427978515625,
- -0.103668212890625,
- -0.0234375,
- 0.05853271484375,
- 0.13311767578125,
- 0.043182373046875,
- 0.028778076171875,
- 0.22442626953125,
- 0.18603515625,
- 0.067626953125,
- 0.129608154296875,
- 0.03619384765625,
- -0.11297607421875,
- 0.00177001953125,
- -0.03253173828125,
- -0.163909912109375,
- -0.04547119140625,
- -0.04071044921875,
- -0.01373291015625,
- 0.05029296875,
- 0.0509033203125,
- -0.04815673828125,
- 0.06976318359375,
- 0.02850341796875,
- 0.017120361328125,
- -0.072479248046875,
- -0.040618896484375,
- 0.14227294921875,
- 0.041412353515625,
- 0.01507568359375,
- 0.1795654296875,
- 0.0035400390625,
- -0.02935791015625,
- 0.13446044921875,
- 0.220611572265625,
- 0.26495361328125,
- 0.197021484375,
- 0.086212158203125,
- 0.0120849609375,
- 0.011474609375,
- 0.072418212890625,
- -0.14697265625,
- -0.155670166015625,
- -0.0467529296875,
- 0.01904296875,
- 0.12982177734375,
- 0.201171875,
- 0.00390625,
- -0.0311279296875,
- 0.002655029296875,
- 0.10302734375,
- -0.0233154296875,
- -0.2027587890625,
- -0.126800537109375,
- -0.031524658203125,
- 0.026153564453125,
- 0.03546142578125,
- 0.098388671875,
- 0.1937255859375,
- 0.278076171875,
- 0.21514892578125,
- 0.0982666015625,
- -0.18719482421875,
- -0.01312255859375,
- -0.01055908203125,
- -0.08416748046875,
- -0.1602783203125,
- -0.096405029296875,
- -0.1387939453125,
- -0.243072509765625,
- -0.23333740234375,
- -0.08538818359375,
- -0.03424072265625,
- 0.01190185546875,
- -0.1258544921875
- ],
- "index": [
- 0,
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12,
- 13,
- 14,
- 15,
- 16,
- 17,
- 18,
- 19,
- 20,
- 21,
- 22,
- 23,
- 24,
- 25,
- 26,
- 27,
- 28,
- 29,
- 30,
- 31,
- 32,
- 33,
- 34,
- 35,
- 36,
- 37,
- 38,
- 39,
- 40,
- 41,
- 42,
- 43,
- 44,
- 45,
- 46,
- 47,
- 48,
- 49,
- 50,
- 51,
- 52,
- 53,
- 54,
- 55,
- 56,
- 57,
- 58,
- 59,
- 60,
- 61,
- 62,
- 63,
- 64,
- 65,
- 66,
- 67,
- 68,
- 69,
- 70,
- 71,
- 72,
- 73,
- 74,
- 75,
- 76,
- 77,
- 78,
- 79,
- 80,
- 81,
- 82,
- 83,
- 84,
- 85,
- 86,
- 87,
- 88,
- 89,
- 90,
- 91,
- 92,
- 93,
- 94,
- 95,
- 96,
- 97,
- 98,
- 99,
- 100
- ],
- "index_name": "time",
- "attributes": {
- "caption": "",
- "values_name": "zec",
- "index_name": "time",
- "value_long_name": "Zero Emissions Commitment (ZEC)",
- "index_long_name": "time",
- "index_standard_name": "time",
- "value_units": "K",
- "index_units": "years"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/diagnostic.json
similarity index 89%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/diagnostic.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/diagnostic.json
index 669e869..26f6500 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/diagnostic.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/diagnostic.json
@@ -1,5 +1,8 @@
{
"DIMENSIONS": {
+ "grid_label": {
+ "gn": {}
+ },
"json_structure": [
"grid_label",
"member_id",
@@ -7,34 +10,31 @@
"region",
"metric"
],
- "region": {
- "global": {}
+ "member_id": {
+ "r1i1p1f1": {}
},
"metric": {
"zec": {}
},
- "grid_label": {
- "gn": {}
- },
- "member_id": {
- "r1i1p1f1": {}
+ "region": {
+ "global": {}
},
"source_id": {
"ACCESS-ESM1-5": {}
}
},
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
"RESULTS": {
"gn": {
"r1i1p1f1": {
"ACCESS-ESM1-5": {
"global": {
- "zec": 0.005867405941611842
+ "zec": 3.85485197368421e-05
}
}
}
}
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
+ }
}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/index.html
similarity index 95%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/index.html
index 02c95ee..dcdecd5 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/index.html
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/index.html
@@ -273,7 +273,7 @@ Data files
- /home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/work/zec/zec/zec.nc |
+ /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/work/zec/zec/zec.nc |
download |
references |
extra data citation |
@@ -283,7 +283,7 @@ Data files
- /home/gha-runner/actions-runners/org-climate-ref/_work/climate-ref/climate-ref/test-outputs/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/f35c61d89de4f77151bfd92679b8f749677f5f38/executions/recipe_20251001_162139/work/zec/zec/zec_50.nc |
+ /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/work/zec/zec/zec_50.nc |
download |
references |
extra data citation |
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/plots/zec/zec/zec_50_barplot.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/plots/zec/zec/zec_50_barplot.png
new file mode 100644
index 0000000..d286728
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/plots/zec/zec/zec_50_barplot.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/plots/zec/zec/zec_timeseries_all_models.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/plots/zec/zec/zec_timeseries_all_models.png
new file mode 100644
index 0000000..631ba82
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/plots/zec/zec/zec_timeseries_all_models.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/output.json
new file mode 100644
index 0000000..a253a0e
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/output.json
@@ -0,0 +1,55 @@
+{
+ "index": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/run/main_log_debug.txt"
+ },
+ "data": {
+ "executions/recipe_20260716_140606/work/zec/zec/zec.nc": {
+ "filename": "executions/recipe_20260716_140606/work/zec/zec/zec.nc",
+ "long_name": "",
+ "description": "",
+ "dimensions": {
+ "statistic": "zec"
+ }
+ },
+ "executions/recipe_20260716_140606/work/zec/zec/zec_50.nc": {
+ "filename": "executions/recipe_20260716_140606/work/zec/zec/zec_50.nc",
+ "long_name": "",
+ "description": "",
+ "dimensions": {
+ "metric": "zec"
+ }
+ }
+ },
+ "plots": {
+ "executions/recipe_20260716_140606/plots/zec/zec/zec_50_barplot.png": {
+ "filename": "executions/recipe_20260716_140606/plots/zec/zec/zec_50_barplot.png",
+ "long_name": "Barplot of ZEC_50",
+ "description": "",
+ "dimensions": {
+ "statistic": "zec"
+ }
+ },
+ "executions/recipe_20260716_140606/plots/zec/zec/zec_timeseries_all_models.png": {
+ "filename": "executions/recipe_20260716_140606/plots/zec/zec/zec_timeseries_all_models.png",
+ "long_name": "ZEC timeseries",
+ "description": "",
+ "dimensions": {
+ "statistic": "zec"
+ }
+ }
+ },
+ "html": {
+ "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/index.html": {
+ "filename": "/data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/executions/recipe_20260716_140606/index.html",
+ "long_name": "Results page",
+ "description": "Page showing the executions of the ESMValTool run.",
+ "dimensions": null
+ }
+ },
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/series.json
new file mode 100644
index 0000000..d131121
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/esmvaltool/zero-emission-commitment/gn_r1i1p1f1_ACCESS-ESM1-5_g35_v1_52fefb59/18/series.json
@@ -0,0 +1,225 @@
+[
+ {
+ "attributes": {
+ "caption": "",
+ "index_long_name": "time",
+ "index_name": "time",
+ "index_standard_name": "time",
+ "index_units": "years",
+ "value_long_name": "Zero Emissions Commitment (ZEC)",
+ "value_units": "K",
+ "values_name": "zec"
+ },
+ "dimensions": {
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "statistic": "zec"
+ },
+ "index": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ 30,
+ 31,
+ 32,
+ 33,
+ 34,
+ 35,
+ 36,
+ 37,
+ 38,
+ 39,
+ 40,
+ 41,
+ 42,
+ 43,
+ 44,
+ 45,
+ 46,
+ 47,
+ 48,
+ 49,
+ 50,
+ 51,
+ 52,
+ 53,
+ 54,
+ 55,
+ 56,
+ 57,
+ 58,
+ 59,
+ 60,
+ 61,
+ 62,
+ 63,
+ 64,
+ 65,
+ 66,
+ 67,
+ 68,
+ 69,
+ 70,
+ 71,
+ 72,
+ 73,
+ 74,
+ 75,
+ 76,
+ 77,
+ 78,
+ 79,
+ 80,
+ 81,
+ 82,
+ 83,
+ 84,
+ 85,
+ 86,
+ 87,
+ 88,
+ 89,
+ 90,
+ 91,
+ 92,
+ 93,
+ 94,
+ 95,
+ 96,
+ 97,
+ 98,
+ 99
+ ],
+ "index_name": "time",
+ "values": [
+ 0.10107421875,
+ -0.00238037109375,
+ 0.086029052734375,
+ 0.23486328125,
+ 0.2587890625,
+ 0.105194091796875,
+ 0.234161376953125,
+ -0.000885009765625,
+ 0.127960205078125,
+ 0.056304931640625,
+ -0.117950439453125,
+ -0.112030029296875,
+ -0.015289306640625,
+ 0.031463623046875,
+ 0.006256103515625,
+ 0.078643798828125,
+ -0.105255126953125,
+ 0.040069580078125,
+ 0.110504150390625,
+ 0.057220458984375,
+ 0.07598876953125,
+ -0.009521484375,
+ 0.03955078125,
+ 0.027862548828125,
+ -0.22674560546875,
+ -0.06719970703125,
+ 0.068450927734375,
+ -0.1094970703125,
+ -0.029266357421875,
+ 0.052703857421875,
+ 0.127288818359375,
+ 0.037353515625,
+ 0.02294921875,
+ 0.218597412109375,
+ 0.180206298828125,
+ 0.061798095703125,
+ 0.123779296875,
+ 0.030364990234375,
+ -0.118804931640625,
+ -0.004058837890625,
+ -0.038360595703125,
+ -0.16973876953125,
+ -0.051300048828125,
+ -0.046539306640625,
+ -0.019561767578125,
+ 0.044464111328125,
+ 0.045074462890625,
+ -0.053985595703125,
+ 0.063934326171875,
+ 0.022674560546875,
+ 0.01129150390625,
+ -0.07830810546875,
+ -0.04644775390625,
+ 0.136444091796875,
+ 0.03558349609375,
+ 0.009246826171875,
+ 0.173736572265625,
+ -0.002288818359375,
+ -0.035186767578125,
+ 0.128631591796875,
+ 0.21478271484375,
+ 0.259124755859375,
+ 0.191192626953125,
+ 0.08038330078125,
+ 0.006256103515625,
+ 0.005645751953125,
+ 0.06658935546875,
+ -0.152801513671875,
+ -0.1614990234375,
+ -0.052581787109375,
+ 0.013214111328125,
+ 0.123992919921875,
+ 0.195343017578125,
+ -0.001922607421875,
+ -0.036956787109375,
+ -0.003173828125,
+ 0.097198486328125,
+ -0.029144287109375,
+ -0.208587646484375,
+ -0.13262939453125,
+ -0.037353515625,
+ 0.02032470703125,
+ 0.029632568359375,
+ 0.092559814453125,
+ 0.187896728515625,
+ 0.272247314453125,
+ 0.209320068359375,
+ 0.092437744140625,
+ -0.193023681640625,
+ -0.018951416015625,
+ -0.016387939453125,
+ -0.089996337890625,
+ -0.166107177734375,
+ -0.10223388671875,
+ -0.144622802734375,
+ -0.2489013671875,
+ -0.239166259765625,
+ -0.091217041015625,
+ -0.040069580078125,
+ 0.006072998046875
+ ]
+ }
+]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/ACCESS-ESM1-5-r1i1p1f1-gn_None_amoc.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/ACCESS-ESM1-5-r1i1p1f1-gn_None_amoc.png
deleted file mode 100644
index 624ce18..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/ACCESS-ESM1-5-r1i1p1f1-gn_None_amoc.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/None_None_allamoc.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/None_None_allamoc.png
deleted file mode 100644
index 10fbc95..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/None_None_allamoc.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/None_None_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/None_None_taylor.png
deleted file mode 100644
index 7d258bd..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/None_None_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/diagnostic.json
deleted file mode 100644
index 697272c..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/diagnostic.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "None": {
- "LongName": "None",
- "Description": "Reference data extents",
- "Generator": "N/A"
- }
- },
- "metric": {
- "timeseries": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "Sv"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Taylor Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "None": {
- "timeseries": {
- "Bias Score": 0.8747164616927197,
- "Correlation": -0.0011448381137671,
- "Normalized Standard Deviation": 0.6247995359266051,
- "Period Mean": 19.4475997462655,
- "Taylor Score": 0.4034134255488216
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/index.html
deleted file mode 100644
index 3623f5c..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/index.html
+++ /dev/null
@@ -1,368 +0,0 @@
-
-
-
-
-
-amoc-rapid
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
timeseries
-
-
-
-
-
-
-
-
-
-
-
-
-
All Models
-
-
- amoc
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/output.json
deleted file mode 100644
index b7c4f39..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/output.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "None_None_allamoc.png": {
- "filename": "None_None_allamoc.png",
- "long_name": "",
- "description": "",
- "dimensions": {
- "region": "None"
- }
- },
- "None_None_taylor.png": {
- "filename": "None_None_taylor.png",
- "long_name": "The Taylor diagram",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "RAPID",
- "region": "None",
- "statistic": "Taylor diagram"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_amoc.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_amoc.png",
- "long_name": "",
- "description": "",
- "dimensions": {
- "region": "None"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "RAPID"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/series.json
deleted file mode 100644
index 981cd35..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/amoc-rapid/288823fdc8b252e44b667a1576dcf46171990bd2/series.json
+++ /dev/null
@@ -1,556 +0,0 @@
-[
- {
- "dimensions": {
- "metric": "amoc",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "RAPID",
- "region": "None"
- },
- "values": [
- 16.019892112568623,
- 18.0638121447944,
- 19.1631383908209,
- 21.419623595143733,
- 18.437435101393287,
- 17.9948757487299,
- 15.468619447807974,
- 17.969317990224674,
- 17.216087330975707,
- 15.12586912275018,
- 20.288365025654493,
- 18.40452002395094,
- 13.374533825696089,
- 18.411171565499785,
- 20.088779797298574,
- 22.168726277342646,
- 22.27050799378205,
- 19.247839884128254,
- 18.905049551340596,
- 18.672846738918206,
- 19.83339096666413,
- 21.463127385088725,
- 24.39706655662938,
- 20.776748616594695,
- 16.81711383539548,
- 18.79328231586411,
- 20.855473570564666,
- 22.56444581089435,
- 23.28291898544901,
- 20.033111605798034,
- 16.757706459911976,
- 18.27928351942197,
- 18.03795484123485,
- 21.19413182294536,
- 18.962102625797794,
- 21.411581015602874,
- 20.529063838556148,
- 19.494367515518572,
- 20.07150671639182,
- 21.85465739123675,
- 20.458207071458418,
- 17.9855508701551,
- 15.28890062192505,
- 16.84203967693678,
- 20.045825857179334,
- 19.81400260527099,
- 22.312600228950483,
- 19.29809985122326,
- 17.941655209625335,
- 17.389780377238353,
- 17.561354039657704,
- 22.079742931101173,
- 22.239295809456777,
- 19.89231517187165,
- 15.975183987370958,
- 21.47656382728594,
- 23.447309721599858,
- 21.80690047185599,
- 20.270478492889904,
- 19.261822072794313,
- 19.925948336773,
- 17.65003784084485,
- 17.82646167113017,
- 20.980277170939775,
- 19.315276503242664,
- 18.117939525775764,
- 19.818144944070223,
- 18.765004031728488,
- 18.55877957189445,
- 18.957736654047043,
- 22.702035471396666,
- 20.2370853743677,
- 23.540706228196534,
- 23.869493855533587,
- 21.842735087738806,
- 21.543165413269453,
- 22.50702138263693,
- 17.861013987979046,
- 18.817120767824633,
- 19.18981841744063,
- 20.744557781646712,
- 17.87665188115773,
- 22.64783012663404,
- 18.721013993989825,
- 19.122810599123166,
- 19.668169300739294,
- 21.710284881764515,
- 20.828861249333933,
- 22.58984353848014,
- 19.425152091184284,
- 19.198312366241435,
- 19.293729776115597,
- 20.567032200031434,
- 17.061682113861945,
- 22.94037895743278,
- 20.641444525890467,
- 18.948565651356315,
- 19.550144445977192,
- 20.246278945521425,
- 22.251620241931757,
- 21.289655920099147,
- 18.93386537523125,
- 15.372103364121534,
- 20.60738461187062,
- 19.000249483298607,
- 20.349314237496408,
- 17.98666698323424,
- 17.142494650659167,
- 17.73720955501118,
- 19.092663235915673,
- 20.972232539720462,
- 20.03271768353481,
- 20.624185806732893,
- 18.257859893002163,
- 15.739566156161382,
- 19.8507173912107,
- 19.664810703109605,
- 21.08490046203839,
- 17.058348136373706,
- 22.2949557942435,
- 18.2766737844281,
- 18.47695658345848,
- 15.973155903218881,
- 18.94901496893781,
- 19.075997451831388,
- 18.52798182661694,
- 15.986840598509067,
- 13.370271463707281,
- 15.842359350078755
- ],
- "index": [
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T12:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T12:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "Sv",
- "long_name": "Ocean Meridional Overturning Mass Streamfunction",
- "standard_name": "ocean_meridional_overturning_mass_streamfunction"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "amoc",
- "region": "None"
- },
- "values": [
- 17.644886013481173,
- 16.36232003530458,
- 11.942391582725548,
- 20.384765414882533,
- 21.67513613617548,
- 24.986717107310206,
- 19.834562990714073,
- 19.83435675294751,
- 18.752500154273235,
- 19.05104009116466,
- 11.6173986928889,
- 12.27409761779029,
- 16.08762251124894,
- 18.478276803650463,
- 21.966506868301288,
- 22.032028407491854,
- 21.67359030607182,
- 19.23526559249698,
- 19.484873651249945,
- 24.662383434425575,
- 19.638919133983947,
- 19.06231267429147,
- 17.8431313927748,
- 11.446614769222576,
- 17.252894902453992,
- 16.681823028200366,
- 19.71169950789898,
- 23.360537918016743,
- 19.509890677448986,
- 19.514021021108995,
- 20.102896879158244,
- 21.92902407033164,
- 22.182807476978933,
- 22.11694501170927,
- 14.884555397814268,
- 18.788338195727874,
- 10.976032667926233,
- 17.399077793020133,
- 17.060386096447193,
- 19.632855992947476,
- 18.046745331619544,
- 16.233991401582454,
- 20.67592230112053,
- 19.42019466562043,
- 19.56826640218919,
- 20.75709594358648,
- 17.45646606414642,
- 16.427860360508074,
- 14.650156515446097,
- 13.826877318877983,
- 16.394759973685044,
- 18.268051336862875,
- 15.927477500523553,
- 15.132586942915328,
- 21.774742196689512,
- 19.213111792109714,
- 21.77593761921566,
- 17.401411679431636,
- 15.735604392484346,
- 15.448097524380351,
- 15.531047899323118,
- 16.776547496471704,
- 13.470842965550487,
- 17.25639928487915,
- 17.494402402434922,
- 11.740401984724459,
- 14.156552061053818,
- 13.667059044870957,
- 9.509055598587231,
- 8.187390340950444,
- 8.398733181545433,
- 9.624640988331398,
- 13.50747593105138,
- 17.214965795399173,
- 19.290841899379025,
- 19.211010475851687,
- 19.289429898715596,
- 21.94015686869734,
- 21.079230444641418,
- 16.658823803849522,
- 8.735665485861944,
- 14.445839997753215,
- 15.12951193884202,
- 16.838150185855525,
- 19.030648161574867,
- 15.667196520193784,
- 14.493042767114325,
- 17.644996256658626,
- 18.179353326288858,
- 19.26747554231488,
- 20.16954060783714,
- 17.825293246280296,
- 20.65539729998695,
- 15.293573372447621,
- 15.86080359681722,
- 18.089647767057144,
- 14.413495224106043,
- 12.76653318760259,
- 9.671050030004256,
- 18.08428848195176,
- 16.6473872106004,
- 15.452032714880309,
- 16.9246849692525,
- 16.67770984725149,
- 18.159235673612077,
- 13.62735634212517,
- 15.734444169868393,
- 6.6480804057777005,
- 14.71902213557062,
- 17.586302678935777,
- 19.953546362696397,
- 16.709210301853833,
- 19.91420978428218,
- 17.5268731110135,
- 17.79437948343103,
- 22.652966218418552,
- 18.898446811307824,
- 15.545617750821359,
- 14.993008059347916,
- 14.35239810004312,
- 14.484644090790544,
- 14.450698738359147,
- 17.642432341062293,
- 17.89209272878018,
- 15.622190118720493,
- 16.66987064861927,
- 18.881224352783967,
- 20.29513110947721,
- 16.51871983154173
- ],
- "index": [
- "2004-04-15T00:00:00",
- "2004-05-15T00:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T00:00:00",
- "2004-08-15T00:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T00:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T00:00:00",
- "2005-01-15T00:00:00",
- "2005-02-15T00:00:00",
- "2005-03-15T00:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T00:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T00:00:00",
- "2005-08-15T00:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T00:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T00:00:00",
- "2006-01-15T00:00:00",
- "2006-02-15T00:00:00",
- "2006-03-15T00:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T00:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T00:00:00",
- "2006-08-15T00:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T00:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T00:00:00",
- "2007-01-15T00:00:00",
- "2007-02-15T00:00:00",
- "2007-03-15T00:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T00:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T00:00:00",
- "2007-08-15T00:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T00:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T00:00:00",
- "2008-01-15T00:00:00",
- "2008-02-15T00:00:00",
- "2008-03-15T00:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T00:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T00:00:00",
- "2008-08-15T00:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T00:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T00:00:00",
- "2009-01-15T00:00:00",
- "2009-02-15T00:00:00",
- "2009-03-15T00:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T00:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T00:00:00",
- "2009-08-15T00:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T00:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T00:00:00",
- "2010-01-15T00:00:00",
- "2010-02-15T00:00:00",
- "2010-03-15T00:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T00:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T00:00:00",
- "2010-08-15T00:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T00:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T00:00:00",
- "2011-01-15T00:00:00",
- "2011-02-15T00:00:00",
- "2011-03-15T00:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T00:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T00:00:00",
- "2011-08-15T00:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T00:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T00:00:00",
- "2012-01-15T00:00:00",
- "2012-02-15T00:00:00",
- "2012-03-15T00:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T00:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T00:00:00",
- "2012-08-15T00:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T00:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T00:00:00",
- "2013-01-15T00:00:00",
- "2013-02-15T00:00:00",
- "2013-03-15T00:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T00:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T00:00:00",
- "2013-08-15T00:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T00:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T00:00:00",
- "2014-01-15T00:00:00",
- "2014-02-15T00:00:00",
- "2014-03-15T00:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T00:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T00:00:00",
- "2014-08-15T00:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T00:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T00:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "Sv",
- "long_name": "Atlantic meridonal overturning transport at 26 degrees latitude",
- "standard_name": "overturning transport"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_bias.png
deleted file mode 100644
index 222352f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_biasscore.png
deleted file mode 100644
index e6b46e4..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_cycle.png
deleted file mode 100644
index 6d80cff..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_cyclescore.png
deleted file mode 100644
index 8508647..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_mean.png
deleted file mode 100644
index 0a9710e..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_rmse.png
deleted file mode 100644
index aafcb58..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_rmsescore.png
deleted file mode 100644
index bbffa7a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_shift.png
deleted file mode 100644
index 1162060..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_tmax.png
deleted file mode 100644
index ddd2b76..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_trace.png
deleted file mode 100644
index 05b8800..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_global_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_bias.png
deleted file mode 100644
index 2134df2..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_biasscore.png
deleted file mode 100644
index 9b93e85..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_cycle.png
deleted file mode 100644
index 0eb9149..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_cyclescore.png
deleted file mode 100644
index a043305..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_mean.png
deleted file mode 100644
index 9bf9994..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_rmse.png
deleted file mode 100644
index 13a655e..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_rmsescore.png
deleted file mode 100644
index f752fd8..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_shift.png
deleted file mode 100644
index fea7b0b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_tmax.png
deleted file mode 100644
index 43eb0ab..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_trace.png
deleted file mode 100644
index 4fc8755..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/CESM2-r1i1p1f1-gn_tropical_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/None_global_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/None_global_taylor.png
deleted file mode 100644
index b67d398..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/None_global_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/None_tropical_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/None_tropical_taylor.png
deleted file mode 100644
index a23e550..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/None_tropical_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_global_mean.png
deleted file mode 100644
index 192c5f1..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_global_tmax.png
deleted file mode 100644
index e5f34da..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_tropical_mean.png
deleted file mode 100644
index b1a8a5e..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_tropical_tmax.png
deleted file mode 100644
index a0c9e97..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/Reference_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/diagnostic.json
deleted file mode 100644
index 566626c..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/diagnostic.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "CESM2": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "global": {
- "LongName": "Global - Land",
- "Description": "Global - Land",
- "Generator": "GlobalLand.nc"
- },
- "tropical": {
- "LongName": "Tropical climates",
- "Description": "Tropical climates",
- "Generator": "Koppen_coarse.nc"
- }
- },
- "metric": {
- "Bias": {},
- "RMSE": {},
- "Annual Cycle": {},
- "Spatial Distribution": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "%"
- },
- "Bias": {
- "type": "scalar",
- "units": "%"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "RMSE": {
- "type": "scalar",
- "units": "%"
- },
- "RMSE Score": {
- "type": "score",
- "units": "1"
- },
- "Phase Shift": {
- "type": "scalar",
- "units": "month"
- },
- "Seasonal Cycle Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "CESM2": {
- "r1i1p1f1": {
- "gn": {
- "global": {
- "Annual Cycle": {
- "Phase Shift": 0.6180373660811851,
- "Seasonal Cycle Score": 0.6279932814929415
- },
- "Bias": {
- "Bias": -0.0067603479250643,
- "Bias Score": 0.558336974518556,
- "Period Mean": 0.2819449804426191
- },
- "RMSE": {
- "RMSE": 1.23028406801685,
- "RMSE Score": 0.2191283171584863
- },
- "Spatial Distribution": {
- "Correlation": 0.6716461257978952,
- "Normalized Standard Deviation": 0.796700107365545,
- "Spatial Distribution Score": 0.7940931760300006
- }
- },
- "tropical": {
- "Annual Cycle": {
- "Phase Shift": 0.7468445959556654,
- "Seasonal Cycle Score": 0.709155311309353
- },
- "Bias": {
- "Bias": -0.2824932719345132,
- "Bias Score": 0.5772930413314666,
- "Period Mean": 0.6921536609330264
- },
- "RMSE": {
- "RMSE": 2.5205141835096563,
- "RMSE Score": 0.2413395777111654
- },
- "Spatial Distribution": {
- "Correlation": 0.6622876256456568,
- "Normalized Standard Deviation": 0.7838276266524628,
- "Spatial Distribution Score": 0.7837231413749497
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/index.html
deleted file mode 100644
index 31e49fc..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/index.html
+++ /dev/null
@@ -1,424 +0,0 @@
-
-
-
-
-
-burntfractionall-gfed
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bias
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Annual Cycle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Spatial Distribution
-
-
-
-
-
-
-
-
-
All Models
-
-
- bias
-
- biasscore
-
- cycle
-
- cyclescore
-
- mean
-
- rmse
-
- rmsescore
-
- shift
-
- tmax
-
- trace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/output.json
deleted file mode 100644
index e9a1b6f..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/output.json
+++ /dev/null
@@ -1,376 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "CESM2-r1i1p1f1-gn_global_biasscore.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_biasscore.png",
- "long_name": "The bias score for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "Bias score"
- }
- },
- "CESM2-r1i1p1f1-gn_global_shift.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_shift.png",
- "long_name": "The shift in maximum month for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "Shift in maximum month"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_biasscore.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_biasscore.png",
- "long_name": "The bias score for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "Bias score"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_trace.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_trace.png",
- "long_name": "The regional mean for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "Regional mean"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_tmax.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_tmax.png",
- "long_name": "The maxmimum month for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "Maximum month"
- }
- },
- "CESM2-r1i1p1f1-gn_global_cycle.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_cycle.png",
- "long_name": "The annual cycle for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "Annual cycle"
- }
- },
- "None_tropical_taylor.png": {
- "filename": "None_tropical_taylor.png",
- "long_name": "The Taylor diagram over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "Taylor diagram"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_rmsescore.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_rmsescore.png",
- "long_name": "The RMSE score for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "RMSE score"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_cycle.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_cycle.png",
- "long_name": "The annual cycle for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "Annual cycle"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_shift.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_shift.png",
- "long_name": "The shift in maximum month for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "Shift in maximum month"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_rmse.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_rmse.png",
- "long_name": "The RMSE for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "RMSE"
- }
- },
- "CESM2-r1i1p1f1-gn_global_tmax.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_tmax.png",
- "long_name": "The maxmimum month for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "Maximum month"
- }
- },
- "None_global_taylor.png": {
- "filename": "None_global_taylor.png",
- "long_name": "The Taylor diagram over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "Taylor diagram"
- }
- },
- "Reference_tropical_mean.png": {
- "filename": "Reference_tropical_mean.png",
- "long_name": "The period mean for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "Reference_global_tmax.png": {
- "filename": "Reference_global_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "CESM2-r1i1p1f1-gn_global_bias.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_bias.png",
- "long_name": "The bias for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "Bias"
- }
- },
- "CESM2-r1i1p1f1-gn_global_rmse.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_rmse.png",
- "long_name": "The RMSE for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "RMSE"
- }
- },
- "CESM2-r1i1p1f1-gn_global_trace.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_trace.png",
- "long_name": "The regional mean for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "Regional mean"
- }
- },
- "CESM2-r1i1p1f1-gn_global_mean.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_mean.png",
- "long_name": "The period mean for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "Period Mean"
- }
- },
- "CESM2-r1i1p1f1-gn_global_cyclescore.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_cyclescore.png",
- "long_name": "The annual cycle score for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "Annual cycle score"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_bias.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_bias.png",
- "long_name": "The bias for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "Bias"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_mean.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_mean.png",
- "long_name": "The period mean for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "Period Mean"
- }
- },
- "Reference_global_mean.png": {
- "filename": "Reference_global_mean.png",
- "long_name": "The period mean for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "CESM2-r1i1p1f1-gn_global_rmsescore.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_rmsescore.png",
- "long_name": "The RMSE score for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global",
- "statistic": "RMSE score"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_cyclescore.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_cyclescore.png",
- "long_name": "The annual cycle score for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical",
- "statistic": "Annual cycle score"
- }
- },
- "Reference_tropical_tmax.png": {
- "filename": "Reference_tropical_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/series.json
deleted file mode 100644
index e91241f..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/burntfractionall-gfed/e07d80147e573d193c54bc63d21845432cfdae16/series.json
+++ /dev/null
@@ -1,1690 +0,0 @@
-[
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global"
- },
- "values": [
- 0.29591210933086737,
- 0.47687177703178957,
- 0.36697476176190963,
- 0.2065731943284782,
- 0.0873033759803172,
- 0.2291898655098439,
- 0.24081165850575942,
- 0.2945986486560479,
- 0.3984446371142,
- 0.5372566122502029,
- 0.5377109706467511,
- 0.20859592441976005,
- 0.2842363206638607,
- 0.2900187116842572,
- 0.24398288165924845,
- 0.22382417055158033,
- 0.10955969036372856,
- 0.17113375677922726,
- 0.1897562351120222,
- 0.2321480126834817,
- 0.3444370244904408,
- 0.48941653768266663,
- 0.18413263002812236,
- 0.26070543619891384,
- 0.35912336756466584,
- 0.2460470041095331,
- 0.24761324230474718,
- 0.23370419673218584,
- 0.16319593225872808,
- 0.1752883283001268,
- 0.22648809106183948,
- 0.27928150979894595,
- 0.34938337423320015,
- 0.4567535145273348,
- 0.3088010681054584,
- 0.18926601785557115,
- 0.2576278405218096,
- 0.2776707700216755,
- 0.3049619182919452,
- 0.17662113382009106,
- 0.10231563528227537,
- 0.16579205064499322,
- 0.2025938399351939,
- 0.26894692847771284,
- 0.5266621420391332,
- 0.7324386876708627,
- 0.46574942747992787,
- 0.2623813110286002,
- 0.2584107526986905,
- 0.2964669013480614,
- 0.23131079161472956,
- 0.12465295113670143,
- 0.12888167523890323,
- 0.15426756791456242,
- 0.15107299641217015,
- 0.21645843302973522,
- 0.2544972892436255,
- 0.6418802787955767,
- 0.2019493631458949,
- 0.22404782036714743,
- 0.22854927858923577,
- 0.23490254186054219,
- 0.2339302745736346,
- 0.10483739055665758,
- 0.06755503026358908,
- 0.17453563206268294,
- 0.22915804412447233,
- 0.24582138574761603,
- 0.4439763393899394,
- 0.41266777409616756,
- 0.4549957207418612,
- 0.264863634729793,
- 0.32111924261723257,
- 0.34761859540134693,
- 0.3349017950883464,
- 0.1803235102118123,
- 0.08973235617632284,
- 0.1838016153322665,
- 0.22655106007612633,
- 0.27279371900922306,
- 0.3274727358173408,
- 0.42374943645066215,
- 0.22623798914222923,
- 0.19579047121201387,
- 0.2615972887292867,
- 0.4085456440327339,
- 0.2864747279947196,
- 0.10017493689827824,
- 0.08257791812710612,
- 0.2539591623413975,
- 0.24956629137221026,
- 0.23792764348095888,
- 0.39873094325643726,
- 0.6464838416099818,
- 0.3835225802691783,
- 0.297302822583513,
- 0.30362021786167304,
- 0.2960224548980184,
- 0.43616473949363543,
- 0.26519196337242634,
- 0.0889380146445855,
- 0.1268705775961065,
- 0.2151859635813772,
- 0.31218173622115264,
- 0.40182340009803075,
- 0.600843801649452,
- 0.34844362464920586,
- 0.22858941030347973,
- 0.33275417285178077,
- 0.3302597434593229,
- 0.19355128414634043,
- 0.0958786130856602,
- 0.052236311814059445,
- 0.1362414401260954,
- 0.20291627086588745,
- 0.2521950290888053,
- 0.23882865165774145,
- 0.4494061736084809,
- 0.39928188599196407,
- 0.23598739240936836,
- 0.28655980745701226,
- 0.2818390291957164,
- 0.42354308683686587,
- 0.1739405797526373,
- 0.12624253673108965,
- 0.11612201547946825,
- 0.1974424115447051,
- 0.3179548650257781,
- 0.22149563958267146,
- 0.47685873247458815,
- 0.23376329180202976,
- 0.21141271837312658,
- 0.24519779325041643,
- 0.24297222316897354,
- 0.22421619930407244,
- 0.19859324756387517,
- 0.10490941739798015,
- 0.15553334964709226,
- 0.20949379831953335,
- 0.2814042793785098,
- 0.33657878768518446,
- 0.8166153211860808,
- 0.3711391493548156,
- 0.23362735119608413,
- 0.28851465966293255,
- 0.27234973135032065,
- 0.2358891759722989,
- 0.23787916791751926,
- 0.1325583792118807,
- 0.1708343607784407,
- 0.2344681476871047,
- 0.2650013004058591,
- 0.4586907402233623,
- 0.6161272239626812,
- 0.5145966736100756,
- 0.20936887828467274,
- 0.22560460034875954,
- 0.2763865723465006,
- 0.3941837622687637,
- 0.2115177973431017,
- 0.13937575184171389,
- 0.2805627003254318,
- 0.2131892242578262,
- 0.26416556002613634,
- 0.4544734167340289,
- 0.623615882279732,
- 0.42396236033636586,
- 0.34058509253746516,
- 0.26655166312116946,
- 0.27561336433931694,
- 0.4229675627430263,
- 0.23987998437230684,
- 0.09109627839905012,
- 0.14141378762400866,
- 0.23802146184945785,
- 0.30662242139791446,
- 0.2895167048004359,
- 0.5934563814496495,
- 0.5964513857737515,
- 0.19289771113195342
- ],
- "index": [
- "2000-01-15T12:00:00",
- "2000-02-14T00:00:00",
- "2000-03-15T12:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T12:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T12:00:00",
- "2000-08-15T12:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T12:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T12:00:00",
- "2001-01-15T12:00:00",
- "2001-02-14T00:00:00",
- "2001-03-15T12:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T12:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T12:00:00",
- "2001-08-15T12:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T12:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T12:00:00",
- "2002-01-15T12:00:00",
- "2002-02-14T00:00:00",
- "2002-03-15T12:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T12:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T12:00:00",
- "2002-08-15T12:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T12:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T12:00:00",
- "2003-01-15T12:00:00",
- "2003-02-14T00:00:00",
- "2003-03-15T12:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T12:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T12:00:00",
- "2003-08-15T12:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T12:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T12:00:00",
- "2004-01-15T12:00:00",
- "2004-02-14T00:00:00",
- "2004-03-15T12:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T12:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T12:00:00",
- "2004-08-15T12:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T12:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T12:00:00",
- "2005-01-15T12:00:00",
- "2005-02-14T00:00:00",
- "2005-03-15T12:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T12:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T12:00:00",
- "2005-08-15T12:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T12:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T12:00:00",
- "2006-01-15T12:00:00",
- "2006-02-14T00:00:00",
- "2006-03-15T12:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T12:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T12:00:00",
- "2006-08-15T12:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T12:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T12:00:00",
- "2007-01-15T12:00:00",
- "2007-02-14T00:00:00",
- "2007-03-15T12:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T12:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T12:00:00",
- "2007-08-15T12:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T12:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T12:00:00",
- "2008-01-15T12:00:00",
- "2008-02-14T00:00:00",
- "2008-03-15T12:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T12:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T12:00:00",
- "2008-08-15T12:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T12:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T12:00:00",
- "2009-01-15T12:00:00",
- "2009-02-14T00:00:00",
- "2009-03-15T12:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T12:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T12:00:00",
- "2009-08-15T12:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T12:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T12:00:00",
- "2010-01-15T12:00:00",
- "2010-02-14T00:00:00",
- "2010-03-15T12:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T12:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T12:00:00",
- "2010-08-15T12:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T12:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T12:00:00",
- "2011-01-15T12:00:00",
- "2011-02-14T00:00:00",
- "2011-03-15T12:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T12:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T12:00:00",
- "2011-08-15T12:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T12:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T12:00:00",
- "2012-01-15T12:00:00",
- "2012-02-14T00:00:00",
- "2012-03-15T12:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T12:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T12:00:00",
- "2012-08-15T12:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T12:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T12:00:00",
- "2013-01-15T12:00:00",
- "2013-02-14T00:00:00",
- "2013-03-15T12:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T12:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T12:00:00",
- "2013-08-15T12:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T12:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T12:00:00",
- "2014-01-15T12:00:00",
- "2014-02-14T00:00:00",
- "2014-03-15T12:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T12:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T12:00:00",
- "2014-08-15T12:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T12:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "percent",
- "long_name": "Percentage of Entire Grid cell that is Covered by Burnt Vegetation (All Classes)",
- "standard_name": "area_fraction"
- }
- },
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical"
- },
- "values": [
- 0.9347781484117454,
- 1.9362844353561717,
- 1.4841841060518317,
- 0.8113261941000434,
- 0.14925317797498172,
- 0.3748165801418807,
- 0.5075954871001419,
- 0.7802126009122279,
- 1.3295493322009995,
- 0.46388197766562045,
- 0.0701046097588718,
- 0.4465921580020926,
- 0.9110380024927318,
- 1.0618046576074172,
- 1.0147830446241353,
- 0.9324680675030541,
- 0.25767925433412997,
- 0.42589319779732937,
- 0.4088730030204181,
- 0.6371615534848334,
- 1.1635279222970745,
- 0.6613833358209624,
- 0.21311460062136844,
- 0.7682289430223082,
- 1.104168062736729,
- 0.8561252023794567,
- 0.7478094205128083,
- 0.8103131544334501,
- 0.5178192264448811,
- 0.347079763464022,
- 0.42713671044902274,
- 0.6734057396878871,
- 0.9085353581055842,
- 0.16390434996772796,
- 0.16851434678879249,
- 0.5961517306163425,
- 0.9384518773221757,
- 1.1408873288924157,
- 1.0369544327254379,
- 0.6257291336782577,
- 0.2781564730873828,
- 0.5570990171265673,
- 0.4962971064539356,
- 0.6428390852233142,
- 1.6705984100598414,
- 0.8440981033251863,
- 0.3496175381639335,
- 0.6523427135950338,
- 0.8363675918879646,
- 1.2519306870653173,
- 0.9717122332867247,
- 0.4601282819319123,
- 0.5038381581575582,
- 0.43058797989912906,
- 0.407207664847164,
- 0.5566718464583856,
- 0.4834350771043997,
- 0.36739549814586214,
- 0.0986823669452306,
- 0.5362025203434955,
- 0.9145073406655515,
- 0.9694170296036859,
- 0.9589957422940607,
- 0.3222553986815716,
- 0.11040619901626253,
- 0.5154212543129673,
- 0.6142572383429806,
- 0.5147378290068619,
- 0.9202922504136487,
- 0.19226505539094776,
- 0.37373069202416526,
- 0.8657105987604006,
- 1.1007524452822761,
- 1.3672829139155251,
- 1.4727330542970134,
- 0.6935190652618544,
- 0.29237129682376817,
- 0.4443230098643417,
- 0.4275886354899899,
- 0.6920015142003977,
- 0.9754341532966193,
- 0.2500177148245033,
- 0.08320215260342875,
- 0.5009968647392513,
- 0.9189070108091179,
- 1.711928791974761,
- 1.2812614540926732,
- 0.38064112859080623,
- 0.09089248842121742,
- 0.45068854775626477,
- 0.42364448924122977,
- 0.6373228318712792,
- 1.2305768363099325,
- 0.49753954827860136,
- 0.19344695906959364,
- 0.7000851327085185,
- 1.1194067827899055,
- 1.1079119054977464,
- 1.6981933781731897,
- 0.9363262193484587,
- 0.1344508481491609,
- 0.3647033305583461,
- 0.44772490921398256,
- 0.8236462158250738,
- 1.1684091603858422,
- 0.8996709451402057,
- 0.24850336703702197,
- 0.7977530851587737,
- 0.9771132416509446,
- 1.0096336425648373,
- 0.705011690253346,
- 0.3222997972256786,
- 0.12740875878554309,
- 0.42645594831516903,
- 0.5772599687427437,
- 0.765086348175008,
- 0.5006518023617419,
- 0.31970040044950426,
- 0.31195808996242064,
- 0.7975547309980742,
- 1.2269176411864715,
- 1.1143166774930742,
- 1.865026880457077,
- 0.6352108975478812,
- 0.3926130268770706,
- 0.2604043722853189,
- 0.4728593957224165,
- 0.7557938508770612,
- 0.40462895321782544,
- 0.3427835844867458,
- 0.21110982835712871,
- 0.7557289413371902,
- 0.8577088846301949,
- 0.8567935353491609,
- 0.7557531477356203,
- 0.6768488234207065,
- 0.2854047444085008,
- 0.3648128896773175,
- 0.44553520406457603,
- 0.7167753834320023,
- 0.7308267087840676,
- 1.1840475784175803,
- 0.3314539206482266,
- 0.7104226475195056,
- 0.9714670719720389,
- 0.97663530804649,
- 0.9141573539026242,
- 0.9248510594883468,
- 0.4476464593841645,
- 0.5150047488098217,
- 0.5450037279064464,
- 0.5520773621395834,
- 1.293315599247433,
- 0.5438325394850215,
- 0.15232916040969557,
- 0.3838822017875174,
- 0.8232039893661081,
- 1.0712389639944921,
- 1.7367557911217926,
- 0.9038492420874037,
- 0.4078831393277179,
- 0.7821820680430808,
- 0.5946066064422634,
- 0.7414103694938585,
- 1.249926590550323,
- 0.5376368870576381,
- 0.38005904870067486,
- 0.8167244535289903,
- 0.9426365218987274,
- 1.0424680569600366,
- 1.781740780015396,
- 0.9725440520248438,
- 0.15859923700452835,
- 0.3630432849833901,
- 0.5832654211626856,
- 0.7826558021404774,
- 0.6313400522499626,
- 0.5069727654356478,
- 0.21108780650596493,
- 0.5917311499054368
- ],
- "index": [
- "2000-01-15T12:00:00",
- "2000-02-14T00:00:00",
- "2000-03-15T12:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T12:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T12:00:00",
- "2000-08-15T12:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T12:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T12:00:00",
- "2001-01-15T12:00:00",
- "2001-02-14T00:00:00",
- "2001-03-15T12:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T12:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T12:00:00",
- "2001-08-15T12:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T12:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T12:00:00",
- "2002-01-15T12:00:00",
- "2002-02-14T00:00:00",
- "2002-03-15T12:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T12:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T12:00:00",
- "2002-08-15T12:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T12:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T12:00:00",
- "2003-01-15T12:00:00",
- "2003-02-14T00:00:00",
- "2003-03-15T12:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T12:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T12:00:00",
- "2003-08-15T12:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T12:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T12:00:00",
- "2004-01-15T12:00:00",
- "2004-02-14T00:00:00",
- "2004-03-15T12:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T12:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T12:00:00",
- "2004-08-15T12:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T12:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T12:00:00",
- "2005-01-15T12:00:00",
- "2005-02-14T00:00:00",
- "2005-03-15T12:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T12:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T12:00:00",
- "2005-08-15T12:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T12:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T12:00:00",
- "2006-01-15T12:00:00",
- "2006-02-14T00:00:00",
- "2006-03-15T12:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T12:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T12:00:00",
- "2006-08-15T12:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T12:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T12:00:00",
- "2007-01-15T12:00:00",
- "2007-02-14T00:00:00",
- "2007-03-15T12:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T12:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T12:00:00",
- "2007-08-15T12:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T12:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T12:00:00",
- "2008-01-15T12:00:00",
- "2008-02-14T00:00:00",
- "2008-03-15T12:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T12:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T12:00:00",
- "2008-08-15T12:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T12:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T12:00:00",
- "2009-01-15T12:00:00",
- "2009-02-14T00:00:00",
- "2009-03-15T12:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T12:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T12:00:00",
- "2009-08-15T12:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T12:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T12:00:00",
- "2010-01-15T12:00:00",
- "2010-02-14T00:00:00",
- "2010-03-15T12:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T12:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T12:00:00",
- "2010-08-15T12:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T12:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T12:00:00",
- "2011-01-15T12:00:00",
- "2011-02-14T00:00:00",
- "2011-03-15T12:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T12:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T12:00:00",
- "2011-08-15T12:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T12:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T12:00:00",
- "2012-01-15T12:00:00",
- "2012-02-14T00:00:00",
- "2012-03-15T12:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T12:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T12:00:00",
- "2012-08-15T12:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T12:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T12:00:00",
- "2013-01-15T12:00:00",
- "2013-02-14T00:00:00",
- "2013-03-15T12:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T12:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T12:00:00",
- "2013-08-15T12:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T12:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T12:00:00",
- "2014-01-15T12:00:00",
- "2014-02-14T00:00:00",
- "2014-03-15T12:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T12:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T12:00:00",
- "2014-08-15T12:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T12:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "percent",
- "long_name": "Percentage of Entire Grid cell that is Covered by Burnt Vegetation (All Classes)",
- "standard_name": "area_fraction"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "global"
- },
- "values": [
- 0.28102526330314503,
- 0.30357232649016574,
- 0.3053777366356105,
- 0.1849061940784563,
- 0.10443188604874445,
- 0.17570308523160813,
- 0.21511436691516286,
- 0.2698334220110369,
- 0.3630007900982998,
- 0.5678380112470991,
- 0.37671587474495016,
- 0.23702813913753695
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "percent",
- "long_name": "Percentage of Entire Grid cell that is Covered by Burnt Vegetation (All Classes)",
- "standard_name": "area_fraction"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "GFED",
- "region": "tropical"
- },
- "values": [
- 0.971828271271176,
- 1.164977224998804,
- 1.2283381222635736,
- 0.6938873911317776,
- 0.2769615005116088,
- 0.44150107467450106,
- 0.49192371425181664,
- 0.6847865159934028,
- 0.9774032071248384,
- 0.5183419970147818,
- 0.22646096580779526,
- 0.6613405429793202
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "percent",
- "long_name": "Percentage of Entire Grid cell that is Covered by Burnt Vegetation (All Classes)",
- "standard_name": "area_fraction"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "global"
- },
- "values": [
- 0.41360494823786653,
- 0.26380064110552387,
- 0.13919247116855243,
- 0.14507134062497154,
- 0.19850020887329592,
- 0.2835039905875426,
- 0.36699479562805004,
- 0.3103786170476754,
- 0.587509960231974,
- 0.4230931638013744,
- 0.3585608501492753,
- 0.4673407638120689,
- 0.4773014511069835,
- 0.1914372573920273,
- 0.11384700718927548,
- 0.1473322400409352,
- 0.21343426005227284,
- 0.24899785225368753,
- 0.46983838637343134,
- 0.694368821445657,
- 0.48979478098513335,
- 0.3886618365563769,
- 0.4068238378426028,
- 0.5328613926772398,
- 0.41432629534017645,
- 0.22347702213049545,
- 0.10554821838123336,
- 0.1408547655695778,
- 0.2400956374128118,
- 0.2854437300863587,
- 0.45487323011638425,
- 0.5637023237445984,
- 0.45157837252408756,
- 0.39793571386273136,
- 0.42699153420510544,
- 0.6017028762367256,
- 0.41832155845577146,
- 0.1744302681824244,
- 0.1320822305056197,
- 0.15352324119145,
- 0.2809539873807071,
- 0.24958460999899715,
- 0.3673085251365853,
- 0.47809993413948165,
- 0.3359064110431712,
- 0.35905577520919696,
- 0.3238097388860089,
- 0.5398069842227352,
- 0.34384151757213754,
- 0.20729214387940556,
- 0.1442752184330659,
- 0.10881431852016234,
- 0.19932443231558958,
- 0.3480358810490858,
- 0.37699164510528216,
- 0.47214030092310016,
- 0.4637141239198785,
- 0.47752350509522506,
- 0.40251282896970836,
- 0.4775886664561092,
- 0.45323723033964375,
- 0.16744911432339935,
- 0.12572693227173198,
- 0.14132158725089744,
- 0.19869054495526794,
- 0.3109096410524186,
- 0.4704631972940542,
- 0.49087577201250876,
- 0.3868257025872539,
- 0.3053763363617087,
- 0.4260863249792494,
- 0.5066550259838937,
- 0.3101817411578809,
- 0.1281291009157611,
- 0.11709521593896902,
- 0.11664143327077954,
- 0.18925722111500518,
- 0.2904894600222054,
- 0.37117931220479333,
- 0.5275431509249463,
- 0.42271871975583497,
- 0.30791033116029937,
- 0.4669227160923702,
- 0.5259425578095775,
- 0.3985002003293468,
- 0.1929872557550331,
- 0.16644221712352225,
- 0.09829977573768758,
- 0.1822479220055578,
- 0.2728945729843706,
- 0.42615024781684413,
- 0.5409419668052625,
- 0.557555249533348,
- 0.35021178358516886,
- 0.33271045128007154,
- 0.48124187693448356,
- 0.38189767315620526,
- 0.1758613114575891,
- 0.1295915999740637,
- 0.1992540328952802,
- 0.17561526313774972,
- 0.27172375022313405,
- 0.3673168871973787,
- 0.45884321638561915,
- 0.462167553585536,
- 0.3079953989599964,
- 0.3393435840730523,
- 0.4511481015464933,
- 0.2959442477239059,
- 0.14532192855221557,
- 0.12245080272050493,
- 0.16273606854802286,
- 0.1509688892063145,
- 0.2512236653565059,
- 0.3838235402938363,
- 0.445136888518257,
- 0.3795337777163968,
- 0.27995318108917594,
- 0.36448843025695526,
- 0.48113073595247946,
- 0.33331119391610814,
- 0.14654609538301896,
- 0.1411722761951034,
- 0.10346603400274,
- 0.14111887329747802,
- 0.3004196119639361,
- 0.4089676832652916,
- 0.5727061818169366,
- 0.5263788990692067,
- 0.2792035151946333,
- 0.2710957084210678,
- 0.39436773253000795,
- 0.33237876759924606,
- 0.16159781037431636,
- 0.12352240222171844,
- 0.11572161605137246,
- 0.1726036263671657,
- 0.2800167146647915,
- 0.43916739663964616,
- 0.49204613197134034,
- 0.670502061783746,
- 0.43866232473431555,
- 0.31175406598140065,
- 0.419036963454319,
- 0.3755074133321015,
- 0.175209527718966,
- 0.1341934016656214,
- 0.15931999024746546,
- 0.1961599512291673,
- 0.33329768796549863,
- 0.42803827529017935,
- 0.4600717358929835,
- 0.5171170372954813,
- 0.39222215391810195,
- 0.3464210354436338,
- 0.3745179448946721,
- 0.3670646360651228,
- 0.16667088597272764,
- 0.12018515793268492,
- 0.11416870176224342,
- 0.17351657091518619,
- 0.3012287445837041,
- 0.3727909764460312,
- 0.41775084470637974,
- 0.3612829243910611,
- 0.22029182342421266,
- 0.27295858927269745,
- 0.34059967853960055,
- 0.3368006111269652,
- 0.1602082369772314,
- 0.15586176433495466,
- 0.1317948363752444,
- 0.14385056555098175,
- 0.2641612446973659,
- 0.4053071100147094,
- 0.43339377078371055,
- 0.41043836610449236,
- 0.3384326972593489,
- 0.29609245547876095,
- 0.34048784681679145
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T00:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T00:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T00:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T00:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "%",
- "long_name": "GFED4s burned fraction. Note that this INCLUDES an experimental \"small fire\" estimate and is thus different from the Giglio et al. (2013) paper",
- "standard_name": "burned area fraction"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "tropical"
- },
- "values": [
- 1.4037560041534307,
- 0.8805636773349746,
- 0.3864421911320723,
- 0.2570114045633402,
- 0.4195261573038741,
- 0.7424524534510729,
- 0.8882151979480596,
- 0.535514073830612,
- 0.7567994893014118,
- 0.31623503084536553,
- 0.8619244053124722,
- 1.4899218136631611,
- 1.3709095081546685,
- 0.6229243465417619,
- 0.29213707141584866,
- 0.21534620213410044,
- 0.45372332973894175,
- 0.610940362698164,
- 1.0554227186393512,
- 1.4228911748237583,
- 0.8050268251565328,
- 0.43699018698195613,
- 0.9039666074837917,
- 1.6654530734948483,
- 1.3440304339906697,
- 0.7193432036826469,
- 0.24324466136869186,
- 0.2468557497039931,
- 0.4865504461564553,
- 0.6635481258748139,
- 0.8465713300037538,
- 1.055698528146962,
- 0.7057189914736787,
- 0.5544742417839487,
- 0.8561916733084587,
- 1.9900983267298529,
- 1.423941408290239,
- 0.5676643954536947,
- 0.35608934590742586,
- 0.20871286437548553,
- 0.582644155084227,
- 0.6364753047186122,
- 0.8738773498378318,
- 0.9241280955997081,
- 0.5861085258182702,
- 0.6020963957532479,
- 0.7817324166281336,
- 1.878188081244154,
- 1.2253418242027394,
- 0.6856776008569612,
- 0.3633413192516331,
- 0.17663054396579472,
- 0.4916740571736874,
- 0.8174632482267382,
- 0.8592890207201322,
- 0.9033287943760326,
- 0.8378795452169794,
- 0.6647530445690422,
- 0.9047082497654693,
- 1.5773709827961089,
- 1.6456194866929068,
- 0.5162979858842041,
- 0.32050846833699115,
- 0.26118531869135386,
- 0.4214304730366875,
- 0.7312829349391538,
- 1.040370308165115,
- 1.0843720124929026,
- 0.7491855455404485,
- 0.47176506703704957,
- 1.1809615094380783,
- 1.7729685613866928,
- 1.0924676738060546,
- 0.40138996196391497,
- 0.2885975425927787,
- 0.17781040310423435,
- 0.2951280026487742,
- 0.6645313183408607,
- 0.8415785016573581,
- 1.0661381524036053,
- 0.6533739656997386,
- 0.48613331363852585,
- 0.9544199707586033,
- 1.7477894688850115,
- 1.4385482150286186,
- 0.6024150931392318,
- 0.4198081910990575,
- 0.18611868318314487,
- 0.39534752976736626,
- 0.5882829210591302,
- 0.9281676225858146,
- 1.1232351252866337,
- 1.097277667549998,
- 0.5363070593391492,
- 0.7417354704429187,
- 1.6240951914580568,
- 1.3305284564792996,
- 0.5643118735966908,
- 0.30334696942336475,
- 0.17298181684404246,
- 0.3646641048587141,
- 0.6569034325168258,
- 0.835255363112413,
- 0.8850616583469302,
- 0.7261700001514276,
- 0.47265965388780296,
- 0.9102605115227232,
- 1.6023959678939228,
- 1.0465620196143879,
- 0.4410981921921458,
- 0.3261310390180084,
- 0.27573043191699276,
- 0.2971508584058082,
- 0.6491085120944554,
- 0.9850274102874008,
- 0.8461331951785149,
- 0.6691747296888697,
- 0.48280662735663926,
- 0.8656419151615307,
- 1.651596885287903,
- 1.1851893754736018,
- 0.4492467498306994,
- 0.3645437604562553,
- 0.17820535747885616,
- 0.33400582764300135,
- 0.6916641331447533,
- 0.9695671977327879,
- 1.2594878245397008,
- 1.0569430796228854,
- 0.36280619042842294,
- 0.5597267060134312,
- 1.382997611123305,
- 1.1856157937923106,
- 0.5236253497002682,
- 0.3180573621366149,
- 0.17211707778231314,
- 0.3419231256657018,
- 0.6268548616449076,
- 0.9481675226410313,
- 0.8823692769423527,
- 0.8252053472335852,
- 0.33821825167738945,
- 0.7070998809035772,
- 1.4140996017459453,
- 1.2566954569753572,
- 0.5081109214418665,
- 0.3543163751642647,
- 0.21907560755054228,
- 0.3876775765404019,
- 0.7301964372938587,
- 0.9165947870535289,
- 0.866102369947868,
- 0.8742630174512863,
- 0.4363091812260983,
- 0.634451686212779,
- 1.2314060084889946,
- 1.2506311327892368,
- 0.5386652158512787,
- 0.3197139350540313,
- 0.23508796226359707,
- 0.3672085091141778,
- 0.7458457685101575,
- 0.9040940695337195,
- 0.8313310720095948,
- 0.6833886504513038,
- 0.30394744342073815,
- 0.6381910544124383,
- 1.1827762917922937,
- 1.1412313875620939,
- 0.5328208253827501,
- 0.3772599546189897,
- 0.1746191398320176,
- 0.32508286770235123,
- 0.6849306160768833,
- 0.9053349133509137,
- 0.7688724911213302,
- 0.753053995244787,
- 0.5435467341754647,
- 0.6539349024962876,
- 1.1980026602313336
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T00:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T00:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T00:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T00:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "%",
- "long_name": "GFED4s burned fraction. Note that this INCLUDES an experimental \"small fire\" estimate and is thus different from the Giglio et al. (2013) paper",
- "standard_name": "burned area fraction"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "global"
- },
- "values": [
- 0.37681463236396406,
- 0.1786945733413412,
- 0.1314124610704414,
- 0.13588799880592198,
- 0.19042253025430508,
- 0.2861287438326392,
- 0.4072807472548321,
- 0.4905333104745621,
- 0.46820159603510636,
- 0.3511019693474584,
- 0.356438143422131,
- 0.4622952765244792
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "%",
- "long_name": "GFED4s burned fraction. Note that this INCLUDES an experimental \"small fire\" estimate and is thus different from the Giglio et al. (2013) paper",
- "standard_name": "burned area fraction"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "tropical"
- },
- "values": [
- 1.2894045451337075,
- 0.5702770261902054,
- 0.33556921246506877,
- 0.2104992375593206,
- 0.39758246805601166,
- 0.6826986953726922,
- 0.9198355542179492,
- 0.963644256336434,
- 0.7853046250400822,
- 0.46726989480805714,
- 0.8103297973240464,
- 1.5606107017481041
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "%",
- "long_name": "GFED4s burned fraction. Note that this INCLUDES an experimental \"small fire\" estimate and is thus different from the Giglio et al. (2013) paper",
- "standard_name": "burned area fraction"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png
deleted file mode 100644
index 9e62e42..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png
deleted file mode 100644
index 9497b6b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png
deleted file mode 100644
index 0e042e5..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png
deleted file mode 100644
index 9e62e42..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png
deleted file mode 100644
index 9497b6b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png
deleted file mode 100644
index bb0eaeb..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/None_global_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/None_global_taylor.png
deleted file mode 100644
index a26cd8a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/None_global_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/Reference_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/Reference_global_mean.png
deleted file mode 100644
index 00769f8..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/Reference_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/Reference_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/Reference_tropical_mean.png
deleted file mode 100644
index 00769f8..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/Reference_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/diagnostic.json
deleted file mode 100644
index 1a4eaa1..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/diagnostic.json
+++ /dev/null
@@ -1,104 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "global": {
- "LongName": "Global - Land",
- "Description": "Global - Land",
- "Generator": "GlobalLand.nc"
- },
- "tropical": {
- "LongName": "Tropical climates",
- "Description": "Tropical climates",
- "Generator": "Koppen_coarse.nc"
- }
- },
- "metric": {
- "Bias": {},
- "Spatial Distribution": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "kg m-2"
- },
- "Bias": {
- "type": "scalar",
- "units": "kg m-2"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "global": {
- "Bias": {
- "Bias": null,
- "Bias Score": null,
- "Period Mean": 5.591810098528851
- },
- "Spatial Distribution": {
- "Correlation": null,
- "Normalized Standard Deviation": null,
- "Spatial Distribution Score": null
- }
- },
- "tropical": {
- "Bias": {
- "Bias": null,
- "Bias Score": null,
- "Period Mean": 3.9942166888319406
- },
- "Spatial Distribution": {
- "Correlation": null,
- "Normalized Standard Deviation": null,
- "Spatial Distribution Score": null
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/index.html
deleted file mode 100644
index 5001b35..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/index.html
+++ /dev/null
@@ -1,368 +0,0 @@
-
-
-
-
-
-csoil-hwsd2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bias
-
-
-
-
-
-
-
-
-
-
-
-
-
Spatial Distribution
-
-
-
-
-
-
-
-
-
All Models
-
-
- bias
-
- biasscore
-
- mean
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/output.json
deleted file mode 100644
index 31a37ef..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/output.json
+++ /dev/null
@@ -1,160 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "HWSD2",
- "region": "tropical",
- "statistic": "Period Mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "HWSD2",
- "region": "global",
- "statistic": "Bias score"
- }
- },
- "None_tropical_taylor.png": {
- "filename": "None_tropical_taylor.png",
- "long_name": "The Taylor diagram over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "HWSD2",
- "region": "tropical",
- "statistic": "Taylor diagram"
- }
- },
- "None_global_taylor.png": {
- "filename": "None_global_taylor.png",
- "long_name": "The Taylor diagram over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "HWSD2",
- "region": "global",
- "statistic": "Taylor diagram"
- }
- },
- "Reference_tropical_mean.png": {
- "filename": "Reference_tropical_mean.png",
- "long_name": "The period mean for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "HWSD2",
- "region": "global",
- "statistic": "Bias"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "HWSD2",
- "region": "tropical",
- "statistic": "Bias score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "HWSD2",
- "region": "global",
- "statistic": "Period Mean"
- }
- },
- "Reference_global_mean.png": {
- "filename": "Reference_global_mean.png",
- "long_name": "The period mean for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "HWSD2",
- "region": "tropical",
- "statistic": "Bias"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "HWSD2"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png
deleted file mode 100644
index 4c509d0..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png
deleted file mode 100644
index f36980a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png
deleted file mode 100644
index 44927f3..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png
deleted file mode 100644
index bd5a211..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png
deleted file mode 100644
index 6f17ca2..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png
deleted file mode 100644
index 01e9d45..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png
deleted file mode 100644
index fe4267e..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png
deleted file mode 100644
index 74757fc..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png
deleted file mode 100644
index af7999b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png
deleted file mode 100644
index b69ac04..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png
deleted file mode 100644
index fdfccd7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png
deleted file mode 100644
index d7fb8fe..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png
deleted file mode 100644
index 5793d60..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png
deleted file mode 100644
index 16ffa14..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png
deleted file mode 100644
index 29ee1d7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png
deleted file mode 100644
index b45b98d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png
deleted file mode 100644
index 780ad6e..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png
deleted file mode 100644
index 6233130..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png
deleted file mode 100644
index 4d93d82..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png
deleted file mode 100644
index 32e383f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/None_global_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/None_global_taylor.png
deleted file mode 100644
index cca21d0..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/None_global_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/None_tropical_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/None_tropical_taylor.png
deleted file mode 100644
index a26cd8a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/None_tropical_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_global_mean.png
deleted file mode 100644
index 689f98d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_global_tmax.png
deleted file mode 100644
index 711d168..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_tropical_mean.png
deleted file mode 100644
index b9434bf..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_tropical_tmax.png
deleted file mode 100644
index c6e89b7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/Reference_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/diagnostic.json
deleted file mode 100644
index e1429c2..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/diagnostic.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "global": {
- "LongName": "Global - Land",
- "Description": "Global - Land",
- "Generator": "GlobalLand.nc"
- },
- "tropical": {
- "LongName": "Tropical climates",
- "Description": "Tropical climates",
- "Generator": "Koppen_coarse.nc"
- }
- },
- "metric": {
- "Bias": {},
- "RMSE": {},
- "Annual Cycle": {},
- "Spatial Distribution": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "g d-1 m-2"
- },
- "Bias": {
- "type": "scalar",
- "units": "g d-1 m-2"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "RMSE": {
- "type": "scalar",
- "units": "g d-1 m-2"
- },
- "RMSE Score": {
- "type": "score",
- "units": "1"
- },
- "Phase Shift": {
- "type": "scalar",
- "units": "month"
- },
- "Seasonal Cycle Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "global": {
- "Annual Cycle": {
- "Phase Shift": 0.4966887417218543,
- "Seasonal Cycle Score": 0.8443708609271523
- },
- "Bias": {
- "Bias": -1.028983073684895,
- "Bias Score": 0.6050551017406941,
- "Period Mean": 2.2537843525789563
- },
- "RMSE": {
- "RMSE": 2.646171344752598,
- "RMSE Score": 0.4733365242375573
- },
- "Spatial Distribution": {
- "Correlation": 0.4657813090598032,
- "Normalized Standard Deviation": 0.7954249815181031,
- "Spatial Distribution Score": 0.695799902035897
- }
- },
- "tropical": {
- "Annual Cycle": {
- "Phase Shift": 1.25,
- "Seasonal Cycle Score": 0.5416666666666667
- },
- "Bias": {
- "Bias": -3.323554342871441,
- "Bias Score": 0.1344503906317,
- "Period Mean": 2.9924443867926165
- },
- "RMSE": {
- "RMSE": 5.2969987728327625,
- "RMSE Score": 0.3549730360260335
- },
- "Spatial Distribution": {
- "Correlation": -0.1781782415979245,
- "Normalized Standard Deviation": 0.988259346115719,
- "Spatial Distribution Score": 0.410853571122156
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5.csv b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5.csv
new file mode 100644
index 0000000..2c124ba
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5.csv
@@ -0,0 +1,23 @@
+source,region,analysis,name,type,units,value
+Reference,global,Bias,Period Mean [g d-1 m-2],scalar,g d-1 m-2,3.3731508421930387
+ACCESS-ESM1-5,global,Bias,Period Mean [g d-1 m-2],scalar,g d-1 m-2,2.2537843525789563
+ACCESS-ESM1-5,global,Bias,Bias [g d-1 m-2],scalar,g d-1 m-2,-1.0277945602290717
+ACCESS-ESM1-5,global,Bias,Bias Score [1],score,1,0.6051621259700827
+Reference,tropical,Bias,Period Mean [g d-1 m-2],scalar,g d-1 m-2,5.454800323301819
+ACCESS-ESM1-5,tropical,Bias,Period Mean [g d-1 m-2],scalar,g d-1 m-2,2.9924443867926165
+ACCESS-ESM1-5,tropical,Bias,Bias [g d-1 m-2],scalar,g d-1 m-2,-3.323481241281095
+ACCESS-ESM1-5,tropical,Bias,Bias Score [1],score,1,0.13440097269261356
+ACCESS-ESM1-5,global,RMSE,RMSE [g d-1 m-2],scalar,g d-1 m-2,2.6461713447525983
+ACCESS-ESM1-5,global,RMSE,RMSE Score [1],score,1,0.4733365242375573
+ACCESS-ESM1-5,tropical,RMSE,RMSE [g d-1 m-2],scalar,g d-1 m-2,5.296998772832763
+ACCESS-ESM1-5,tropical,RMSE,RMSE Score [1],score,1,0.3549730360260335
+ACCESS-ESM1-5,global,Annual Cycle,Phase Shift [month],scalar,month,0.4966887417218543
+ACCESS-ESM1-5,global,Annual Cycle,Seasonal Cycle Score [1],score,1,0.8443708609271523
+ACCESS-ESM1-5,tropical,Annual Cycle,Phase Shift [month],scalar,month,1.25
+ACCESS-ESM1-5,tropical,Annual Cycle,Seasonal Cycle Score [1],score,1,0.5416666666666667
+ACCESS-ESM1-5,global,Spatial Distribution,Normalized Standard Deviation [1],scalar,1,0.7955370993580726
+ACCESS-ESM1-5,global,Spatial Distribution,Correlation [1],scalar,1,0.465630728061954
+ACCESS-ESM1-5,global,Spatial Distribution,Spatial Distribution Score [1],score,1,0.6957725294026527
+ACCESS-ESM1-5,tropical,Spatial Distribution,Normalized Standard Deviation [1],scalar,1,0.9887332035149045
+ACCESS-ESM1-5,tropical,Spatial Distribution,Correlation [1],scalar,1,-0.1779085955786192
+ACCESS-ESM1-5,tropical,Spatial Distribution,Spatial Distribution Score [1],score,1,0.41099293427857203
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_bias.png
new file mode 100644
index 0000000..6343424
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_bias.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_biasscore.png
new file mode 100644
index 0000000..8af1bcb
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_biasscore.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_cycle.png
new file mode 100644
index 0000000..70b1745
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_cycle.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_cyclescore.png
new file mode 100644
index 0000000..bb96561
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_cyclescore.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_mean.png
new file mode 100644
index 0000000..a7da2f2
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_mean.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_rmse.png
new file mode 100644
index 0000000..6903b6e
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_rmse.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_rmsescore.png
new file mode 100644
index 0000000..d7e161a
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_rmsescore.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_shift.png
new file mode 100644
index 0000000..5d0892e
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_shift.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_tmax.png
new file mode 100644
index 0000000..a6c1aa8
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_tmax.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_trace.png
new file mode 100644
index 0000000..b718d25
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_global_trace.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_bias.png
new file mode 100644
index 0000000..8acfe07
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_bias.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_biasscore.png
new file mode 100644
index 0000000..7de0a9f
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_biasscore.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_cycle.png
new file mode 100644
index 0000000..085ec77
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_cycle.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_cyclescore.png
new file mode 100644
index 0000000..7a1a38b
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_cyclescore.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_mean.png
new file mode 100644
index 0000000..da94c1d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_mean.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_rmse.png
new file mode 100644
index 0000000..98803ed
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_rmse.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_rmsescore.png
new file mode 100644
index 0000000..a54a8c3
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_rmsescore.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_shift.png
new file mode 100644
index 0000000..51b2554
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_shift.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_tmax.png
new file mode 100644
index 0000000..d4dcc8c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_tmax.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_trace.png
new file mode 100644
index 0000000..6206fb9
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/ACCESS-ESM1-5_tropical_trace.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/None_global_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/None_global_taylor.png
similarity index 64%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/None_global_taylor.png
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/None_global_taylor.png
index bf42862..c9febd5 100644
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/None_global_taylor.png and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/None_global_taylor.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/None_tropical_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/None_tropical_taylor.png
similarity index 99%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/None_tropical_taylor.png
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/None_tropical_taylor.png
index a26cd8a..eeabe23 100644
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/None_tropical_taylor.png and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/None_tropical_taylor.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_global_mean.png
new file mode 100644
index 0000000..907ceeb
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_global_mean.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_global_tmax.png
new file mode 100644
index 0000000..bc93d00
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_global_tmax.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_tropical_mean.png
new file mode 100644
index 0000000..bbe77ed
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_tropical_mean.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_tropical_tmax.png
new file mode 100644
index 0000000..21e19ad
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/Reference_tropical_tmax.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/diagnostic.json
new file mode 100644
index 0000000..c5c0702
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/diagnostic.json
@@ -0,0 +1,150 @@
+{
+ "DIMENSIONS": {
+ "experiment_id": {
+ "historical": {}
+ },
+ "grid_label": {
+ "gn": {}
+ },
+ "json_structure": [
+ "kind",
+ "reference_source_id",
+ "experiment_id",
+ "source_id",
+ "member_id",
+ "grid_label",
+ "region",
+ "metric",
+ "statistic"
+ ],
+ "kind": {
+ "model": {}
+ },
+ "member_id": {
+ "r1i1p1f1": {}
+ },
+ "metric": {
+ "Annual Cycle": {},
+ "Bias": {},
+ "RMSE": {},
+ "Spatial Distribution": {}
+ },
+ "reference_source_id": {
+ "FLUXNET2015": {}
+ },
+ "region": {
+ "global": {
+ "Description": "Global - Land",
+ "Generator": "GlobalLand.nc",
+ "LongName": "Global - Land"
+ },
+ "tropical": {
+ "Description": "Tropical climates",
+ "Generator": "Koppen_coarse.nc",
+ "LongName": "Tropical climates"
+ }
+ },
+ "source_id": {
+ "ACCESS-ESM1-5": {}
+ },
+ "statistic": {
+ "Bias": {
+ "type": "scalar",
+ "units": "g d-1 m-2"
+ },
+ "Bias Score": {
+ "type": "score",
+ "units": "1"
+ },
+ "Correlation": {
+ "type": "scalar",
+ "units": "1"
+ },
+ "Normalized Standard Deviation": {
+ "type": "scalar",
+ "units": "1"
+ },
+ "Period Mean": {
+ "type": "scalar",
+ "units": "g d-1 m-2"
+ },
+ "Phase Shift": {
+ "type": "scalar",
+ "units": "month"
+ },
+ "RMSE": {
+ "type": "scalar",
+ "units": "g d-1 m-2"
+ },
+ "RMSE Score": {
+ "type": "score",
+ "units": "1"
+ },
+ "Seasonal Cycle Score": {
+ "type": "score",
+ "units": "1"
+ },
+ "Spatial Distribution Score": {
+ "type": "score",
+ "units": "1"
+ }
+ }
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": null,
+ "RESULTS": {
+ "model": {
+ "FLUXNET2015": {
+ "historical": {
+ "ACCESS-ESM1-5": {
+ "r1i1p1f1": {
+ "gn": {
+ "global": {
+ "Annual Cycle": {
+ "Phase Shift": 0.4966887417218543,
+ "Seasonal Cycle Score": 0.8443708609271523
+ },
+ "Bias": {
+ "Bias": -1.0277945602290717,
+ "Bias Score": 0.6051621259700827,
+ "Period Mean": 2.2537843525789563
+ },
+ "RMSE": {
+ "RMSE": 2.6461713447525983,
+ "RMSE Score": 0.4733365242375573
+ },
+ "Spatial Distribution": {
+ "Correlation": 0.465630728061954,
+ "Normalized Standard Deviation": 0.7955370993580726,
+ "Spatial Distribution Score": 0.6957725294026527
+ }
+ },
+ "tropical": {
+ "Annual Cycle": {
+ "Phase Shift": 1.25,
+ "Seasonal Cycle Score": 0.5416666666666667
+ },
+ "Bias": {
+ "Bias": -3.323481241281095,
+ "Bias Score": 0.1344009726926135,
+ "Period Mean": 2.9924443867926165
+ },
+ "RMSE": {
+ "RMSE": 5.296998772832763,
+ "RMSE Score": 0.3549730360260335
+ },
+ "Spatial Distribution": {
+ "Correlation": -0.1779085955786192,
+ "Normalized Standard Deviation": 0.9887332035149043,
+ "Spatial Distribution Score": 0.410992934278572
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/index.html
similarity index 71%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/index.html
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/index.html
index 163bfcf..f044e56 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/index.html
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/index.html
@@ -6,7 +6,8 @@
gpp-fluxnet2015
-
+
+
-
@@ -239,6 +245,17 @@
+
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/output.json
similarity index 67%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/output.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/output.json
index aa4c29d..e0b0a17 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/output.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/output.json
@@ -6,11 +6,30 @@
"obsdata": {},
"log": "cmec_output.log"
},
- "data": {},
+ "data": {
+ "ACCESS-ESM1-5.csv": {
+ "filename": "ACCESS-ESM1-5.csv",
+ "long_name": "ACCESS-ESM1-5.csv",
+ "description": "Scalar and time-series data produced by ILAMB.",
+ "dimensions": null
+ },
+ "ACCESS-ESM1-5.nc": {
+ "filename": "ACCESS-ESM1-5.nc",
+ "long_name": "ACCESS-ESM1-5.nc",
+ "description": "Scalar and time-series data produced by ILAMB.",
+ "dimensions": null
+ },
+ "Reference.nc": {
+ "filename": "Reference.nc",
+ "long_name": "Reference.nc",
+ "description": "Scalar and time-series data produced by ILAMB.",
+ "dimensions": null
+ }
+ },
"plots": {
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "ACCESS-ESM1-5_global_bias.png": {
+ "filename": "ACCESS-ESM1-5_global_bias.png",
+ "long_name": "The bias for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -18,13 +37,13 @@
"member_id": "r1i1p1f1",
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
- "region": "tropical",
- "statistic": "RMSE"
+ "region": "global",
+ "statistic": "Bias"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "ACCESS-ESM1-5_global_biasscore.png": {
+ "filename": "ACCESS-ESM1-5_global_biasscore.png",
+ "long_name": "The bias score for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -32,13 +51,13 @@
"member_id": "r1i1p1f1",
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
- "region": "tropical",
- "statistic": "Period Mean"
+ "region": "global",
+ "statistic": "Bias score"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "ACCESS-ESM1-5_global_cycle.png": {
+ "filename": "ACCESS-ESM1-5_global_cycle.png",
+ "long_name": "The annual cycle for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -47,12 +66,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "global",
- "statistic": "Bias score"
+ "statistic": "Annual cycle"
}
},
- "None_tropical_taylor.png": {
- "filename": "None_tropical_taylor.png",
- "long_name": "The Taylor diagram over the Tropical climates region.",
+ "ACCESS-ESM1-5_global_cyclescore.png": {
+ "filename": "ACCESS-ESM1-5_global_cyclescore.png",
+ "long_name": "The annual cycle score for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -60,13 +79,13 @@
"member_id": "r1i1p1f1",
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
- "region": "tropical",
- "statistic": "Taylor diagram"
+ "region": "global",
+ "statistic": "Annual cycle score"
}
},
- "None_global_taylor.png": {
- "filename": "None_global_taylor.png",
- "long_name": "The Taylor diagram over the Global - Land region.",
+ "ACCESS-ESM1-5_global_mean.png": {
+ "filename": "ACCESS-ESM1-5_global_mean.png",
+ "long_name": "The period mean for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -75,32 +94,26 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "global",
- "statistic": "Taylor diagram"
- }
- },
- "Reference_tropical_mean.png": {
- "filename": "Reference_tropical_mean.png",
- "long_name": "The period mean for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Period Mean",
- "source_id": "Reference"
+ "statistic": "Period Mean"
}
},
- "Reference_global_tmax.png": {
- "filename": "Reference_global_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Global - Land region.",
+ "ACCESS-ESM1-5_global_rmse.png": {
+ "filename": "ACCESS-ESM1-5_global_rmse.png",
+ "long_name": "The RMSE for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
+ "experiment_id": "historical",
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "source_id": "ACCESS-ESM1-5",
+ "reference_source_id": "FLUXNET2015",
"region": "global",
- "statistic": "Maximum month",
- "source_id": "Reference"
+ "statistic": "RMSE"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "ACCESS-ESM1-5_global_rmsescore.png": {
+ "filename": "ACCESS-ESM1-5_global_rmsescore.png",
+ "long_name": "The RMSE score for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -109,12 +122,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "global",
- "statistic": "Bias"
+ "statistic": "RMSE score"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "ACCESS-ESM1-5_global_shift.png": {
+ "filename": "ACCESS-ESM1-5_global_shift.png",
+ "long_name": "The shift in maximum month for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -123,12 +136,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "global",
- "statistic": "RMSE score"
+ "statistic": "Shift in maximum month"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "ACCESS-ESM1-5_global_tmax.png": {
+ "filename": "ACCESS-ESM1-5_global_tmax.png",
+ "long_name": "The maxmimum month for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -136,13 +149,13 @@
"member_id": "r1i1p1f1",
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
- "region": "tropical",
- "statistic": "Bias score"
+ "region": "global",
+ "statistic": "Maximum month"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "ACCESS-ESM1-5_global_trace.png": {
+ "filename": "ACCESS-ESM1-5_global_trace.png",
+ "long_name": "The regional mean for ACCESS-ESM1-5 over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -151,12 +164,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "global",
- "statistic": "Shift in maximum month"
+ "statistic": "Regional mean"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "ACCESS-ESM1-5_tropical_bias.png": {
+ "filename": "ACCESS-ESM1-5_tropical_bias.png",
+ "long_name": "The bias for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -165,12 +178,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "tropical",
- "statistic": "Shift in maximum month"
+ "statistic": "Bias"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "ACCESS-ESM1-5_tropical_biasscore.png": {
+ "filename": "ACCESS-ESM1-5_tropical_biasscore.png",
+ "long_name": "The bias score for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -178,13 +191,13 @@
"member_id": "r1i1p1f1",
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
- "region": "global",
- "statistic": "RMSE"
+ "region": "tropical",
+ "statistic": "Bias score"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "ACCESS-ESM1-5_tropical_cycle.png": {
+ "filename": "ACCESS-ESM1-5_tropical_cycle.png",
+ "long_name": "The annual cycle for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -193,12 +206,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "tropical",
- "statistic": "Regional mean"
+ "statistic": "Annual cycle"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "ACCESS-ESM1-5_tropical_cyclescore.png": {
+ "filename": "ACCESS-ESM1-5_tropical_cyclescore.png",
+ "long_name": "The annual cycle score for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -206,13 +219,13 @@
"member_id": "r1i1p1f1",
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
- "region": "global",
+ "region": "tropical",
"statistic": "Annual cycle score"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "ACCESS-ESM1-5_tropical_mean.png": {
+ "filename": "ACCESS-ESM1-5_tropical_mean.png",
+ "long_name": "The period mean for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -220,13 +233,13 @@
"member_id": "r1i1p1f1",
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
- "region": "global",
+ "region": "tropical",
"statistic": "Period Mean"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "ACCESS-ESM1-5_tropical_rmse.png": {
+ "filename": "ACCESS-ESM1-5_tropical_rmse.png",
+ "long_name": "The RMSE for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -234,23 +247,13 @@
"member_id": "r1i1p1f1",
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
- "region": "global",
- "statistic": "Maximum month"
- }
- },
- "Reference_global_mean.png": {
- "filename": "Reference_global_mean.png",
- "long_name": "The period mean for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Period Mean",
- "source_id": "Reference"
+ "region": "tropical",
+ "statistic": "RMSE"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "ACCESS-ESM1-5_tropical_rmsescore.png": {
+ "filename": "ACCESS-ESM1-5_tropical_rmsescore.png",
+ "long_name": "The RMSE score for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -259,12 +262,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "tropical",
- "statistic": "Annual cycle"
+ "statistic": "RMSE score"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "ACCESS-ESM1-5_tropical_shift.png": {
+ "filename": "ACCESS-ESM1-5_tropical_shift.png",
+ "long_name": "The shift in maximum month for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -273,12 +276,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "tropical",
- "statistic": "RMSE score"
+ "statistic": "Shift in maximum month"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "ACCESS-ESM1-5_tropical_tmax.png": {
+ "filename": "ACCESS-ESM1-5_tropical_tmax.png",
+ "long_name": "The maxmimum month for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -287,12 +290,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "tropical",
- "statistic": "Bias"
+ "statistic": "Maximum month"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "ACCESS-ESM1-5_tropical_trace.png": {
+ "filename": "ACCESS-ESM1-5_tropical_trace.png",
+ "long_name": "The regional mean for ACCESS-ESM1-5 over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -300,23 +303,13 @@
"member_id": "r1i1p1f1",
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
- "region": "global",
- "statistic": "Regional mean"
- }
- },
- "Reference_tropical_tmax.png": {
- "filename": "Reference_tropical_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
"region": "tropical",
- "statistic": "Maximum month",
- "source_id": "Reference"
+ "statistic": "Regional mean"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
+ "None_global_taylor.png": {
+ "filename": "None_global_taylor.png",
+ "long_name": "The Taylor diagram over the Global - Land region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -325,12 +318,12 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "global",
- "statistic": "Annual cycle"
+ "statistic": "Taylor diagram"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "None_tropical_taylor.png": {
+ "filename": "None_tropical_taylor.png",
+ "long_name": "The Taylor diagram over the Tropical climates region.",
"description": "",
"dimensions": {
"experiment_id": "historical",
@@ -339,21 +332,51 @@
"source_id": "ACCESS-ESM1-5",
"reference_source_id": "FLUXNET2015",
"region": "tropical",
- "statistic": "Annual cycle score"
+ "statistic": "Taylor diagram"
}
},
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
+ "Reference_global_mean.png": {
+ "filename": "Reference_global_mean.png",
+ "long_name": "The period mean for the reference data over the Global - Land region.",
+ "description": "",
+ "dimensions": {
+ "region": "global",
+ "statistic": "Period Mean",
+ "kind": "reference",
+ "reference_source_id": "FLUXNET2015"
+ }
+ },
+ "Reference_global_tmax.png": {
+ "filename": "Reference_global_tmax.png",
+ "long_name": "The maxmimum month for the reference data over the Global - Land region.",
+ "description": "",
+ "dimensions": {
+ "region": "global",
+ "statistic": "Maximum month",
+ "kind": "reference",
+ "reference_source_id": "FLUXNET2015"
+ }
+ },
+ "Reference_tropical_mean.png": {
+ "filename": "Reference_tropical_mean.png",
+ "long_name": "The period mean for the reference data over the Tropical climates region.",
"description": "",
"dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "FLUXNET2015",
"region": "tropical",
- "statistic": "Maximum month"
+ "statistic": "Period Mean",
+ "kind": "reference",
+ "reference_source_id": "FLUXNET2015"
+ }
+ },
+ "Reference_tropical_tmax.png": {
+ "filename": "Reference_tropical_tmax.png",
+ "long_name": "The maxmimum month for the reference data over the Tropical climates region.",
+ "description": "",
+ "dimensions": {
+ "region": "tropical",
+ "statistic": "Maximum month",
+ "kind": "reference",
+ "reference_source_id": "FLUXNET2015"
}
}
},
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/series.json
similarity index 73%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/series.json
index a52fd6c..7e0d00d 100644
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/e2a5786432e4ca6860602bcee6a982137da5e166/series.json
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-fluxnet2015/historical_gn_r1i1p1f1_ACCESS-ESM1-5_g36_v1_dcfcc801/19/series.json
@@ -1,14 +1,300 @@
[
{
+ "attributes": {
+ "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
+ "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon",
+ "units": "g d-1 m-2"
+ },
"dimensions": {
- "metric": "trace",
"experiment_id": "historical",
"grid_label": "gn",
"member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
+ "metric": "cycle",
"reference_source_id": "FLUXNET2015",
- "region": "global"
+ "region": "global",
+ "source_id": "ACCESS-ESM1-5"
+ },
+ "index": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ],
+ "index_name": "month",
+ "value_long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
+ "value_units": "g d-1 m-2",
+ "values": [
+ 0.7562782764434814,
+ 0.8906400799751282,
+ 1.1862406730651855,
+ 1.693781852722168,
+ 2.7940402030944824,
+ 4.017496109008789,
+ 4.364637851715088,
+ 4.011689186096191,
+ 3.2128982543945312,
+ 2.0619513988494873,
+ 1.1691770553588867,
+ 0.8006160855293274
+ ]
+ },
+ {
+ "attributes": {
+ "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
+ "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon",
+ "units": "g d-1 m-2"
},
+ "dimensions": {
+ "experiment_id": "historical",
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "metric": "cycle",
+ "reference_source_id": "FLUXNET2015",
+ "region": "tropical",
+ "source_id": "ACCESS-ESM1-5"
+ },
+ "index": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ],
+ "index_name": "month",
+ "value_long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
+ "value_units": "g d-1 m-2",
+ "values": [
+ 2.8361377716064453,
+ 2.8586585521698,
+ 2.8434672355651855,
+ 2.822570323944092,
+ 2.8023464679718018,
+ 2.8984732627868652,
+ 3.1864376068115234,
+ 3.431185722351074,
+ 3.421318769454956,
+ 3.11175537109375,
+ 2.8536250591278076,
+ 2.832268238067627
+ ]
+ },
+ {
+ "attributes": {
+ "calendar": "proleptic_gregorian",
+ "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
+ "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon",
+ "units": "g d-1 m-2"
+ },
+ "calendar": "proleptic_gregorian",
+ "dimensions": {
+ "experiment_id": "historical",
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "metric": "trace",
+ "reference_source_id": "FLUXNET2015",
+ "region": "global",
+ "source_id": "ACCESS-ESM1-5"
+ },
+ "index": [
+ "2000-01-16T12:00:00",
+ "2000-02-15T12:00:00",
+ "2000-03-16T12:00:00",
+ "2000-04-16T00:00:00",
+ "2000-05-16T12:00:00",
+ "2000-06-16T00:00:00",
+ "2000-07-16T12:00:00",
+ "2000-08-16T12:00:00",
+ "2000-09-16T00:00:00",
+ "2000-10-16T12:00:00",
+ "2000-11-16T00:00:00",
+ "2000-12-16T12:00:00",
+ "2001-01-16T12:00:00",
+ "2001-02-15T00:00:00",
+ "2001-03-16T12:00:00",
+ "2001-04-16T00:00:00",
+ "2001-05-16T12:00:00",
+ "2001-06-16T00:00:00",
+ "2001-07-16T12:00:00",
+ "2001-08-16T12:00:00",
+ "2001-09-16T00:00:00",
+ "2001-10-16T12:00:00",
+ "2001-11-16T00:00:00",
+ "2001-12-16T12:00:00",
+ "2002-01-16T12:00:00",
+ "2002-02-15T00:00:00",
+ "2002-03-16T12:00:00",
+ "2002-04-16T00:00:00",
+ "2002-05-16T12:00:00",
+ "2002-06-16T00:00:00",
+ "2002-07-16T12:00:00",
+ "2002-08-16T12:00:00",
+ "2002-09-16T00:00:00",
+ "2002-10-16T12:00:00",
+ "2002-11-16T00:00:00",
+ "2002-12-16T12:00:00",
+ "2003-01-16T12:00:00",
+ "2003-02-15T00:00:00",
+ "2003-03-16T12:00:00",
+ "2003-04-16T00:00:00",
+ "2003-05-16T12:00:00",
+ "2003-06-16T00:00:00",
+ "2003-07-16T12:00:00",
+ "2003-08-16T12:00:00",
+ "2003-09-16T00:00:00",
+ "2003-10-16T12:00:00",
+ "2003-11-16T00:00:00",
+ "2003-12-16T12:00:00",
+ "2004-01-16T12:00:00",
+ "2004-02-15T12:00:00",
+ "2004-03-16T12:00:00",
+ "2004-04-16T00:00:00",
+ "2004-05-16T12:00:00",
+ "2004-06-16T00:00:00",
+ "2004-07-16T12:00:00",
+ "2004-08-16T12:00:00",
+ "2004-09-16T00:00:00",
+ "2004-10-16T12:00:00",
+ "2004-11-16T00:00:00",
+ "2004-12-16T12:00:00",
+ "2005-01-16T12:00:00",
+ "2005-02-15T00:00:00",
+ "2005-03-16T12:00:00",
+ "2005-04-16T00:00:00",
+ "2005-05-16T12:00:00",
+ "2005-06-16T00:00:00",
+ "2005-07-16T12:00:00",
+ "2005-08-16T12:00:00",
+ "2005-09-16T00:00:00",
+ "2005-10-16T12:00:00",
+ "2005-11-16T00:00:00",
+ "2005-12-16T12:00:00",
+ "2006-01-16T12:00:00",
+ "2006-02-15T00:00:00",
+ "2006-03-16T12:00:00",
+ "2006-04-16T00:00:00",
+ "2006-05-16T12:00:00",
+ "2006-06-16T00:00:00",
+ "2006-07-16T12:00:00",
+ "2006-08-16T12:00:00",
+ "2006-09-16T00:00:00",
+ "2006-10-16T12:00:00",
+ "2006-11-16T00:00:00",
+ "2006-12-16T12:00:00",
+ "2007-01-16T12:00:00",
+ "2007-02-15T00:00:00",
+ "2007-03-16T12:00:00",
+ "2007-04-16T00:00:00",
+ "2007-05-16T12:00:00",
+ "2007-06-16T00:00:00",
+ "2007-07-16T12:00:00",
+ "2007-08-16T12:00:00",
+ "2007-09-16T00:00:00",
+ "2007-10-16T12:00:00",
+ "2007-11-16T00:00:00",
+ "2007-12-16T12:00:00",
+ "2008-01-16T12:00:00",
+ "2008-02-15T12:00:00",
+ "2008-03-16T12:00:00",
+ "2008-04-16T00:00:00",
+ "2008-05-16T12:00:00",
+ "2008-06-16T00:00:00",
+ "2008-07-16T12:00:00",
+ "2008-08-16T12:00:00",
+ "2008-09-16T00:00:00",
+ "2008-10-16T12:00:00",
+ "2008-11-16T00:00:00",
+ "2008-12-16T12:00:00",
+ "2009-01-16T12:00:00",
+ "2009-02-15T00:00:00",
+ "2009-03-16T12:00:00",
+ "2009-04-16T00:00:00",
+ "2009-05-16T12:00:00",
+ "2009-06-16T00:00:00",
+ "2009-07-16T12:00:00",
+ "2009-08-16T12:00:00",
+ "2009-09-16T00:00:00",
+ "2009-10-16T12:00:00",
+ "2009-11-16T00:00:00",
+ "2009-12-16T12:00:00",
+ "2010-01-16T12:00:00",
+ "2010-02-15T00:00:00",
+ "2010-03-16T12:00:00",
+ "2010-04-16T00:00:00",
+ "2010-05-16T12:00:00",
+ "2010-06-16T00:00:00",
+ "2010-07-16T12:00:00",
+ "2010-08-16T12:00:00",
+ "2010-09-16T00:00:00",
+ "2010-10-16T12:00:00",
+ "2010-11-16T00:00:00",
+ "2010-12-16T12:00:00",
+ "2011-01-16T12:00:00",
+ "2011-02-15T00:00:00",
+ "2011-03-16T12:00:00",
+ "2011-04-16T00:00:00",
+ "2011-05-16T12:00:00",
+ "2011-06-16T00:00:00",
+ "2011-07-16T12:00:00",
+ "2011-08-16T12:00:00",
+ "2011-09-16T00:00:00",
+ "2011-10-16T12:00:00",
+ "2011-11-16T00:00:00",
+ "2011-12-16T12:00:00",
+ "2012-01-16T12:00:00",
+ "2012-02-15T12:00:00",
+ "2012-03-16T12:00:00",
+ "2012-04-16T00:00:00",
+ "2012-05-16T12:00:00",
+ "2012-06-16T00:00:00",
+ "2012-07-16T12:00:00",
+ "2012-08-16T12:00:00",
+ "2012-09-16T00:00:00",
+ "2012-10-16T12:00:00",
+ "2012-11-16T00:00:00",
+ "2012-12-16T12:00:00",
+ "2013-01-16T12:00:00",
+ "2013-02-15T00:00:00",
+ "2013-03-16T12:00:00",
+ "2013-04-16T00:00:00",
+ "2013-05-16T12:00:00",
+ "2013-06-16T00:00:00",
+ "2013-07-16T12:00:00",
+ "2013-08-16T12:00:00",
+ "2013-09-16T00:00:00",
+ "2013-10-16T12:00:00",
+ "2013-11-16T00:00:00",
+ "2013-12-16T12:00:00",
+ "2014-01-16T12:00:00",
+ "2014-02-15T00:00:00",
+ "2014-03-16T12:00:00",
+ "2014-04-16T00:00:00",
+ "2014-05-16T12:00:00",
+ "2014-06-16T00:00:00",
+ "2014-07-16T12:00:00",
+ "2014-08-16T12:00:00",
+ "2014-09-16T00:00:00",
+ "2014-10-16T12:00:00",
+ "2014-11-16T00:00:00",
+ "2014-12-16T12:00:00"
+ ],
+ "index_name": "time",
+ "value_long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
+ "value_units": "g d-1 m-2",
"values": [
0.7613800168037415,
0.9123483896255493,
@@ -190,7 +476,25 @@
2.0783557891845703,
1.249525785446167,
0.8092615604400635
- ],
+ ]
+ },
+ {
+ "attributes": {
+ "calendar": "proleptic_gregorian",
+ "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
+ "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon",
+ "units": "g d-1 m-2"
+ },
+ "calendar": "proleptic_gregorian",
+ "dimensions": {
+ "experiment_id": "historical",
+ "grid_label": "gn",
+ "member_id": "r1i1p1f1",
+ "metric": "trace",
+ "reference_source_id": "FLUXNET2015",
+ "region": "tropical",
+ "source_id": "ACCESS-ESM1-5"
+ },
"index": [
"2000-01-16T12:00:00",
"2000-02-15T12:00:00",
@@ -374,22 +678,8 @@
"2014-12-16T12:00:00"
],
"index_name": "time",
- "attributes": {
- "units": "gram / day / meter ** 2",
- "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
- "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon"
- }
- },
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "FLUXNET2015",
- "region": "tropical"
- },
+ "value_long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
+ "value_units": "g d-1 m-2",
"values": [
2.7512149810791016,
2.7627556324005127,
@@ -571,7 +861,109 @@
3.085449695587158,
2.8796658515930176,
2.7932825088500977
+ ]
+ },
+ {
+ "attributes": {
+ "long_name": "cycle_global",
+ "standard_name": "gross_primary_productivity",
+ "units": "g d-1 m-2"
+ },
+ "dimensions": {
+ "metric": "cycle",
+ "reference_source_id": "FLUXNET2015",
+ "region": "global"
+ },
+ "index": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
],
+ "index_name": "month",
+ "kind": "reference",
+ "value_long_name": "cycle_global",
+ "value_units": "g d-1 m-2",
+ "values": [
+ 1.5548303874022928,
+ 1.7326075288014737,
+ 2.1538699694946124,
+ 3.025212145686621,
+ 4.463040493901049,
+ 5.9408773597706395,
+ 6.356389335286754,
+ 5.545538832474824,
+ 4.007039055474791,
+ 2.4781128217912762,
+ 1.6733968065347216,
+ 1.4377118189518037
+ ]
+ },
+ {
+ "attributes": {
+ "long_name": "cycle_tropical",
+ "standard_name": "gross_primary_productivity",
+ "units": "g d-1 m-2"
+ },
+ "dimensions": {
+ "metric": "cycle",
+ "reference_source_id": "FLUXNET2015",
+ "region": "tropical"
+ },
+ "index": [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12
+ ],
+ "index_name": "month",
+ "kind": "reference",
+ "value_long_name": "cycle_tropical",
+ "value_units": "g d-1 m-2",
+ "values": [
+ 6.633535440610871,
+ 6.4082407171452616,
+ 6.003509021962483,
+ 5.243403330411255,
+ 5.091965610240501,
+ 4.895361603258779,
+ 4.736278396909572,
+ 4.6415090073434335,
+ 4.810269843242424,
+ 5.039021803898509,
+ 5.600378847241461,
+ 6.393423976130352
+ ]
+ },
+ {
+ "attributes": {
+ "calendar": "standard",
+ "long_name": "trace_global",
+ "standard_name": "gross_primary_productivity",
+ "units": "g d-1 m-2"
+ },
+ "calendar": "standard",
+ "dimensions": {
+ "metric": "trace",
+ "reference_source_id": "FLUXNET2015",
+ "region": "global"
+ },
"index": [
"2000-01-16T12:00:00",
"2000-02-15T12:00:00",
@@ -755,108 +1147,9 @@
"2014-12-16T12:00:00"
],
"index_name": "time",
- "attributes": {
- "units": "gram / day / meter ** 2",
- "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
- "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "FLUXNET2015",
- "region": "global"
- },
- "values": [
- 0.7562782764434814,
- 0.8906400799751282,
- 1.1862406730651855,
- 1.693781852722168,
- 2.7940402030944824,
- 4.017496109008789,
- 4.364637851715088,
- 4.011689186096191,
- 3.2128982543945312,
- 2.0619513988494873,
- 1.1691770553588867,
- 0.8006160855293274
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "gram / day / meter ** 2",
- "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
- "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "FLUXNET2015",
- "region": "tropical"
- },
- "values": [
- 2.8361377716064453,
- 2.8586585521698,
- 2.8434672355651855,
- 2.822570323944092,
- 2.8023464679718018,
- 2.8984732627868652,
- 3.1864376068115234,
- 3.431185722351074,
- 3.421318769454956,
- 3.11175537109375,
- 2.8536250591278076,
- 2.832268238067627
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "gram / day / meter ** 2",
- "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
- "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "global"
- },
+ "kind": "reference",
+ "value_long_name": "trace_global",
+ "value_units": "g d-1 m-2",
"values": [
1.4682921714285715,
1.846189226857143,
@@ -1038,202 +1331,207 @@
2.9013879120555557,
1.7190748596555552,
1.4964132421111114
- ],
+ ]
+ },
+ {
+ "attributes": {
+ "calendar": "standard",
+ "long_name": "trace_tropical",
+ "standard_name": "gross_primary_productivity",
+ "units": "g d-1 m-2"
+ },
+ "calendar": "standard",
+ "dimensions": {
+ "metric": "trace",
+ "reference_source_id": "FLUXNET2015",
+ "region": "tropical"
+ },
"index": [
- "2000-01-15T00:00:00",
- "2000-02-15T00:00:00",
- "2000-03-15T00:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T00:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T00:00:00",
- "2000-08-15T00:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T00:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T00:00:00",
- "2001-01-15T00:00:00",
+ "2000-01-16T12:00:00",
+ "2000-02-15T12:00:00",
+ "2000-03-16T12:00:00",
+ "2000-04-16T00:00:00",
+ "2000-05-16T12:00:00",
+ "2000-06-16T00:00:00",
+ "2000-07-16T12:00:00",
+ "2000-08-16T12:00:00",
+ "2000-09-16T00:00:00",
+ "2000-10-16T12:00:00",
+ "2000-11-16T00:00:00",
+ "2000-12-16T12:00:00",
+ "2001-01-16T12:00:00",
"2001-02-15T00:00:00",
- "2001-03-15T00:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T00:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T00:00:00",
- "2001-08-15T00:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T00:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T00:00:00",
- "2002-01-15T00:00:00",
+ "2001-03-16T12:00:00",
+ "2001-04-16T00:00:00",
+ "2001-05-16T12:00:00",
+ "2001-06-16T00:00:00",
+ "2001-07-16T12:00:00",
+ "2001-08-16T12:00:00",
+ "2001-09-16T00:00:00",
+ "2001-10-16T12:00:00",
+ "2001-11-16T00:00:00",
+ "2001-12-16T12:00:00",
+ "2002-01-16T12:00:00",
"2002-02-15T00:00:00",
- "2002-03-15T00:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T00:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T00:00:00",
- "2002-08-15T00:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T00:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T00:00:00",
- "2003-01-15T00:00:00",
+ "2002-03-16T12:00:00",
+ "2002-04-16T00:00:00",
+ "2002-05-16T12:00:00",
+ "2002-06-16T00:00:00",
+ "2002-07-16T12:00:00",
+ "2002-08-16T12:00:00",
+ "2002-09-16T00:00:00",
+ "2002-10-16T12:00:00",
+ "2002-11-16T00:00:00",
+ "2002-12-16T12:00:00",
+ "2003-01-16T12:00:00",
"2003-02-15T00:00:00",
- "2003-03-15T00:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T00:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T00:00:00",
- "2003-08-15T00:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T00:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T00:00:00",
- "2004-01-15T00:00:00",
- "2004-02-15T00:00:00",
- "2004-03-15T00:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T00:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T00:00:00",
- "2004-08-15T00:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T00:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T00:00:00",
- "2005-01-15T00:00:00",
+ "2003-03-16T12:00:00",
+ "2003-04-16T00:00:00",
+ "2003-05-16T12:00:00",
+ "2003-06-16T00:00:00",
+ "2003-07-16T12:00:00",
+ "2003-08-16T12:00:00",
+ "2003-09-16T00:00:00",
+ "2003-10-16T12:00:00",
+ "2003-11-16T00:00:00",
+ "2003-12-16T12:00:00",
+ "2004-01-16T12:00:00",
+ "2004-02-15T12:00:00",
+ "2004-03-16T12:00:00",
+ "2004-04-16T00:00:00",
+ "2004-05-16T12:00:00",
+ "2004-06-16T00:00:00",
+ "2004-07-16T12:00:00",
+ "2004-08-16T12:00:00",
+ "2004-09-16T00:00:00",
+ "2004-10-16T12:00:00",
+ "2004-11-16T00:00:00",
+ "2004-12-16T12:00:00",
+ "2005-01-16T12:00:00",
"2005-02-15T00:00:00",
- "2005-03-15T00:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T00:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T00:00:00",
- "2005-08-15T00:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T00:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T00:00:00",
- "2006-01-15T00:00:00",
+ "2005-03-16T12:00:00",
+ "2005-04-16T00:00:00",
+ "2005-05-16T12:00:00",
+ "2005-06-16T00:00:00",
+ "2005-07-16T12:00:00",
+ "2005-08-16T12:00:00",
+ "2005-09-16T00:00:00",
+ "2005-10-16T12:00:00",
+ "2005-11-16T00:00:00",
+ "2005-12-16T12:00:00",
+ "2006-01-16T12:00:00",
"2006-02-15T00:00:00",
- "2006-03-15T00:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T00:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T00:00:00",
- "2006-08-15T00:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T00:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T00:00:00",
- "2007-01-15T00:00:00",
+ "2006-03-16T12:00:00",
+ "2006-04-16T00:00:00",
+ "2006-05-16T12:00:00",
+ "2006-06-16T00:00:00",
+ "2006-07-16T12:00:00",
+ "2006-08-16T12:00:00",
+ "2006-09-16T00:00:00",
+ "2006-10-16T12:00:00",
+ "2006-11-16T00:00:00",
+ "2006-12-16T12:00:00",
+ "2007-01-16T12:00:00",
"2007-02-15T00:00:00",
- "2007-03-15T00:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T00:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T00:00:00",
- "2007-08-15T00:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T00:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T00:00:00",
- "2008-01-15T00:00:00",
- "2008-02-15T00:00:00",
- "2008-03-15T00:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T00:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T00:00:00",
- "2008-08-15T00:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T00:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T00:00:00",
- "2009-01-15T00:00:00",
+ "2007-03-16T12:00:00",
+ "2007-04-16T00:00:00",
+ "2007-05-16T12:00:00",
+ "2007-06-16T00:00:00",
+ "2007-07-16T12:00:00",
+ "2007-08-16T12:00:00",
+ "2007-09-16T00:00:00",
+ "2007-10-16T12:00:00",
+ "2007-11-16T00:00:00",
+ "2007-12-16T12:00:00",
+ "2008-01-16T12:00:00",
+ "2008-02-15T12:00:00",
+ "2008-03-16T12:00:00",
+ "2008-04-16T00:00:00",
+ "2008-05-16T12:00:00",
+ "2008-06-16T00:00:00",
+ "2008-07-16T12:00:00",
+ "2008-08-16T12:00:00",
+ "2008-09-16T00:00:00",
+ "2008-10-16T12:00:00",
+ "2008-11-16T00:00:00",
+ "2008-12-16T12:00:00",
+ "2009-01-16T12:00:00",
"2009-02-15T00:00:00",
- "2009-03-15T00:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T00:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T00:00:00",
- "2009-08-15T00:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T00:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T00:00:00",
- "2010-01-15T00:00:00",
+ "2009-03-16T12:00:00",
+ "2009-04-16T00:00:00",
+ "2009-05-16T12:00:00",
+ "2009-06-16T00:00:00",
+ "2009-07-16T12:00:00",
+ "2009-08-16T12:00:00",
+ "2009-09-16T00:00:00",
+ "2009-10-16T12:00:00",
+ "2009-11-16T00:00:00",
+ "2009-12-16T12:00:00",
+ "2010-01-16T12:00:00",
"2010-02-15T00:00:00",
- "2010-03-15T00:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T00:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T00:00:00",
- "2010-08-15T00:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T00:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T00:00:00",
- "2011-01-15T00:00:00",
+ "2010-03-16T12:00:00",
+ "2010-04-16T00:00:00",
+ "2010-05-16T12:00:00",
+ "2010-06-16T00:00:00",
+ "2010-07-16T12:00:00",
+ "2010-08-16T12:00:00",
+ "2010-09-16T00:00:00",
+ "2010-10-16T12:00:00",
+ "2010-11-16T00:00:00",
+ "2010-12-16T12:00:00",
+ "2011-01-16T12:00:00",
"2011-02-15T00:00:00",
- "2011-03-15T00:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T00:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T00:00:00",
- "2011-08-15T00:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T00:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T00:00:00",
- "2012-01-15T00:00:00",
- "2012-02-15T00:00:00",
- "2012-03-15T00:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T00:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T00:00:00",
- "2012-08-15T00:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T00:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T00:00:00",
- "2013-01-15T00:00:00",
+ "2011-03-16T12:00:00",
+ "2011-04-16T00:00:00",
+ "2011-05-16T12:00:00",
+ "2011-06-16T00:00:00",
+ "2011-07-16T12:00:00",
+ "2011-08-16T12:00:00",
+ "2011-09-16T00:00:00",
+ "2011-10-16T12:00:00",
+ "2011-11-16T00:00:00",
+ "2011-12-16T12:00:00",
+ "2012-01-16T12:00:00",
+ "2012-02-15T12:00:00",
+ "2012-03-16T12:00:00",
+ "2012-04-16T00:00:00",
+ "2012-05-16T12:00:00",
+ "2012-06-16T00:00:00",
+ "2012-07-16T12:00:00",
+ "2012-08-16T12:00:00",
+ "2012-09-16T00:00:00",
+ "2012-10-16T12:00:00",
+ "2012-11-16T00:00:00",
+ "2012-12-16T12:00:00",
+ "2013-01-16T12:00:00",
"2013-02-15T00:00:00",
- "2013-03-15T00:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T00:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T00:00:00",
- "2013-08-15T00:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T00:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T00:00:00",
- "2014-01-15T00:00:00",
+ "2013-03-16T12:00:00",
+ "2013-04-16T00:00:00",
+ "2013-05-16T12:00:00",
+ "2013-06-16T00:00:00",
+ "2013-07-16T12:00:00",
+ "2013-08-16T12:00:00",
+ "2013-09-16T00:00:00",
+ "2013-10-16T12:00:00",
+ "2013-11-16T00:00:00",
+ "2013-12-16T12:00:00",
+ "2014-01-16T12:00:00",
"2014-02-15T00:00:00",
- "2014-03-15T00:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T00:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T00:00:00",
- "2014-08-15T00:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T00:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T00:00:00"
+ "2014-03-16T12:00:00",
+ "2014-04-16T00:00:00",
+ "2014-05-16T12:00:00",
+ "2014-06-16T00:00:00",
+ "2014-07-16T12:00:00",
+ "2014-08-16T12:00:00",
+ "2014-09-16T00:00:00",
+ "2014-10-16T12:00:00",
+ "2014-11-16T00:00:00",
+ "2014-12-16T12:00:00"
],
"index_name": "time",
- "attributes": {
- "units": "g m-2 d-1",
- "long_name": "trace_global",
- "standard_name": "gross_primary_productivity"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "tropical"
- },
+ "kind": "reference",
+ "value_long_name": "trace_tropical",
+ "value_units": "g d-1 m-2",
"values": [
7.356135,
7.197035,
@@ -1415,276 +1713,6 @@
4.2731061,
5.1630389999999995,
6.886174
- ],
- "index": [
- "2000-01-15T00:00:00",
- "2000-02-15T00:00:00",
- "2000-03-15T00:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T00:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T00:00:00",
- "2000-08-15T00:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T00:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T00:00:00",
- "2001-01-15T00:00:00",
- "2001-02-15T00:00:00",
- "2001-03-15T00:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T00:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T00:00:00",
- "2001-08-15T00:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T00:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T00:00:00",
- "2002-01-15T00:00:00",
- "2002-02-15T00:00:00",
- "2002-03-15T00:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T00:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T00:00:00",
- "2002-08-15T00:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T00:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T00:00:00",
- "2003-01-15T00:00:00",
- "2003-02-15T00:00:00",
- "2003-03-15T00:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T00:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T00:00:00",
- "2003-08-15T00:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T00:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T00:00:00",
- "2004-01-15T00:00:00",
- "2004-02-15T00:00:00",
- "2004-03-15T00:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T00:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T00:00:00",
- "2004-08-15T00:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T00:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T00:00:00",
- "2005-01-15T00:00:00",
- "2005-02-15T00:00:00",
- "2005-03-15T00:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T00:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T00:00:00",
- "2005-08-15T00:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T00:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T00:00:00",
- "2006-01-15T00:00:00",
- "2006-02-15T00:00:00",
- "2006-03-15T00:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T00:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T00:00:00",
- "2006-08-15T00:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T00:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T00:00:00",
- "2007-01-15T00:00:00",
- "2007-02-15T00:00:00",
- "2007-03-15T00:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T00:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T00:00:00",
- "2007-08-15T00:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T00:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T00:00:00",
- "2008-01-15T00:00:00",
- "2008-02-15T00:00:00",
- "2008-03-15T00:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T00:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T00:00:00",
- "2008-08-15T00:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T00:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T00:00:00",
- "2009-01-15T00:00:00",
- "2009-02-15T00:00:00",
- "2009-03-15T00:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T00:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T00:00:00",
- "2009-08-15T00:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T00:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T00:00:00",
- "2010-01-15T00:00:00",
- "2010-02-15T00:00:00",
- "2010-03-15T00:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T00:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T00:00:00",
- "2010-08-15T00:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T00:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T00:00:00",
- "2011-01-15T00:00:00",
- "2011-02-15T00:00:00",
- "2011-03-15T00:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T00:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T00:00:00",
- "2011-08-15T00:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T00:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T00:00:00",
- "2012-01-15T00:00:00",
- "2012-02-15T00:00:00",
- "2012-03-15T00:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T00:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T00:00:00",
- "2012-08-15T00:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T00:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T00:00:00",
- "2013-01-15T00:00:00",
- "2013-02-15T00:00:00",
- "2013-03-15T00:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T00:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T00:00:00",
- "2013-08-15T00:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T00:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T00:00:00",
- "2014-01-15T00:00:00",
- "2014-02-15T00:00:00",
- "2014-03-15T00:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T00:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T00:00:00",
- "2014-08-15T00:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T00:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T00:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "g m-2 d-1",
- "long_name": "trace_tropical",
- "standard_name": "gross_primary_productivity"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "global"
- },
- "values": [
- 1.5548303874022928,
- 1.7326075288014737,
- 2.1538699694946124,
- 3.025212145686621,
- 4.463040493901049,
- 5.9408773597706395,
- 6.356389335286754,
- 5.545538832474824,
- 4.007039055474791,
- 2.4781128217912762,
- 1.6733968065347216,
- 1.4377118189518037
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "g m-2 d-1",
- "long_name": "cycle_global",
- "standard_name": "gross_primary_productivity"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "tropical"
- },
- "values": [
- 6.633535440610871,
- 6.4082407171452616,
- 6.003509021962483,
- 5.243403330411255,
- 5.091965610240501,
- 4.895361603258779,
- 4.736278396909572,
- 4.6415090073434335,
- 4.810269843242424,
- 5.039021803898509,
- 5.600378847241461,
- 6.393423976130352
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "g m-2 d-1",
- "long_name": "cycle_tropical",
- "standard_name": "gross_primary_productivity"
- }
+ ]
}
]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png
deleted file mode 100644
index b3ede57..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png
deleted file mode 100644
index b4067f1..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png
deleted file mode 100644
index 7425b64..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png
deleted file mode 100644
index 5d73a8a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-pr.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-pr.png
deleted file mode 100644
index f61a613..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-pr.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-tas.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-tas.png
deleted file mode 100644
index 020fa16..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-tas.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png
deleted file mode 100644
index a8b618a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_response-pr.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_response-pr.png
deleted file mode 100644
index dc3c222..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_response-pr.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_response-tas.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_response-tas.png
deleted file mode 100644
index 96563c4..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_response-tas.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png
deleted file mode 100644
index 861c246..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png
deleted file mode 100644
index b5db4ea..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png
deleted file mode 100644
index 6bad21b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png
deleted file mode 100644
index 7ba1cf7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png
deleted file mode 100644
index a328a11..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png
deleted file mode 100644
index 1c5061e..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png
deleted file mode 100644
index 11b22b1..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png
deleted file mode 100644
index b53ea01..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png
deleted file mode 100644
index bf3976f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-pr.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-pr.png
deleted file mode 100644
index e50f5b9..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-pr.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-tas.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-tas.png
deleted file mode 100644
index bb9a6ce..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-tas.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png
deleted file mode 100644
index f6a2d51..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-pr.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-pr.png
deleted file mode 100644
index 7ea4021..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-pr.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-tas.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-tas.png
deleted file mode 100644
index b52beea..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-tas.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png
deleted file mode 100644
index d6acd47..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png
deleted file mode 100644
index 8cb5722..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png
deleted file mode 100644
index 5eddc1f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png
deleted file mode 100644
index 20d4949..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png
deleted file mode 100644
index d5429ef..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/None_global_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/None_global_taylor.png
deleted file mode 100644
index 2df9cb7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/None_global_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/None_tropical_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/None_tropical_taylor.png
deleted file mode 100644
index 9dff83c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/None_tropical_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_distribution-pr.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_distribution-pr.png
deleted file mode 100644
index e28e598..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_distribution-pr.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_distribution-tas.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_distribution-tas.png
deleted file mode 100644
index 5e2df3a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_distribution-tas.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_mean.png
deleted file mode 100644
index 329b2f7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_tmax.png
deleted file mode 100644
index 31b5a17..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_distribution-pr.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_distribution-pr.png
deleted file mode 100644
index 971dfe1..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_distribution-pr.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_distribution-tas.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_distribution-tas.png
deleted file mode 100644
index dbc2813..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_distribution-tas.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_mean.png
deleted file mode 100644
index f3b7606..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_tmax.png
deleted file mode 100644
index 912c407..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/Reference_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/diagnostic.json
deleted file mode 100644
index 72f1a45..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/diagnostic.json
+++ /dev/null
@@ -1,160 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "global": {
- "LongName": "Global - Land",
- "Description": "Global - Land",
- "Generator": "GlobalLand.nc"
- },
- "tropical": {
- "LongName": "Tropical climates",
- "Description": "Tropical climates",
- "Generator": "Koppen_coarse.nc"
- }
- },
- "metric": {
- "Bias": {},
- "RMSE": {},
- "Annual Cycle": {},
- "Spatial Distribution": {},
- "Relationship pr": {},
- "Relationship tas": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "g d-1 m-2"
- },
- "Bias": {
- "type": "scalar",
- "units": "g d-1 m-2"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "RMSE": {
- "type": "scalar",
- "units": "g d-1 m-2"
- },
- "RMSE Score": {
- "type": "score",
- "units": "1"
- },
- "Phase Shift": {
- "type": "scalar",
- "units": "month"
- },
- "Seasonal Cycle Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- },
- "Relationship Score pr": {
- "type": "score",
- "units": "1"
- },
- "Relationship Score tas": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "global": {
- "Annual Cycle": {
- "Phase Shift": 0.3460071505100452,
- "Seasonal Cycle Score": 0.7302961501719626
- },
- "Bias": {
- "Bias": 0.0864657532640793,
- "Bias Score": 0.4676109048415676,
- "Period Mean": 2.102402154978122
- },
- "RMSE": {
- "RMSE": 1.6552676976411893,
- "RMSE Score": 0.4274016614067749
- },
- "Relationship pr": {
- "Relationship Score pr": 0.4648701436860109
- },
- "Relationship tas": {
- "Relationship Score tas": 0.5961174687755967
- },
- "Spatial Distribution": {
- "Correlation": 0.7954204310685826,
- "Normalized Standard Deviation": 1.2191835212182185,
- "Spatial Distribution Score": 0.8633549384785636
- }
- },
- "tropical": {
- "Annual Cycle": {
- "Phase Shift": 0.8985700662469462,
- "Seasonal Cycle Score": 0.6585526247077628
- },
- "Bias": {
- "Bias": 0.2906089675036235,
- "Bias Score": 0.3600624305629896,
- "Period Mean": 4.880223654215761
- },
- "RMSE": {
- "RMSE": 2.8095335768502725,
- "RMSE Score": 0.3714562972753612
- },
- "Relationship pr": {
- "Relationship Score pr": 0.484278282539137
- },
- "Relationship tas": {
- "Relationship Score tas": 0.4321457150215198
- },
- "Spatial Distribution": {
- "Correlation": 0.5065086373022369,
- "Normalized Standard Deviation": 2.100220500948656,
- "Spatial Distribution Score": 0.453929277719741
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/index.html
deleted file mode 100644
index 98e7be6..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/index.html
+++ /dev/null
@@ -1,468 +0,0 @@
-
-
-
-
-
-gpp-wecann
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bias
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Annual Cycle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Spatial Distribution
-
-
-
-
-
-
-
Relationship pr
-
-
-
-
-
-
-
-
-
-
-
Relationship tas
-
-
-
-
-
-
-
-
-
-
-
-
-
All Models
-
-
- bias
-
- biasscore
-
- cycle
-
- cyclescore
-
- distribution-pr
-
- distribution-tas
-
- mean
-
- response-pr
-
- response-tas
-
- rmse
-
- rmsescore
-
- shift
-
- tmax
-
- trace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/output.json
deleted file mode 100644
index 4ddf3b7..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/output.json
+++ /dev/null
@@ -1,528 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-tas.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-tas.png",
- "long_name": "The distribution of tas for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Distribution|tas"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "RMSE"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Period Mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-tas.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-tas.png",
- "long_name": "The response of tas for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Response|tas"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Bias score"
- }
- },
- "None_tropical_taylor.png": {
- "filename": "None_tropical_taylor.png",
- "long_name": "The Taylor diagram over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Taylor diagram"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-pr.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_response-pr.png",
- "long_name": "The response of pr for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Response|pr"
- }
- },
- "None_global_taylor.png": {
- "filename": "None_global_taylor.png",
- "long_name": "The Taylor diagram over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Taylor diagram"
- }
- },
- "Reference_tropical_mean.png": {
- "filename": "Reference_tropical_mean.png",
- "long_name": "The period mean for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "Reference_global_tmax.png": {
- "filename": "Reference_global_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-pr.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_distribution-pr.png",
- "long_name": "The distribution of pr for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Distribution|pr"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-tas.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-tas.png",
- "long_name": "The distribution of tas for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Distribution|tas"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Bias"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "RMSE score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Bias score"
- }
- },
- "Reference_tropical_distribution-tas.png": {
- "filename": "Reference_tropical_distribution-tas.png",
- "long_name": "The distribution of tas for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Distribution|tas",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Shift in maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Shift in maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "RMSE"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_response-tas.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_response-tas.png",
- "long_name": "The response of tas for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Response|tas"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Regional mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Annual cycle score"
- }
- },
- "Reference_global_distribution-tas.png": {
- "filename": "Reference_global_distribution-tas.png",
- "long_name": "The distribution of tas for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Distribution|tas",
- "source_id": "Reference"
- }
- },
- "Reference_tropical_distribution-pr.png": {
- "filename": "Reference_tropical_distribution-pr.png",
- "long_name": "The distribution of pr for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Distribution|pr",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Period Mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Maximum month"
- }
- },
- "Reference_global_mean.png": {
- "filename": "Reference_global_mean.png",
- "long_name": "The period mean for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "RMSE score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Bias"
- }
- },
- "Reference_global_distribution-pr.png": {
- "filename": "Reference_global_distribution-pr.png",
- "long_name": "The distribution of pr for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Distribution|pr",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Regional mean"
- }
- },
- "Reference_tropical_tmax.png": {
- "filename": "Reference_tropical_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Annual cycle score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_response-pr.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_response-pr.png",
- "long_name": "The response of pr for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global",
- "statistic": "Response|pr"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-pr.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_distribution-pr.png",
- "long_name": "The distribution of pr for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical",
- "statistic": "Distribution|pr"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/series.json
deleted file mode 100644
index 16be2f8..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/gpp-wecann/14b0c00721e7df470bbb9b4d7785090fc8f6f507/series.json
+++ /dev/null
@@ -1,1018 +0,0 @@
-[
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global"
- },
- "values": [
- 1.6584062920713039,
- 1.7462729322136223,
- 1.8264938566832527,
- 1.9093315305292724,
- 2.1904669484652377,
- 2.6312609646180247,
- 2.8756971304182293,
- 2.851923985745965,
- 2.5744358115134953,
- 2.1384958681558683,
- 1.79044458804935,
- 1.666780488337737,
- 1.6671336684063816,
- 1.7624091379008564,
- 1.8521682602840357,
- 1.9085982588529706,
- 2.1941574068944085,
- 2.564358705540749,
- 2.7667684472670193,
- 2.7857966521376327,
- 2.523503160903506,
- 2.0822259258962297,
- 1.7644945475751492,
- 1.6521630565308598,
- 1.6141564975098355,
- 1.6312390804869228,
- 1.7542471249971334,
- 1.8762132198527774,
- 2.1516664594025543,
- 2.550364859155573,
- 2.7805216724168105,
- 2.7656538515390254,
- 2.471231333002161,
- 2.0433183516335016,
- 1.7553703041818658,
- 1.6803913130008823,
- 1.6683576710091745,
- 1.7430016709072236,
- 1.822921804270433,
- 1.9109416866456195,
- 2.128022673075716,
- 2.5377771174853323,
- 2.7310036280795686,
- 2.7310838643268545,
- 2.4806512110406005,
- 2.034802010884371,
- 1.6992331243647503,
- 1.5735873005134542,
- 1.587430170289913,
- 1.6899139828915488,
- 1.7931138783362432,
- 1.8618576757146554,
- 2.1190102427261754,
- 2.4915109600222114,
- 2.7418094624232148,
- 2.7621872325270806,
- 2.5065638622084214,
- 2.03820546307882,
- 1.6785898177804526,
- 1.6165512421823662,
- 1.6186193520053795,
- 1.6821480084663902,
- 1.7839281168610481,
- 1.9013015000619269,
- 2.1860796384783843,
- 2.582327261934763,
- 2.817546255159023,
- 2.7766752490488678,
- 2.487292536157081,
- 2.0251281893796205,
- 1.7005505460566033,
- 1.5391819096745178,
- 1.5950240136612905,
- 1.6177452149473897,
- 1.772927659726428,
- 1.916782345115555,
- 2.1632023064970722,
- 2.57887784909707,
- 2.8198546089399827,
- 2.8211154517285766,
- 2.538107080889015,
- 2.061380908102192,
- 1.665683536953628,
- 1.605578346095862,
- 1.605359436806122,
- 1.6863917891697848,
- 1.73124551906339,
- 1.8554765885506859,
- 2.1322325228520063,
- 2.5310419686007712,
- 2.7864139423051615,
- 2.775958156981931,
- 2.49189699529292,
- 2.0353346247591526,
- 1.7050930411939837,
- 1.6096619276448065
- ],
- "index": [
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T12:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T12:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "gram / day / meter ** 2",
- "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
- "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon"
- }
- },
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical"
- },
- "values": [
- 4.923567017342773,
- 5.0013815594034545,
- 4.926037234553436,
- 4.756713532797769,
- 4.614209128585728,
- 4.875445699903412,
- 5.289813000855926,
- 5.639985969470123,
- 5.82734084286864,
- 5.596531324273251,
- 5.21752802369036,
- 5.080380916476899,
- 5.0115042646497425,
- 5.001169661189438,
- 4.861398738205851,
- 4.652875954460436,
- 4.508864488574931,
- 4.694231540833478,
- 5.132341792420131,
- 5.541074831290688,
- 5.614955158574046,
- 5.377944064949431,
- 4.955804261180851,
- 4.832965512858927,
- 4.697888602738187,
- 4.690908533277457,
- 4.747829866850875,
- 4.65117537498552,
- 4.504845385510317,
- 4.526011875451596,
- 4.949538528265992,
- 5.3954841573092125,
- 5.447731860367471,
- 5.253118933559925,
- 5.07152138595881,
- 5.014756685900988,
- 4.951282905115279,
- 4.955205098039542,
- 4.842690546509695,
- 4.570869859296023,
- 4.359111539229145,
- 4.495508964164464,
- 4.861463269140648,
- 5.30244405746665,
- 5.426979233032581,
- 5.131129227953644,
- 4.739202071722105,
- 4.577222951023066,
- 4.486852864593001,
- 4.655198201245244,
- 4.617871396144759,
- 4.516769082112188,
- 4.276163342819232,
- 4.384141016968355,
- 4.8593002372237235,
- 5.316270080195624,
- 5.398546108346251,
- 5.123430433368994,
- 4.725731221269623,
- 4.543864189721033,
- 4.583398654413702,
- 4.770802355851563,
- 4.655930023894655,
- 4.544678569312728,
- 4.4220950960321,
- 4.598758574790541,
- 5.074835628948059,
- 5.400462464856303,
- 5.374337466228153,
- 5.011031073124981,
- 4.6749123401122175,
- 4.496633964119347,
- 4.546265509317742,
- 4.503789964163762,
- 4.700005143658578,
- 4.537420898054976,
- 4.247791759436732,
- 4.40803552666062,
- 4.925687516102471,
- 5.310031662800264,
- 5.478634030454713,
- 5.2055899175602045,
- 4.757398505298681,
- 4.788579413554853,
- 4.726190479415784,
- 4.757481599907071,
- 4.575880981520852,
- 4.462494240068693,
- 4.270201740747983,
- 4.4193936024985625,
- 4.85465449748279,
- 5.229191913618623,
- 5.404695237715501,
- 5.131022417637688,
- 4.787852162674524,
- 4.7890356791770055
- ],
- "index": [
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T12:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T12:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "gram / day / meter ** 2",
- "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
- "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "global"
- },
- "values": [
- 1.6268108876894614,
- 1.6948902203835838,
- 1.7921307734757357,
- 1.8925628626530855,
- 2.158104753074531,
- 2.558439971600756,
- 2.7899518715053384,
- 2.783799300153162,
- 2.5092102423556493,
- 2.057361409933733,
- 1.7199324369611946,
- 1.6179869744980908
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "gram / day / meter ** 2",
- "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
- "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WECANN",
- "region": "tropical"
- },
- "values": [
- 4.740868768269174,
- 4.79199211934138,
- 4.740955517010476,
- 4.586624758757002,
- 4.4004102382184955,
- 4.5501909022306455,
- 4.9934542123108,
- 5.391868172195633,
- 5.496652455793855,
- 5.228724612772829,
- 4.866243738918348,
- 4.765429997777211
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "gram / day / meter ** 2",
- "long_name": "Carbon Mass Flux out of Atmosphere Due to Gross Primary Production on Land",
- "standard_name": "gross_primary_productivity_of_biomass_expressed_as_carbon"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "global"
- },
- "values": [
- 1.9487388024224437,
- 1.9757161306821716,
- 2.1328329407377966,
- 2.3006829603052763,
- 2.872589930511765,
- 3.2389384550918856,
- 3.3902498716063425,
- 3.2002771096140514,
- 2.670633482380035,
- 2.2593523116818774,
- 1.9416434192101915,
- 1.846666786981395,
- 1.9521818306474437,
- 1.9645810028759207,
- 2.046331317287269,
- 2.355139660941865,
- 2.6885844708850537,
- 3.169373351570883,
- 3.4022864877255703,
- 3.1940029911005277,
- 2.6629024978719738,
- 2.2190732314003743,
- 1.9523532331201088,
- 1.887322505571535,
- 1.8648611198369007,
- 1.9957583830318921,
- 2.082865325263056,
- 2.2901278671515928,
- 2.699633884273702,
- 3.097125143935843,
- 3.3466440783520426,
- 3.0834643172201766,
- 2.6314793076762752,
- 2.2084217919455624,
- 1.945871428465706,
- 1.8238492479829247,
- 1.9037157901405595,
- 1.9416524905850843,
- 2.1055248349771,
- 2.3904518853338343,
- 2.7822136480339448,
- 3.1293749544444385,
- 3.3191888331663795,
- 3.065399532027927,
- 2.6225111266940764,
- 2.2509897143667597,
- 1.9782426795292736,
- 1.934981170954167,
- 1.9685517246043962,
- 2.0599027288962533,
- 2.135784149729165,
- 2.3976072740124557,
- 2.7458679114065623,
- 3.1482720888105202,
- 3.274429221827979,
- 3.1366067758853595,
- 2.6140464882154397,
- 2.24679713015204,
- 2.0144227766483036,
- 1.8899409321766047,
- 1.832132157932471,
- 1.9142290332360097,
- 2.0526758122006687,
- 2.3673465177079875,
- 2.683652786002372,
- 3.0757793437602277,
- 3.301335927914112,
- 3.15210012970642,
- 2.6465215261726156,
- 2.194630723383168,
- 1.9298563002836684,
- 1.8258771703018406,
- 1.785585797731756,
- 1.8697666756959892,
- 1.9615432407302642,
- 2.251024297085813,
- 2.645702619701024,
- 3.0807544477262114,
- 3.3264371132714583,
- 3.1202681444988456,
- 2.6193919230636444,
- 2.2077341069040415,
- 1.9468097765407946,
- 1.9162138221848892,
- 1.8104836217777662,
- 1.849660796543756,
- 2.0248505045573144,
- 2.219365094354995,
- 2.5874726388438742,
- 3.0758014626617305,
- 3.1725500295522497,
- 3.068133974813393,
- 2.6038151415641884,
- 2.1795034382609018,
- 1.8680287106745466,
- 1.7994620409166437
- ],
- "index": [
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T00:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T00:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "g/m^2/day",
- "long_name": "trace_global",
- "standard_name": ""
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "tropical"
- },
- "values": [
- 4.950993495063086,
- 5.060398171497809,
- 5.117134477351924,
- 5.087822972142345,
- 5.358984319336721,
- 5.031602603728021,
- 4.959405055217977,
- 5.099062810195441,
- 5.262950469998086,
- 5.675435472644353,
- 5.4383442212485145,
- 4.92430229663198,
- 5.1076856959959125,
- 4.928614803771246,
- 5.003463280119198,
- 5.494340506125885,
- 5.225844338318456,
- 4.993595914452502,
- 5.040753175219656,
- 5.1102495378614945,
- 5.306076699201021,
- 5.519197064718787,
- 5.421859020373759,
- 5.090964949516643,
- 4.878403829148632,
- 5.06577585899246,
- 5.188557539189883,
- 5.225741387941547,
- 5.2426665867088,
- 4.805392774223936,
- 5.056603200296747,
- 4.960665656081985,
- 5.497461670378853,
- 5.791454449956474,
- 5.447483312753293,
- 5.026055299465636,
- 4.943979643425476,
- 4.977407639831387,
- 5.170351793991801,
- 5.2922811367215274,
- 5.112032538014933,
- 4.855337498936653,
- 4.898787774280302,
- 4.863021751463044,
- 5.105227645526139,
- 5.698060239224151,
- 5.550144107041478,
- 5.275891678223305,
- 5.084387179953957,
- 5.201260945632645,
- 5.305624601388122,
- 5.379610336359436,
- 5.0875635350475195,
- 4.791877443726994,
- 4.823453396372204,
- 5.032536092245426,
- 5.191779354567429,
- 5.784610209020469,
- 5.640141753288309,
- 5.082825816787295,
- 4.745960365610737,
- 4.919065191623743,
- 4.9350408884427335,
- 5.359060054794056,
- 5.026346485030581,
- 4.69685711324681,
- 4.950267008338336,
- 5.079075497306304,
- 5.319125343372503,
- 5.706680069801289,
- 5.502759334023403,
- 5.0896513081081745,
- 4.69991252607546,
- 4.925128300982486,
- 5.065269709476433,
- 5.24937929952682,
- 4.942745443574142,
- 4.562607155655744,
- 4.865041023497475,
- 4.937786981307196,
- 5.34154037939141,
- 5.738725611790048,
- 5.5347612800151555,
- 5.326111221210776,
- 4.761621061347268,
- 4.7189325064891285,
- 4.943669031533548,
- 4.908469002772733,
- 4.744037348255984,
- 4.671825574704281,
- 4.394186950778074,
- 4.8145206945235035,
- 5.210662824178987,
- 5.522622186887391,
- 5.230104028262097,
- 4.909077578268872
- ],
- "index": [
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T00:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T00:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "g/m^2/day",
- "long_name": "trace_tropical",
- "standard_name": ""
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "global"
- },
- "values": [
- 1.8829616485572385,
- 1.9461305797797763,
- 2.0673857262051905,
- 2.321459104980027,
- 2.7129024960089594,
- 3.1268691941777473,
- 3.3165466093788853,
- 3.1274969400861954,
- 2.633582233841708,
- 2.2205932514890723,
- 1.9469666481013674,
- 1.865415420496104
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "g/m^2/day",
- "long_name": "cycle_global",
- "standard_name": ""
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "tropical"
- },
- "values": [
- 4.896617974577562,
- 4.9745729273526145,
- 5.091138915186715,
- 5.249588087048043,
- 5.092527574285887,
- 4.801137009834365,
- 4.873562198000091,
- 4.98711487762305,
- 5.279353048326803,
- 5.679598163005369,
- 5.470699632125748,
- 5.090610018526582
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "g/m^2/day",
- "long_name": "cycle_tropical",
- "standard_name": ""
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png
deleted file mode 100644
index 5a75200..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png
deleted file mode 100644
index 9678474..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png
deleted file mode 100644
index 5cbebd1..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png
deleted file mode 100644
index 3920074..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png
deleted file mode 100644
index dd95cb0..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png
deleted file mode 100644
index fce2f68..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png
deleted file mode 100644
index b97c8f7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png
deleted file mode 100644
index 83bedda..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png
deleted file mode 100644
index 7c25210..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png
deleted file mode 100644
index ae06e15..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png
deleted file mode 100644
index cd4cbe3..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png
deleted file mode 100644
index f7e0d4c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png
deleted file mode 100644
index 5d8ac0d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png
deleted file mode 100644
index d71f955..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png
deleted file mode 100644
index 219f150..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png
deleted file mode 100644
index 4099e20..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png
deleted file mode 100644
index 0345652..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png
deleted file mode 100644
index f936bb8..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png
deleted file mode 100644
index f3b60f3..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png
deleted file mode 100644
index 7fa6589..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/None_global_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/None_global_taylor.png
deleted file mode 100644
index ff0f7fc..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/None_global_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/None_tropical_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/None_tropical_taylor.png
deleted file mode 100644
index 2b72191..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/None_tropical_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_global_mean.png
deleted file mode 100644
index 218cf3d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_global_tmax.png
deleted file mode 100644
index f9195ed..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_tropical_mean.png
deleted file mode 100644
index f69add7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_tropical_tmax.png
deleted file mode 100644
index 2d32e3a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/Reference_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/diagnostic.json
deleted file mode 100644
index a4526cd..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/diagnostic.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "global": {
- "LongName": "Global - Land",
- "Description": "Global - Land",
- "Generator": "GlobalLand.nc"
- },
- "tropical": {
- "LongName": "Tropical climates",
- "Description": "Tropical climates",
- "Generator": "Koppen_coarse.nc"
- }
- },
- "metric": {
- "Bias": {},
- "RMSE": {},
- "Annual Cycle": {},
- "Spatial Distribution": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "1"
- },
- "Bias": {
- "type": "scalar",
- "units": "1"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "RMSE": {
- "type": "scalar",
- "units": "1"
- },
- "RMSE Score": {
- "type": "score",
- "units": "1"
- },
- "Phase Shift": {
- "type": "scalar",
- "units": "month"
- },
- "Seasonal Cycle Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "global": {
- "Annual Cycle": {
- "Phase Shift": 0.6776993265648048,
- "Seasonal Cycle Score": 0.6936947494148715
- },
- "Bias": {
- "Bias": 0.0567818184859415,
- "Bias Score": 0.2835861917046113,
- "Period Mean": 1.1128752579548051
- },
- "RMSE": {
- "RMSE": 0.992179868570008,
- "RMSE Score": 0.3165454339954578
- },
- "Spatial Distribution": {
- "Correlation": 0.6243689362875781,
- "Normalized Standard Deviation": 0.8661956266951206,
- "Spatial Distribution Score": 0.7956539222914597
- }
- },
- "tropical": {
- "Annual Cycle": {
- "Phase Shift": 0.2030129842255146,
- "Seasonal Cycle Score": 0.6558284324678045
- },
- "Bias": {
- "Bias": -0.8682991185971106,
- "Bias Score": 0.2287653906139261,
- "Period Mean": 2.0024503048352518
- },
- "RMSE": {
- "RMSE": 1.6221843665470417,
- "RMSE Score": 0.3065611741912774
- },
- "Spatial Distribution": {
- "Correlation": 0.4860578378906289,
- "Normalized Standard Deviation": 0.7064525777839454,
- "Spatial Distribution Score": 0.6600622141113922
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/index.html
deleted file mode 100644
index 7a1d181..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/index.html
+++ /dev/null
@@ -1,424 +0,0 @@
-
-
-
-
-
-lai-avh15c1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bias
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Annual Cycle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Spatial Distribution
-
-
-
-
-
-
-
-
-
All Models
-
-
- bias
-
- biasscore
-
- cycle
-
- cyclescore
-
- mean
-
- rmse
-
- rmsescore
-
- shift
-
- tmax
-
- trace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/output.json
deleted file mode 100644
index 5832b08..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/output.json
+++ /dev/null
@@ -1,376 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "RMSE"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "Period Mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "Bias score"
- }
- },
- "None_tropical_taylor.png": {
- "filename": "None_tropical_taylor.png",
- "long_name": "The Taylor diagram over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "Taylor diagram"
- }
- },
- "None_global_taylor.png": {
- "filename": "None_global_taylor.png",
- "long_name": "The Taylor diagram over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "Taylor diagram"
- }
- },
- "Reference_tropical_mean.png": {
- "filename": "Reference_tropical_mean.png",
- "long_name": "The period mean for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "Reference_global_tmax.png": {
- "filename": "Reference_global_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "Bias"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "RMSE score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "Bias score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "Shift in maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "Shift in maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "RMSE"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "Regional mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "Annual cycle score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "Period Mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "Maximum month"
- }
- },
- "Reference_global_mean.png": {
- "filename": "Reference_global_mean.png",
- "long_name": "The period mean for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "RMSE score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "Bias"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "Regional mean"
- }
- },
- "Reference_tropical_tmax.png": {
- "filename": "Reference_tropical_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "Annual cycle score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical",
- "statistic": "Maximum month"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/series.json
deleted file mode 100644
index ffa6953..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/lai-avh15c1/12f334f0a170d99499fc58b4d72b635046e7cf73/series.json
+++ /dev/null
@@ -1,1690 +0,0 @@
-[
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global"
- },
- "values": [
- 1.0116801626722904,
- 1.0005115565498277,
- 0.9819761152808754,
- 0.9417990963020311,
- 0.9618506126929706,
- 1.0945903822105676,
- 1.2609999819290378,
- 1.3452637054735699,
- 1.2926178204341654,
- 1.1986348816672108,
- 1.1130621949513075,
- 1.0578189242821467,
- 1.016564936287541,
- 0.9951617924748737,
- 0.97698375767879,
- 0.9347091826369837,
- 0.9509551576337933,
- 1.0687300891014353,
- 1.229688501292432,
- 1.321763957281839,
- 1.272076491195617,
- 1.1794519563167083,
- 1.089149324119237,
- 1.0287682794865565,
- 0.9896424036053485,
- 0.9786839596815219,
- 0.9677136291908862,
- 0.9287730468523596,
- 0.9452907537193093,
- 1.0596645308212975,
- 1.208820338293161,
- 1.2977350523987212,
- 1.2621117562787074,
- 1.171330863334688,
- 1.0835494255995655,
- 1.0327537501419644,
- 1.0049454305597154,
- 0.9939507222065581,
- 0.9814394426709513,
- 0.943374924068743,
- 0.9699634233581665,
- 1.090417899296252,
- 1.2436888763609415,
- 1.3286708635813294,
- 1.284250363487708,
- 1.1874259826746278,
- 1.0872926085637762,
- 1.0258730508367302,
- 0.9853717872610379,
- 0.9689007752601602,
- 0.9531178935450951,
- 0.9197425813914106,
- 0.9462767117325716,
- 1.0698927355344607,
- 1.2308035133123287,
- 1.3160893410756955,
- 1.2729487918535423,
- 1.1846040455688307,
- 1.0950833402205156,
- 1.0403937655726538,
- 1.0057082438565947,
- 0.9967259677312317,
- 0.9816038104987632,
- 0.9416612538707853,
- 0.9575218987593803,
- 1.0815355443069898,
- 1.2471838419897388,
- 1.3441989239119514,
- 1.2946286606435546,
- 1.1969905414653963,
- 1.0995628449230945,
- 1.036157272448044,
- 0.9980781717699226,
- 0.9903538879372077,
- 0.9774793653207293,
- 0.9371773156248341,
- 0.9561909912030501,
- 1.080274195176112,
- 1.2441271226077841,
- 1.3454869262823672,
- 1.3060500275624418,
- 1.212474516006889,
- 1.1222497431677838,
- 1.0642215318612034,
- 1.035220121074318,
- 1.0333781823344836,
- 1.0236060480895448,
- 0.9810243029896122,
- 0.9988813737166335,
- 1.1313954676135167,
- 1.3112430666858574,
- 1.4043865493303225,
- 1.3546342090029786,
- 1.2580243532513136,
- 1.1614067410501245,
- 1.1001038667297156,
- 1.0708118178764163,
- 1.0661017176741798,
- 1.047329398437799,
- 0.9974256578200361,
- 1.0172169384464074,
- 1.1448280101065826,
- 1.3076064953550868,
- 1.38257842327839,
- 1.3321147569391685,
- 1.236699811706825,
- 1.1466118145491084,
- 1.0845519041748923,
- 1.0478435361606926,
- 1.0267437148007514,
- 1.007439174588138,
- 0.9646416186740158,
- 0.9839867595358572,
- 1.1067666115043029,
- 1.269153715708405,
- 1.3582368300469538,
- 1.3081247897945119,
- 1.2130649500212212,
- 1.1275925348928273,
- 1.0806942518269171,
- 1.0462542506638455,
- 1.038973773812194,
- 1.0288349566451913,
- 0.985627242254696,
- 0.9988978178980394,
- 1.1124054359018989,
- 1.2611206078861135,
- 1.3433156387742569,
- 1.299877839542651,
- 1.2065422267360582,
- 1.118507376839962,
- 1.0561531993509121,
- 1.0153039128755152,
- 1.0116365468119255,
- 1.0012000264199241,
- 0.9570761461302704,
- 0.9726547589558279,
- 1.0885467859794662,
- 1.2439083984514065,
- 1.3355798182771796,
- 1.2956492742137042,
- 1.2055248121608986,
- 1.1168837249294454,
- 1.0661090471862158,
- 1.034808384549791,
- 1.026358307210031,
- 1.0082829837991438,
- 0.965072330598032,
- 0.9926366992972568,
- 1.1259462118678407,
- 1.2883425507540478,
- 1.3691720065614084,
- 1.3151171666298649,
- 1.2156094226698209,
- 1.1212004108588678,
- 1.0613554746135971,
- 1.0272865317078261,
- 1.0126812508221747,
- 1.0007963499286292,
- 0.9619657566806512,
- 0.9856325553227625,
- 1.1156439698174068,
- 1.2866496019319706,
- 1.3820721121872084,
- 1.3393756848405414,
- 1.2392195055328816,
- 1.1326794383480778,
- 1.0639099968308108,
- 1.0285269769551555,
- 1.0194452733429338,
- 1.0025514397961472,
- 0.9552114715592761,
- 0.9754698392859311,
- 1.1006291595172797,
- 1.2578981446028858,
- 1.3551305855044942,
- 1.3118350515297679,
- 1.214293615939587,
- 1.1198369090389904,
- 1.0573321897067736
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T12:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T12:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T12:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T12:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Leaf Area Index",
- "standard_name": "leaf_area_index"
- }
- },
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical"
- },
- "values": [
- 1.9172620839559262,
- 1.9660878085707945,
- 1.9713720450879215,
- 1.9131529930316966,
- 1.858704257967801,
- 1.8935776336293093,
- 1.9907632001297786,
- 2.1175105911939953,
- 2.1908352363524224,
- 2.1177439988925792,
- 2.0051165950648833,
- 1.9589843254067814,
- 1.9546746795470844,
- 1.967639789015602,
- 1.9663916593665638,
- 1.9050904652678842,
- 1.8394855057340846,
- 1.838677119684991,
- 1.9174065743782698,
- 2.0546798434630014,
- 2.1226116230280456,
- 2.0450163310511646,
- 1.917713889969221,
- 1.8541515406183746,
- 1.8419468010180797,
- 1.8852062131990195,
- 1.9087899776929753,
- 1.8612561771332359,
- 1.7914149132474555,
- 1.7734144951489048,
- 1.8216759365294986,
- 1.9468869753263724,
- 2.077281369526346,
- 2.015737977258737,
- 1.8938650040060443,
- 1.842300446923833,
- 1.860363594808997,
- 1.9032334745775679,
- 1.9170006252755645,
- 1.87552722543008,
- 1.8309064949345697,
- 1.8483662598608552,
- 1.9421549059500502,
- 2.0992434162452254,
- 2.195259284824734,
- 2.121092787151837,
- 1.982934536394894,
- 1.9065418743699027,
- 1.8755523631893696,
- 1.9004185709274122,
- 1.9160727174207406,
- 1.8809927559270418,
- 1.836883355882735,
- 1.8744334640471574,
- 2.0081857912337973,
- 2.1639388289786,
- 2.2343090855028134,
- 2.1510578377105842,
- 2.0081831492411277,
- 1.9380478230505322,
- 1.9154750003128371,
- 1.9449096484733799,
- 1.9521509821111496,
- 1.8961387742123579,
- 1.8414153475846702,
- 1.8657995671461785,
- 1.9764500134616778,
- 2.1363132752682583,
- 2.20017840988698,
- 2.101154014454847,
- 1.9453992532624462,
- 1.8742579679603477,
- 1.8700632284342913,
- 1.9214937668261274,
- 1.9468038400208911,
- 1.88842578251041,
- 1.830922898992442,
- 1.8456356236002565,
- 1.957999035337938,
- 2.121759718681657,
- 2.233747478172846,
- 2.1674415837869505,
- 2.0449118169425557,
- 1.9785799612871904,
- 1.991556873209977,
- 2.05791914482595,
- 2.097957814933671,
- 2.0471501331625137,
- 1.986625366343008,
- 2.016030720874214,
- 2.1390238429971093,
- 2.2875753373661407,
- 2.3635439554886806,
- 2.2915467004411507,
- 2.1648267662211373,
- 2.1113025240922827,
- 2.130840610562674,
- 2.175472983774406,
- 2.162300036807826,
- 2.0773447669111698,
- 2.008133252031738,
- 2.020852705416904,
- 2.1330038146515466,
- 2.269912619848976,
- 2.3396616466331692,
- 2.244276602311856,
- 2.0982104991750252,
- 2.0225744297178214,
- 2.015594572708674,
- 2.0550180431514162,
- 2.06532325435739,
- 2.003076528655694,
- 1.9352279619678125,
- 1.9379985313871477,
- 2.0216619325329246,
- 2.1477332894113315,
- 2.213355275853056,
- 2.135649011278732,
- 2.028502739370341,
- 2.0031298320691473,
- 2.0316658243130643,
- 2.084366019840772,
- 2.0983230657117535,
- 2.028702101030783,
- 1.9510285239629237,
- 1.940491283186672,
- 2.0022846853431386,
- 2.1216726632295706,
- 2.2168337531741305,
- 2.1315613137139047,
- 2.0068382457759464,
- 1.9340568454700386,
- 1.9132931423840305,
- 1.9643922501406972,
- 1.9955945221621125,
- 1.9392573572548955,
- 1.872267816537738,
- 1.8668087478102295,
- 1.9350965117405456,
- 2.0689419762140484,
- 2.172735801076065,
- 2.1045445662262434,
- 1.9810106744395057,
- 1.9257951259720143,
- 1.9232145025836154,
- 1.9949247151640928,
- 2.032863349885735,
- 1.9747626277135866,
- 1.9177318221529294,
- 1.9350107281015787,
- 2.0298824640422404,
- 2.153205982799716,
- 2.2077051300361203,
- 2.108339814245484,
- 1.9736507090893285,
- 1.9236237398126559,
- 1.938236153939287,
- 1.9775853333819569,
- 2.007966568520484,
- 1.9542025109299705,
- 1.8822619272741163,
- 1.8718706404920873,
- 1.9569144641586191,
- 2.1027022153934385,
- 2.2198983728321418,
- 2.142097126039851,
- 1.9860897476389356,
- 1.9219161550337567,
- 1.9328409464466916,
- 1.986947741461162,
- 1.9974003723408762,
- 1.9245590970934243,
- 1.8505433237657547,
- 1.8384494616043352,
- 1.9098617935929658,
- 2.042018308101422,
- 2.146123409908213,
- 2.0723956294744794,
- 1.9432653436978977,
- 1.8910629547442466
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T12:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T12:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T12:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T12:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Leaf Area Index",
- "standard_name": "leaf_area_index"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "global"
- },
- "values": [
- 1.0212030990379932,
- 1.0106405029057328,
- 0.9960236328230155,
- 0.9543521228448943,
- 0.9742284210428107,
- 1.098084459459244,
- 1.259415662914469,
- 1.3486453639603029,
- 1.3027608501314607,
- 1.2079927841180171,
- 1.1156445591999575,
- 1.0570797727489196
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Leaf Area Index",
- "standard_name": "leaf_area_index"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "AVH15C1",
- "region": "tropical"
- },
- "values": [
- 1.9408386652188463,
- 1.9857077374573568,
- 2.0024207466986974,
- 1.9446426345864802,
- 1.8822368403164116,
- 1.8911611173532823,
- 1.9828243879376604,
- 2.1222729448425985,
- 2.2089386759211562,
- 2.1299770782424723,
- 1.9987012631629792,
- 1.9390883896302522
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Leaf Area Index",
- "standard_name": "leaf_area_index"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "global"
- },
- "values": [
- 1.2059649911120223,
- 1.0641030016806952,
- 1.1080125557661529,
- 1.1513806777686968,
- 1.234147713155064,
- 1.3944171059261166,
- 1.5102001173571973,
- 1.4686962196205144,
- 1.232835695474457,
- 1.007241005860907,
- 1.1804026798142189,
- 1.2554922529051333,
- 1.2245759082752825,
- 1.170428857018159,
- 1.2299513011951735,
- 1.3275445849412368,
- 1.4721922275525385,
- 1.6173013977289017,
- 1.703541592561753,
- 1.6630741693479583,
- 1.4275356493451299,
- 1.2094731267859349,
- 1.1635657263148798,
- 1.2218453105378613,
- 1.209086372898621,
- 1.1562329136887053,
- 1.2261407207765758,
- 1.3221532058684493,
- 1.447482721013889,
- 1.6019186604598985,
- 1.6794926733609277,
- 1.6399964481921745,
- 1.420790148246687,
- 1.1992907005053381,
- 1.1500687057850505,
- 1.203631355214112,
- 1.213441377266024,
- 1.186688570925823,
- 1.224842485321148,
- 1.2907301068004202,
- 1.401068068058537,
- 1.56908885628903,
- 1.6800739144238803,
- 1.622457499656516,
- 1.3972819516926367,
- 1.189791249673907,
- 1.1404404086060034,
- 1.1955558305571605,
- 1.175620689768401,
- 1.1835847489430729,
- 1.1601493229646058,
- 1.241559774031235,
- 1.358979013794685,
- 1.5720090386551626,
- 1.6621218124854595,
- 1.6444297449904723,
- 1.4086004560963312,
- 1.1841647951958292,
- 1.1580125254499776,
- 1.199807781085262,
- 1.2050594658751141,
- 1.1658471177331622,
- 1.2022562395771776,
- 1.2737963472732392,
- 1.4060969387853364,
- 1.5560790689364736,
- 1.64445428223315,
- 1.5960460289014495,
- 1.3603158624521556,
- 1.1380507811445018,
- 1.1345058481663337,
- 1.1901808607005067,
- 1.1787296475304225,
- 1.1646720321846824,
- 1.1976062374033296,
- 1.2851638356619857,
- 1.3970483701937035,
- 1.5859008820803295,
- 1.6715814871334191,
- 1.6200020744343113,
- 1.3961810810095068,
- 1.1730578525530904,
- 1.131351326763138,
- 1.1752823003208726,
- 1.1721894919208025,
- 1.1653813338912489,
- 1.204803604955836,
- 1.2885142297386805,
- 1.4248253708566585,
- 1.5636276416662769,
- 1.6601536022806145,
- 1.615369791842465,
- 1.3891229087982546,
- 1.16141485635832,
- 1.1087629996439998,
- 1.1750435500888974,
- 1.1858981920830116,
- 1.157547455892896,
- 1.1888293510825103,
- 1.2861802890927243,
- 1.3940903597086098,
- 1.5653094904961815,
- 1.6630367924661713,
- 1.6221892172555352,
- 1.3782370451885453,
- 1.1647505683747483,
- 1.1151390609085323,
- 1.1510788230284048,
- 1.190298107164672,
- 1.1628274514080152,
- 1.200901605930753,
- 1.2727923488531143,
- 1.4156263561618396,
- 1.5594366592588984,
- 1.6442116622984004,
- 1.613546167595849,
- 1.4106192003314002,
- 1.1785561592599638,
- 1.1263752027667628,
- 1.1742895127404958,
- 1.2055318877762318,
- 1.1920679199117141,
- 1.2336612573253734,
- 1.2993388802774932,
- 1.4501803941102205,
- 1.585056100593752,
- 1.6798905343682344,
- 1.6283854191506406,
- 1.4125498637597236,
- 1.1904716153613724,
- 1.1203985092623165,
- 1.2025197248484338,
- 1.2132005835790347,
- 1.1896040697844,
- 1.217848033696013,
- 1.2846826608961714,
- 1.4218631283795882,
- 1.5743062845007678,
- 1.6792017326381128,
- 1.6432084758178944,
- 1.3982113151388322,
- 1.1842098515921133,
- 1.127217179922186,
- 1.19054953989801,
- 1.1840577621410984,
- 1.1699204091259119,
- 1.2136597404166125,
- 1.3066443861833965,
- 1.425843935078935,
- 1.5739133833978136,
- 1.6677923345647723,
- 1.6208853092405087,
- 1.3974638788401497,
- 1.1749381906945853,
- 1.1194074250320512,
- 1.194713341080658,
- 1.1990328528488994,
- 1.1780829682415663,
- 1.2117719783919692,
- 1.2780886564553682,
- 1.399872429516996,
- 1.5897685314229948,
- 1.6799717963640677,
- 1.6296174358528102,
- 1.4256399226243792,
- 1.185387113457319,
- 1.1209879597431665,
- 1.169250278258334,
- 1.1814989114476562,
- 1.169252189571295,
- 1.2039010988563255,
- 1.2801896234070356,
- 1.4176508587929872,
- 1.585444383916606,
- 1.6722788893491718,
- 1.6214841316161608,
- 1.404479680950129,
- 1.165788989848221,
- 1.1109950855118589,
- 1.165570949117504
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T00:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T00:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T00:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T00:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Leaf Area Index",
- "standard_name": "lai area index"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "tropical"
- },
- "values": [
- 2.92668137501081,
- 2.8483522800208187,
- 2.909331134791656,
- 2.9210342223724743,
- 2.778725175677591,
- 2.6893851631862504,
- 2.8167213120933274,
- 2.8940466983844315,
- 2.7962805073651604,
- 2.5430150386304398,
- 3.091912073965643,
- 3.0738879865870206,
- 3.0299616878273334,
- 2.9644708419120946,
- 3.049457648012456,
- 3.137365223203589,
- 3.1356570639982437,
- 3.0929910658860087,
- 3.109446020030655,
- 3.122301742976496,
- 3.1279134811050575,
- 3.152906526343115,
- 3.090117577549757,
- 3.040807919533217,
- 3.0575788970348494,
- 2.9795519083710675,
- 3.087076949602925,
- 3.163927830490305,
- 3.1110910343931,
- 3.0826383468454064,
- 3.074092181712764,
- 3.094386767447112,
- 3.128400609355199,
- 3.0872783407280826,
- 3.0580321131143693,
- 3.026958790988654,
- 3.0308153052721027,
- 3.0082650681438996,
- 3.056410495936914,
- 3.1274619183864867,
- 3.0770952372193134,
- 3.0488313449540696,
- 3.0754975800341837,
- 3.090255558591716,
- 3.1010027001464135,
- 3.0997874287612186,
- 3.046006970109027,
- 3.0067587185543774,
- 2.9877883886887986,
- 3.003552289040725,
- 3.0089847691244946,
- 3.086638956800099,
- 3.05139374830405,
- 3.0580473164655553,
- 3.0637950549400217,
- 3.1055022128276546,
- 3.094221595724089,
- 3.083278912486256,
- 3.0382082676927946,
- 2.9767852844972365,
- 2.996594061173724,
- 2.9697336371253096,
- 3.0739059180910706,
- 3.1021923724634712,
- 3.074526697476813,
- 3.027081362568936,
- 3.0669316618156803,
- 3.0628181139651307,
- 3.0110253174953154,
- 3.010870890385791,
- 2.987510610452777,
- 2.944360242767194,
- 2.975502560556632,
- 2.96788704673007,
- 3.0320672322079623,
- 3.0873932948214637,
- 3.090883734251977,
- 3.0493437089279185,
- 3.0599780483896817,
- 3.061011748056879,
- 3.083688457991031,
- 3.070172474713941,
- 3.0313025733997216,
- 2.9632016939785033,
- 2.963136595242438,
- 2.9682004345161115,
- 3.02945728636038,
- 3.085748774488536,
- 3.057213732902113,
- 3.0261385052014327,
- 3.028237789329456,
- 3.0315619354020455,
- 3.04920145724696,
- 3.0354921164372763,
- 2.985209507945905,
- 2.973623279185206,
- 2.9777473294159207,
- 2.9467774064757277,
- 3.030521593020584,
- 3.0934845430193127,
- 3.0560030680016386,
- 3.0105346946997904,
- 3.0281284085093354,
- 3.0628055323316135,
- 3.0766300630553225,
- 3.0593920702750834,
- 2.988128467065396,
- 2.9374206577846578,
- 2.9632424791605647,
- 2.9661180286453366,
- 3.0325184099545206,
- 3.1046654105854383,
- 3.0606182654871907,
- 3.028263416518871,
- 3.039298942659041,
- 3.08596542976427,
- 3.1157343880051664,
- 3.099810186099479,
- 3.042637580377822,
- 2.986303134919253,
- 2.994799829450664,
- 2.9959948074961518,
- 3.079195632154906,
- 3.1033243811566367,
- 3.0755818923394185,
- 3.0353321722717945,
- 3.0421361204465813,
- 3.0556001511261446,
- 3.068670192645308,
- 3.068264724307471,
- 3.0207446432799805,
- 3.0128320144377527,
- 3.0010414865917787,
- 2.9722194986605,
- 3.0410342694129913,
- 3.0799561264196145,
- 3.0594581218412915,
- 2.9994664160011775,
- 3.032643821060037,
- 3.068412246271752,
- 3.084593528052262,
- 3.075314151212771,
- 3.0386957751216945,
- 2.979748700940075,
- 2.969596803381504,
- 2.942531767152545,
- 3.006354069988591,
- 3.0801496544196123,
- 3.0570349172218525,
- 3.0031946183712863,
- 3.0527663040388804,
- 3.05657029688641,
- 3.0689373938554896,
- 3.0511855467151547,
- 3.0009037344245875,
- 2.9929446241309585,
- 2.980798938548952,
- 2.953277355717305,
- 3.049815924881136,
- 3.1068104466049116,
- 3.0545188380328643,
- 3.010503806267915,
- 3.0467705090815342,
- 3.05622629048016,
- 3.082946698461127,
- 3.080950451510526,
- 3.033560695594722,
- 2.989459003521892,
- 2.988342499535051,
- 2.9455718671378803,
- 3.0489026630876754,
- 3.0936292311435616,
- 3.0838757602763,
- 3.0218332204789293,
- 3.017886167664985,
- 3.0607130973464955,
- 3.0970895303740913,
- 3.0483389224909936,
- 3.0112031875885785,
- 2.9816064694101185
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T00:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T00:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T00:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T00:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Leaf Area Index",
- "standard_name": "lai area index"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "global"
- },
- "values": [
- 1.1014359521472603,
- 1.0737078241723768,
- 1.1112229444656534,
- 1.187729991874474,
- 1.338673679556516,
- 1.526626165696357,
- 1.619712316347908,
- 1.5859047117215401,
- 1.371581946278897,
- 1.1452760766589039,
- 1.0935807085948193,
- 1.1370033184094042
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Leaf Area Index",
- "standard_name": "lai area index"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "tropical"
- },
- "values": [
- 2.9982485315065266,
- 2.971522835287302,
- 3.0424439294461765,
- 3.0969512415311997,
- 3.0595335859531225,
- 3.017212780376664,
- 3.0370562583999283,
- 3.061291887257358,
- 3.06958920306897,
- 3.0389568051573743,
- 3.0355670954275866,
- 2.995617876712997
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Leaf Area Index",
- "standard_name": "lai area index"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png
deleted file mode 100644
index 453fed2..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png
deleted file mode 100644
index 630d06b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png
deleted file mode 100644
index 0f3ef93..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png
deleted file mode 100644
index c1aceb1..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png
deleted file mode 100644
index 247ed4c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png
deleted file mode 100644
index e6c06ed..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png
deleted file mode 100644
index db80d29..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png
deleted file mode 100644
index 37b9011..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png
deleted file mode 100644
index 8e03bef..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png
deleted file mode 100644
index ea56d49..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png
deleted file mode 100644
index 679f6a7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png
deleted file mode 100644
index 5286c45..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png
deleted file mode 100644
index 4a4a579..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png
deleted file mode 100644
index 1df1d61..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png
deleted file mode 100644
index d91033c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png
deleted file mode 100644
index 45c147d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png
deleted file mode 100644
index ef2e09f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png
deleted file mode 100644
index 7e98c97..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png
deleted file mode 100644
index 5361833..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png
deleted file mode 100644
index 9cb33aa..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/None_global_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/None_global_taylor.png
deleted file mode 100644
index 4fc97e0..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/None_global_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/None_tropical_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/None_tropical_taylor.png
deleted file mode 100644
index 713be2c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/None_tropical_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_global_mean.png
deleted file mode 100644
index ceda2fc..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_global_tmax.png
deleted file mode 100644
index 151f2ff..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_tropical_mean.png
deleted file mode 100644
index 8f835ab..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_tropical_tmax.png
deleted file mode 100644
index f49edc3..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/Reference_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/diagnostic.json
deleted file mode 100644
index 640ade3..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/diagnostic.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "global": {
- "LongName": "Global - Land",
- "Description": "Global - Land",
- "Generator": "GlobalLand.nc"
- },
- "tropical": {
- "LongName": "Tropical climates",
- "Description": "Tropical climates",
- "Generator": "Koppen_coarse.nc"
- }
- },
- "metric": {
- "Bias": {},
- "RMSE": {},
- "Annual Cycle": {},
- "Spatial Distribution": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "kg m-2 s-1"
- },
- "Bias": {
- "type": "scalar",
- "units": "kg m-2 s-1"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "RMSE": {
- "type": "scalar",
- "units": "kg m-2 s-1"
- },
- "RMSE Score": {
- "type": "score",
- "units": "1"
- },
- "Phase Shift": {
- "type": "scalar",
- "units": "month"
- },
- "Seasonal Cycle Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "global": {
- "Annual Cycle": {
- "Phase Shift": 0.270324550108923,
- "Seasonal Cycle Score": 0.6963783846126557
- },
- "Bias": {
- "Bias": 3.081882007654503e-8,
- "Bias Score": 0.5069237546616162,
- "Period Mean": 9.51656971117994e-6
- },
- "RMSE": {
- "RMSE": 0.000015042760540657935,
- "RMSE Score": 0.2412309769469665
- },
- "Spatial Distribution": {
- "Correlation": 0.6402939068297011,
- "Normalized Standard Deviation": 0.8693147653802257,
- "Spatial Distribution Score": 0.8042686192823949
- }
- },
- "tropical": {
- "Annual Cycle": {
- "Phase Shift": 0.3706292819346208,
- "Seasonal Cycle Score": 0.760601098269735
- },
- "Bias": {
- "Bias": 4.863620766352259e-7,
- "Bias Score": 0.4459506304429574,
- "Period Mean": 0.000022191610566573176
- },
- "RMSE": {
- "RMSE": 0.00003263199056908049,
- "RMSE Score": 0.2094635260471339
- },
- "Spatial Distribution": {
- "Correlation": 0.6112139143949029,
- "Normalized Standard Deviation": 1.1722347145529946,
- "Spatial Distribution Score": 0.7856006216172268
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/index.html
deleted file mode 100644
index 1bb39c4..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/index.html
+++ /dev/null
@@ -1,424 +0,0 @@
-
-
-
-
-
-mrro-lora
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bias
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Annual Cycle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Spatial Distribution
-
-
-
-
-
-
-
-
-
All Models
-
-
- bias
-
- biasscore
-
- cycle
-
- cyclescore
-
- mean
-
- rmse
-
- rmsescore
-
- shift
-
- tmax
-
- trace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/output.json
deleted file mode 100644
index 5563016..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/output.json
+++ /dev/null
@@ -1,376 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "RMSE"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "Period Mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "Bias score"
- }
- },
- "None_tropical_taylor.png": {
- "filename": "None_tropical_taylor.png",
- "long_name": "The Taylor diagram over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "Taylor diagram"
- }
- },
- "None_global_taylor.png": {
- "filename": "None_global_taylor.png",
- "long_name": "The Taylor diagram over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "Taylor diagram"
- }
- },
- "Reference_tropical_mean.png": {
- "filename": "Reference_tropical_mean.png",
- "long_name": "The period mean for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "Reference_global_tmax.png": {
- "filename": "Reference_global_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "Bias"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "RMSE score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "Bias score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "Shift in maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "Shift in maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "RMSE"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "Regional mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "Annual cycle score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "Period Mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "Maximum month"
- }
- },
- "Reference_global_mean.png": {
- "filename": "Reference_global_mean.png",
- "long_name": "The period mean for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "RMSE score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "Bias"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "Regional mean"
- }
- },
- "Reference_tropical_tmax.png": {
- "filename": "Reference_tropical_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "Annual cycle score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical",
- "statistic": "Maximum month"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/series.json
deleted file mode 100644
index 41460f6..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrro-lora/a52b1127fee17259a1ea8218e15689ed367280ce/series.json
+++ /dev/null
@@ -1,1498 +0,0 @@
-[
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global"
- },
- "values": [
- 9.093527123721451e-06,
- 9.8536708057576e-06,
- 9.61256810801467e-06,
- 1.085442361626278e-05,
- 1.384593684327779e-05,
- 1.0660371664959107e-05,
- 9.77450505646982e-06,
- 9.132921478624635e-06,
- 1.0655605227314656e-05,
- 9.163910974630105e-06,
- 8.971223430986423e-06,
- 8.028466985605697e-06,
- 1.0069983432150787e-05,
- 1.0433172418864178e-05,
- 1.0164438607531514e-05,
- 1.2571425815471385e-05,
- 1.5396871627712084e-05,
- 9.667677797391447e-06,
- 7.948966250115258e-06,
- 8.295798803865467e-06,
- 8.060090367427617e-06,
- 7.670567885084966e-06,
- 6.4051110333494566e-06,
- 7.23930564030891e-06,
- 8.078147691171065e-06,
- 8.5219893788043e-06,
- 8.274338932736702e-06,
- 1.3341584230833248e-05,
- 1.5889517676768253e-05,
- 1.095979655033299e-05,
- 9.234089163496151e-06,
- 8.762791464938096e-06,
- 8.001880973845862e-06,
- 8.190480505526294e-06,
- 7.281962041332198e-06,
- 7.82731669172945e-06,
- 6.516020325197309e-06,
- 6.036924103572956e-06,
- 7.747334153135128e-06,
- 1.3079893508337073e-05,
- 1.3821934991032721e-05,
- 1.0728292916390256e-05,
- 9.434926212289651e-06,
- 8.951751745240316e-06,
- 9.873148586420737e-06,
- 7.895355169753676e-06,
- 7.783087281444377e-06,
- 7.58069379842448e-06,
- 7.0542185980727526e-06,
- 6.468418618004435e-06,
- 8.759830205004978e-06,
- 1.3222272221559332e-05,
- 1.3164858160506311e-05,
- 9.467280803188516e-06,
- 8.870765620677262e-06,
- 8.57892028179374e-06,
- 8.33837476147346e-06,
- 7.752003775263176e-06,
- 9.10175872381954e-06,
- 8.420548427381251e-06,
- 6.388678005214231e-06,
- 5.993644991025695e-06,
- 6.753853204042193e-06,
- 9.758898171924246e-06,
- 1.3020642182173868e-05,
- 9.75447084707093e-06,
- 7.67164592455109e-06,
- 9.126084048111234e-06,
- 1.0037149170189802e-05,
- 6.231757624755069e-06,
- 7.626122865882105e-06,
- 7.352659037246917e-06,
- 7.312335503990705e-06,
- 7.88912833723633e-06,
- 7.5452312967807384e-06,
- 1.0446598355924271e-05,
- 1.5167138498088283e-05,
- 9.99132469653995e-06,
- 8.481257398275026e-06,
- 1.0458981697455136e-05,
- 8.48982244240898e-06,
- 7.498096265940924e-06,
- 7.774636684599811e-06,
- 7.425647660481467e-06,
- 6.7993168659911945e-06,
- 7.394737786718259e-06,
- 9.527366128591619e-06,
- 1.2484204595379727e-05,
- 1.633793894338751e-05,
- 1.3294466926922101e-05,
- 1.0417240711802365e-05,
- 9.367159311651592e-06,
- 9.63607302077977e-06,
- 9.3499630692602e-06,
- 9.870839836692039e-06,
- 8.907870904609459e-06,
- 9.46260052628215e-06,
- 9.399631282746032e-06,
- 1.1149038460108873e-05,
- 1.369137692449049e-05,
- 1.4898551994286894e-05,
- 9.342557706299916e-06,
- 9.148911418222467e-06,
- 1.0376631408823608e-05,
- 9.147491311181093e-06,
- 8.027173761963041e-06,
- 9.010624164202779e-06,
- 7.899598198001293e-06,
- 7.858105188741255e-06,
- 9.022367266044265e-06,
- 7.81539745074015e-06,
- 9.963608507142604e-06,
- 1.2315906940547832e-05,
- 9.572740474223805e-06,
- 8.87394590867005e-06,
- 8.977808096005441e-06,
- 8.769569086581165e-06,
- 8.66735763811113e-06,
- 8.447347183338621e-06,
- 7.923872391154534e-06,
- 8.904801284730424e-06,
- 8.72882016815703e-06,
- 9.622406662331703e-06,
- 1.200327869577356e-05,
- 1.5992282367910926e-05,
- 9.826627694608395e-06,
- 1.1122244550938275e-05,
- 1.0499152384437477e-05,
- 9.546199970750408e-06,
- 9.422012979144991e-06,
- 8.833918115940243e-06,
- 1.0018519805785776e-05,
- 8.660112328492589e-06,
- 5.910657097454312e-06,
- 7.287423682646284e-06,
- 1.0407323837453576e-05,
- 1.5242660730200454e-05,
- 1.1700762537971561e-05,
- 9.75616658904816e-06,
- 1.1552302569942671e-05,
- 9.612013595432467e-06,
- 7.5792049807220186e-06,
- 8.105533581552824e-06,
- 8.759327306185014e-06,
- 7.236691537563324e-06,
- 7.86907201972037e-06,
- 1.0117663566839568e-05,
- 1.4617243012667217e-05,
- 1.4430908817780252e-05,
- 9.788321442981562e-06,
- 9.660759430104271e-06,
- 9.142558783778202e-06,
- 8.0205447597119e-06,
- 6.7844208783859035e-06,
- 9.108548208818313e-06,
- 9.713235164785836e-06
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T12:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T12:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T12:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T12:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "kg / meter ** 2 / second",
- "long_name": "Total Runoff",
- "standard_name": "runoff_flux"
- }
- },
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical"
- },
- "values": [
- 2.5520685724286903e-05,
- 2.85520516568381e-05,
- 2.7069815869324314e-05,
- 2.588257719642852e-05,
- 2.481910482924582e-05,
- 2.6156329365392783e-05,
- 1.8020388619423077e-05,
- 1.6144413921907166e-05,
- 2.4648550624097904e-05,
- 2.5599871357479728e-05,
- 2.962066930110504e-05,
- 2.5283720474347125e-05,
- 2.6620575334783747e-05,
- 3.141432591432082e-05,
- 2.6529870309728347e-05,
- 3.0320606018795402e-05,
- 3.209443233660027e-05,
- 2.155525858118528e-05,
- 1.6464585482513755e-05,
- 1.3102078351010092e-05,
- 1.5215164928513423e-05,
- 1.9190716426346332e-05,
- 1.8370653363291928e-05,
- 2.2445387973542276e-05,
- 2.154282142232597e-05,
- 2.0285209788572822e-05,
- 2.0565546820475544e-05,
- 3.3284281050970286e-05,
- 3.0115681338670605e-05,
- 2.186006752370988e-05,
- 1.615610969357852e-05,
- 1.1679087453395225e-05,
- 1.356860217363185e-05,
- 2.026083971276861e-05,
- 2.2227276225669575e-05,
- 1.8781039639280335e-05,
- 1.729503248942376e-05,
- 1.637123555525594e-05,
- 1.931879870476342e-05,
- 2.9267432475819634e-05,
- 2.7768012000022503e-05,
- 2.4642036701838816e-05,
- 1.7972534523237934e-05,
- 1.3801268201121524e-05,
- 1.9723627769293113e-05,
- 1.928152485737251e-05,
- 2.5274540646195167e-05,
- 2.540279765172029e-05,
- 2.3077394449771995e-05,
- 1.827930426554934e-05,
- 2.4450080838713414e-05,
- 2.5609010824373304e-05,
- 2.298209338312e-05,
- 2.266617035460213e-05,
- 1.4146141449081685e-05,
- 1.1430598917948783e-05,
- 1.5562802295276622e-05,
- 1.9300431728263126e-05,
- 2.9684701726325348e-05,
- 2.711337267557515e-05,
- 1.8679908295889292e-05,
- 1.4775978053290185e-05,
- 1.3126199403234619e-05,
- 1.650390819015191e-05,
- 2.4903934800083043e-05,
- 2.4040637657769594e-05,
- 1.188640804378622e-05,
- 1.5201822209636307e-05,
- 1.985848833314184e-05,
- 1.2135454276661032e-05,
- 2.416288921198359e-05,
- 2.3909801730701153e-05,
- 2.1968455741129812e-05,
- 2.052266622740238e-05,
- 1.720879980849981e-05,
- 2.289184861567216e-05,
- 2.443001539367005e-05,
- 2.118850533733491e-05,
- 1.2088696195094025e-05,
- 1.4284268793379758e-05,
- 1.2571082195073578e-05,
- 1.7412176539995593e-05,
- 2.139158495064401e-05,
- 2.185867695920031e-05,
- 1.885940806792313e-05,
- 1.846537654404385e-05,
- 2.6100382001218947e-05,
- 3.24247526929211e-05,
- 3.5401256868180035e-05,
- 3.518004647828802e-05,
- 1.9522057139346084e-05,
- 1.6949908140378798e-05,
- 1.9736547551833947e-05,
- 2.476046600800346e-05,
- 3.127458057281632e-05,
- 2.8744933933474215e-05,
- 3.115749648728887e-05,
- 2.7858129965085663e-05,
- 3.292030051767815e-05,
- 3.4096884239664386e-05,
- 2.667536601077474e-05,
- 2.0394690151624853e-05,
- 1.7822602347648932e-05,
- 2.1271036884139108e-05,
- 1.880583394289561e-05,
- 2.277017495509779e-05,
- 2.814109424068096e-05,
- 2.2723753069336625e-05,
- 1.9535508036476994e-05,
- 2.3197840208876918e-05,
- 1.9824937958878283e-05,
- 1.693018627972351e-05,
- 1.813271210925003e-05,
- 2.1725064257618957e-05,
- 1.6784989789556157e-05,
- 1.6756382818490944e-05,
- 1.6437378351611453e-05,
- 2.2976114420348323e-05,
- 2.6254557056361684e-05,
- 2.50497097533102e-05,
- 2.5692953767111005e-05,
- 2.5895454479487168e-05,
- 2.843530159055736e-05,
- 3.213416393675075e-05,
- 3.305363687747061e-05,
- 2.236886566306668e-05,
- 2.0994408664687945e-05,
- 1.4996496270503218e-05,
- 1.7358490457148177e-05,
- 1.9997145210966825e-05,
- 2.660131428613252e-05,
- 3.0484639807365242e-05,
- 2.6559694581336746e-05,
- 1.423558515820355e-05,
- 1.7494675020541696e-05,
- 2.21343941873292e-05,
- 3.11497828241903e-05,
- 2.990215076124821e-05,
- 1.9450813836699185e-05,
- 1.7370631197778064e-05,
- 1.6733644527528524e-05,
- 1.3457502672324885e-05,
- 2.1432515892484454e-05,
- 2.3855480302083642e-05,
- 2.0329714352938708e-05,
- 2.076390759599809e-05,
- 2.7531535013842136e-05,
- 3.821671851209958e-05,
- 2.9115974852855983e-05,
- 2.6656027576822343e-05,
- 1.709924789122867e-05,
- 1.2828524034793149e-05,
- 1.4716174177447148e-05,
- 1.4389364610534292e-05,
- 2.8902407985631812e-05,
- 2.7176465282553932e-05
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T12:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T12:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T12:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T12:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "kg / meter ** 2 / second",
- "long_name": "Total Runoff",
- "standard_name": "runoff_flux"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "global"
- },
- "values": [
- 7.956503077722379e-06,
- 7.963248671744529e-06,
- 8.79822259928992e-06,
- 1.2034010340515242e-05,
- 1.4578857624866676e-05,
- 1.0365745605292613e-05,
- 9.261186502553393e-06,
- 9.478681744881818e-06,
- 9.091381664907244e-06,
- 8.017869548000188e-06,
- 8.33236247649822e-06,
- 8.238235638192784e-06
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "kg / meter ** 2 / second",
- "long_name": "Total Runoff",
- "standard_name": "runoff_flux"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "LORA",
- "region": "tropical"
- },
- "values": [
- 2.2833819730398913e-05,
- 2.1585927818286797e-05,
- 2.3121250354005977e-05,
- 2.7668982649415342e-05,
- 2.7741692636307746e-05,
- 2.4487372861945683e-05,
- 1.6800691368341065e-05,
- 1.5062808936535339e-05,
- 1.7302798917200768e-05,
- 1.9348598208446857e-05,
- 2.5641444965931984e-05,
- 2.4833060487609402e-05
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "kg / meter ** 2 / second",
- "long_name": "Total Runoff",
- "standard_name": "runoff_flux"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "global"
- },
- "values": [
- 6.871315526991505e-06,
- 8.101457103606364e-06,
- 8.564936960960139e-06,
- 1.0738457236587207e-05,
- 1.3031280248263385e-05,
- 1.4117275827354088e-05,
- 1.2546724700511313e-05,
- 1.0864750222473215e-05,
- 9.864629516153304e-06,
- 8.275929409646086e-06,
- 7.219114766649627e-06,
- 6.817519951345347e-06,
- 7.1017334647380795e-06,
- 7.684388767602327e-06,
- 9.292596157460691e-06,
- 1.0192139202827598e-05,
- 1.2162666812451821e-05,
- 1.3493950129194405e-05,
- 1.2229023334007496e-05,
- 1.0279471341308476e-05,
- 8.825974534014079e-06,
- 7.832787597908848e-06,
- 6.858531817343622e-06,
- 6.661151516331306e-06,
- 7.077257911955463e-06,
- 7.371123853364228e-06,
- 8.532816436402379e-06,
- 1.117680100516937e-05,
- 1.3386646143607566e-05,
- 1.4651100616559618e-05,
- 1.3236636642846156e-05,
- 1.0871100337958585e-05,
- 9.406588202582547e-06,
- 7.853662329801944e-06,
- 7.393118028485975e-06,
- 7.259267397468652e-06,
- 7.217578079130792e-06,
- 7.313683408675243e-06,
- 8.035922851258958e-06,
- 9.52128241551002e-06,
- 1.1681639206606542e-05,
- 1.3718941252257739e-05,
- 1.2691276217882667e-05,
- 1.071690013113999e-05,
- 9.723841552143831e-06,
- 8.313419633173931e-06,
- 7.169080036123566e-06,
- 6.853450659048811e-06,
- 7.245495933566269e-06,
- 7.66369956545525e-06,
- 8.29550976504888e-06,
- 9.350324044657398e-06,
- 1.2607452675918697e-05,
- 1.3719971106250039e-05,
- 1.3193148722169756e-05,
- 1.0621074718043514e-05,
- 9.3039778869707e-06,
- 7.968535240815339e-06,
- 6.954298282999207e-06,
- 6.835639913264779e-06,
- 6.7155602506503495e-06,
- 7.165560744442291e-06,
- 8.441489963895957e-06,
- 1.0433197639950314e-05,
- 1.272236704067873e-05,
- 1.3437709015012954e-05,
- 1.1645818925073397e-05,
- 1.0535790631681979e-05,
- 9.068968307775283e-06,
- 8.135132714840674e-06,
- 7.099846888483223e-06,
- 7.221569409524486e-06,
- 7.620936255486131e-06,
- 7.954057510166084e-06,
- 8.41107196453047e-06,
- 1.0051407170351805e-05,
- 1.315889578034172e-05,
- 1.349999802642412e-05,
- 1.2700376865393281e-05,
- 1.0454391468045e-05,
- 8.707587351910564e-06,
- 7.59107013178938e-06,
- 6.8849062484628905e-06,
- 6.994584906753322e-06,
- 7.766667423435487e-06,
- 7.640626285471749e-06,
- 8.30995940658684e-06,
- 9.970077520679064e-06,
- 1.2367104113954778e-05,
- 1.3636542812777551e-05,
- 1.3149658038055385e-05,
- 1.126566601250955e-05,
- 9.983291726177067e-06,
- 8.563453959162037e-06,
- 7.3958453976688475e-06,
- 7.092487073731613e-06,
- 7.906214818913565e-06,
- 8.347526157409876e-06,
- 9.551155719026319e-06,
- 1.0149427300585888e-05,
- 1.266368740053488e-05,
- 1.4559417449757622e-05,
- 1.36975091180498e-05,
- 1.1747009348513501e-05,
- 1.0120936583758941e-05,
- 8.428017317534911e-06,
- 7.772973534465297e-06,
- 7.774544818266574e-06,
- 8.09992683849988e-06,
- 8.656612088684847e-06,
- 9.46243582321203e-06,
- 1.0885561271318405e-05,
- 1.1733428002002994e-05,
- 1.3459307399475043e-05,
- 1.2520349868127502e-05,
- 1.0447498115755635e-05,
- 8.882307500910413e-06,
- 7.805374033610273e-06,
- 6.727712208823283e-06,
- 7.084248496027241e-06,
- 7.235290148707249e-06,
- 7.871345441141127e-06,
- 8.574585620119966e-06,
- 1.098885453337647e-05,
- 1.2814524379606751e-05,
- 1.3680532661079786e-05,
- 1.2733003124484805e-05,
- 1.1325076263145712e-05,
- 1.065348811766946e-05,
- 8.487539386655991e-06,
- 7.840798412537762e-06,
- 7.610821845488638e-06,
- 7.419789055759022e-06,
- 8.453222521942999e-06,
- 9.450406791785823e-06,
- 1.1957584699422462e-05,
- 1.3107544657313227e-05,
- 1.3833005560394216e-05,
- 1.1883195098910903e-05,
- 1.0596079320556726e-05,
- 1.0080795353978016e-05,
- 8.166243404248625e-06,
- 7.232690774426759e-06,
- 6.931856292367107e-06,
- 7.557047981631499e-06,
- 7.589492105633097e-06,
- 8.97209116647474e-06,
- 1.0531941077942051e-05,
- 1.2088477802377624e-05,
- 1.2378720687482205e-05,
- 1.1518449792531387e-05,
- 1.0071010548129304e-05,
- 9.588675515768138e-06,
- 7.739029753483783e-06,
- 6.66983853688352e-06,
- 6.5990276283884126e-06
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T00:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T00:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T00:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T00:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "kg m-2 s-1",
- "long_name": "sum of surface runoff and subsurface drainage per unit area",
- "standard_name": ""
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "tropical"
- },
- "values": [
- 1.908625735539203e-05,
- 2.25073889792515e-05,
- 2.392726310063025e-05,
- 2.6494651448347947e-05,
- 2.743202645197668e-05,
- 2.6866587197899642e-05,
- 2.3731401861243864e-05,
- 2.1993255727053968e-05,
- 2.0138188875024137e-05,
- 1.7983448769932345e-05,
- 1.6517869277090642e-05,
- 1.7242898690011865e-05,
- 1.8259028278426725e-05,
- 2.0531257790767507e-05,
- 2.503161807401822e-05,
- 2.4561453109264635e-05,
- 2.19354129125533e-05,
- 2.2893076838602463e-05,
- 2.184147058377906e-05,
- 2.0034283715926585e-05,
- 1.7554885622824765e-05,
- 1.629557905473483e-05,
- 1.5466684439013584e-05,
- 1.6777867970324085e-05,
- 1.90337967903363e-05,
- 1.9709464501516905e-05,
- 2.3343420254701105e-05,
- 2.967591173749953e-05,
- 2.636843425889652e-05,
- 2.7555277409553746e-05,
- 2.5951316931541194e-05,
- 2.2093048488147332e-05,
- 1.9412039121898524e-05,
- 1.605377227401892e-05,
- 1.6265424275760613e-05,
- 1.7085968113944035e-05,
- 1.8211855764126688e-05,
- 1.8813136689811008e-05,
- 2.074481715665415e-05,
- 2.2399928871296208e-05,
- 2.2705301536279565e-05,
- 2.607364799038018e-05,
- 2.5135178308563013e-05,
- 2.234690461980927e-05,
- 2.119856376548425e-05,
- 1.885175316050843e-05,
- 1.7973764485619976e-05,
- 1.7686098473024084e-05,
- 1.9947639339088687e-05,
- 2.0908821932761802e-05,
- 2.2662716605300477e-05,
- 2.34301869745848e-05,
- 2.540266465891407e-05,
- 2.4698895907695426e-05,
- 2.4701088739302842e-05,
- 2.289689149730405e-05,
- 1.9518821536681313e-05,
- 1.7191409492853616e-05,
- 1.577322655869527e-05,
- 1.6801176453581727e-05,
- 1.7003054981386688e-05,
- 1.94534467873971e-05,
- 2.4066234479902417e-05,
- 2.520237736249151e-05,
- 2.5209074775233174e-05,
- 2.427482806210318e-05,
- 2.209242298007881e-05,
- 2.060198048665948e-05,
- 1.8806750629001728e-05,
- 1.8159667029466123e-05,
- 1.7686170508213935e-05,
- 2.0036507296110487e-05,
- 2.1373391906818443e-05,
- 2.3250446625908623e-05,
- 2.4737052388410644e-05,
- 2.5998630647041395e-05,
- 2.8066551172295134e-05,
- 2.650286338064877e-05,
- 2.6722200150438272e-05,
- 2.209993742567177e-05,
- 1.7644589788788922e-05,
- 1.676550946710412e-05,
- 1.6087141115885667e-05,
- 1.7750956836379813e-05,
- 2.0762371916537e-05,
- 2.1431791159727546e-05,
- 2.1958265055537762e-05,
- 2.353948609663975e-05,
- 2.463439267896499e-05,
- 2.4983438631237815e-05,
- 2.387146996450865e-05,
- 2.3228395761722593e-05,
- 2.1120734664462662e-05,
- 2.006444410899132e-05,
- 1.89232234308772e-05,
- 1.9926330241491537e-05,
- 2.3382517120609514e-05,
- 2.4906976369699488e-05,
- 2.7724682985575936e-05,
- 2.7056274301797723e-05,
- 2.4898899937202756e-05,
- 2.6617205290886774e-05,
- 2.728619230294289e-05,
- 2.3572485022364347e-05,
- 2.1428528481456603e-05,
- 1.9617282695279985e-05,
- 1.956565881676681e-05,
- 2.069389971713352e-05,
- 2.3515401408625527e-05,
- 2.562120806617799e-05,
- 2.7520156186949236e-05,
- 2.7667282585361904e-05,
- 2.4327536948016407e-05,
- 2.4236489035624506e-05,
- 2.365830625595684e-05,
- 2.02149404849197e-05,
- 1.7528662367290304e-05,
- 1.6046056187136888e-05,
- 1.4346148057004299e-05,
- 1.6277273006145102e-05,
- 1.7943776205517654e-05,
- 2.0417964686337836e-05,
- 2.224758400804854e-05,
- 2.599223307671055e-05,
- 2.4985206590364423e-05,
- 2.563827445944968e-05,
- 2.67199786998949e-05,
- 2.416861266860909e-05,
- 2.2886752446613396e-05,
- 1.9538421898292444e-05,
- 2.0694199278426702e-05,
- 1.968677190712765e-05,
- 2.054994025007054e-05,
- 2.439321454188164e-05,
- 2.7245276307311298e-05,
- 2.929978640079872e-05,
- 2.850508791295021e-05,
- 2.5668955080878834e-05,
- 2.293787185364338e-05,
- 2.0688285218561787e-05,
- 2.0792056333555608e-05,
- 1.872915075559501e-05,
- 1.8574430822520605e-05,
- 1.9142178184279693e-05,
- 2.1967707123795504e-05,
- 2.2819692453239465e-05,
- 2.5610473032269554e-05,
- 2.5640319944222105e-05,
- 2.2289026567728824e-05,
- 2.087854119523178e-05,
- 2.1263980947291874e-05,
- 1.9751061709020243e-05,
- 1.8792254732800726e-05,
- 1.6157322086289644e-05,
- 1.5331770397346306e-05,
- 1.5883359283593758e-05
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T00:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T00:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T00:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T00:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "kg m-2 s-1",
- "long_name": "sum of surface runoff and subsurface drainage per unit area",
- "standard_name": ""
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "global"
- },
- "values": [
- 7.371798120230084e-06,
- 7.831624475337741e-06,
- 8.761015836259112e-06,
- 1.0457291154896442e-05,
- 1.2578687141937506e-05,
- 1.3706419152656076e-05,
- 1.2595575407095353e-05,
- 1.0753345123350925e-05,
- 9.55453414078593e-06,
- 8.089109180709543e-06,
- 7.170554695690825e-06,
- 7.056516618707238e-06
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "kg m-2 s-1",
- "long_name": "sum of surface runoff and subsurface drainage per unit area",
- "standard_name": ""
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "tropical"
- },
- "values": [
- 2.0079749103069796e-05,
- 2.190498539901086e-05,
- 2.4370735359205534e-05,
- 2.591988637067197e-05,
- 2.5135355096344773e-05,
- 2.514523697400752e-05,
- 2.4300990775020394e-05,
- 2.1822314030330906e-05,
- 1.9755602183909172e-05,
- 1.780413973366097e-05,
- 1.7169670072848127e-05,
- 1.807625278377789e-05
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "kg m-2 s-1",
- "long_name": "sum of surface runoff and subsurface drainage per unit area",
- "standard_name": ""
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png
deleted file mode 100644
index e6638bf..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png
deleted file mode 100644
index 6317536..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png
deleted file mode 100644
index 922de35..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png
deleted file mode 100644
index 544a68c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png
deleted file mode 100644
index 44287e9..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png
deleted file mode 100644
index 6150b5c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png
deleted file mode 100644
index 59e453b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png
deleted file mode 100644
index 6e2b005..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png
deleted file mode 100644
index cac1284..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png
deleted file mode 100644
index 3db43b7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png
deleted file mode 100644
index c33b66f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png
deleted file mode 100644
index b185ab9..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png
deleted file mode 100644
index 55dd1ea..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png
deleted file mode 100644
index b3332c2..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png
deleted file mode 100644
index cbfa6c9..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png
deleted file mode 100644
index 892ee8d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png
deleted file mode 100644
index a24c227..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png
deleted file mode 100644
index 14834b8..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png
deleted file mode 100644
index 441966d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png
deleted file mode 100644
index b417898..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/None_tropical_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/None_tropical_taylor.png
deleted file mode 100644
index e0c3b0f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/None_tropical_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_global_mean.png
deleted file mode 100644
index ca70325..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_global_tmax.png
deleted file mode 100644
index 7723d88..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_tropical_mean.png
deleted file mode 100644
index 6fa1711..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_tropical_tmax.png
deleted file mode 100644
index 507ef70..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/Reference_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/diagnostic.json
deleted file mode 100644
index fdb76b9..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/diagnostic.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "global": {
- "LongName": "Global - Land",
- "Description": "Global - Land",
- "Generator": "GlobalLand.nc"
- },
- "tropical": {
- "LongName": "Tropical climates",
- "Description": "Tropical climates",
- "Generator": "Koppen_coarse.nc"
- }
- },
- "metric": {
- "Bias": {},
- "RMSE": {},
- "Annual Cycle": {},
- "Spatial Distribution": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "1"
- },
- "Bias": {
- "type": "scalar",
- "units": "1"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "RMSE": {
- "type": "scalar",
- "units": "1"
- },
- "RMSE Score": {
- "type": "score",
- "units": "1"
- },
- "Phase Shift": {
- "type": "scalar",
- "units": "month"
- },
- "Seasonal Cycle Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "global": {
- "Annual Cycle": {
- "Phase Shift": -0.3230155989319588,
- "Seasonal Cycle Score": 0.6873592031503478
- },
- "Bias": {
- "Bias": -0.0379863627777847,
- "Bias Score": 0.3147404265001107,
- "Period Mean": 0.2180312890194565
- },
- "RMSE": {
- "RMSE": 0.0711485636281721,
- "RMSE Score": 0.3190667455631822
- },
- "Spatial Distribution": {
- "Correlation": 0.76790798521583,
- "Normalized Standard Deviation": 1.1183664946683256,
- "Spatial Distribution Score": 0.8729832158402742
- }
- },
- "tropical": {
- "Annual Cycle": {
- "Phase Shift": -0.2936199209686796,
- "Seasonal Cycle Score": 0.7914215479925811
- },
- "Bias": {
- "Bias": -0.0920625301322426,
- "Bias Score": 0.2019050640637886,
- "Period Mean": 0.2018237617165186
- },
- "RMSE": {
- "RMSE": 0.1055289774650645,
- "RMSE Score": 0.3939553674884776
- },
- "Spatial Distribution": {
- "Correlation": 0.6034913595654101,
- "Normalized Standard Deviation": 1.0190539658115845,
- "Spatial Distribution Score": 0.801460121884197
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/index.html
deleted file mode 100644
index 871d837..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/index.html
+++ /dev/null
@@ -1,424 +0,0 @@
-
-
-
-
-
-mrsos-wangmao
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bias
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Annual Cycle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Spatial Distribution
-
-
-
-
-
-
-
-
-
All Models
-
-
- bias
-
- biasscore
-
- cycle
-
- cyclescore
-
- mean
-
- rmse
-
- rmsescore
-
- shift
-
- tmax
-
- trace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/output.json
deleted file mode 100644
index a0d6d27..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/output.json
+++ /dev/null
@@ -1,376 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "RMSE"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "Period Mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "Bias score"
- }
- },
- "None_tropical_taylor.png": {
- "filename": "None_tropical_taylor.png",
- "long_name": "The Taylor diagram over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "Taylor diagram"
- }
- },
- "None_global_taylor.png": {
- "filename": "None_global_taylor.png",
- "long_name": "The Taylor diagram over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "Taylor diagram"
- }
- },
- "Reference_tropical_mean.png": {
- "filename": "Reference_tropical_mean.png",
- "long_name": "The period mean for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "Reference_global_tmax.png": {
- "filename": "Reference_global_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "Bias"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "RMSE score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "Bias score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "Shift in maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "Shift in maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_rmse.png",
- "long_name": "The RMSE for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "RMSE"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "Regional mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "Annual cycle score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "Period Mean"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "Maximum month"
- }
- },
- "Reference_global_mean.png": {
- "filename": "Reference_global_mean.png",
- "long_name": "The period mean for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_rmsescore.png",
- "long_name": "The RMSE score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "RMSE score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "Bias"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_trace.png",
- "long_name": "The regional mean for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "Regional mean"
- }
- },
- "Reference_tropical_tmax.png": {
- "filename": "Reference_tropical_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_global_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "Annual cycle score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_tropical_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical",
- "statistic": "Maximum month"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/series.json
deleted file mode 100644
index 0a0c7b2..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/mrsos-wangmao/b01ceb740e776d75389a101dd93c443cc8360b07/series.json
+++ /dev/null
@@ -1,1690 +0,0 @@
-[
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global"
- },
- "values": [
- 0.23240132722427959,
- 0.2296874528482036,
- 0.2292373798136063,
- 0.22465960890383896,
- 0.21529809581726658,
- 0.20939145300422868,
- 0.20503748652728773,
- 0.20479186174959496,
- 0.20751953908191065,
- 0.21343698904522576,
- 0.22187622716334263,
- 0.2275950079412101,
- 0.22710112362463664,
- 0.2249773609841558,
- 0.2242042719608487,
- 0.21973081959381466,
- 0.2143812341650624,
- 0.20609008304254123,
- 0.2056801406923474,
- 0.2020996609006427,
- 0.20164152141289263,
- 0.20999906211276723,
- 0.2223812422246329,
- 0.23013272927555786,
- 0.23309374953498,
- 0.23258946051621318,
- 0.2271304628781683,
- 0.22450482324288712,
- 0.21415869320593714,
- 0.20895424458266368,
- 0.20467028386822814,
- 0.20106375255309694,
- 0.20060681531198968,
- 0.209180522141146,
- 0.22408576049079218,
- 0.22955915494312262,
- 0.22916691273076417,
- 0.22657764664036342,
- 0.2276576588688959,
- 0.2198099457607941,
- 0.214685714752026,
- 0.20724366686571177,
- 0.20302901736488535,
- 0.20095431744446898,
- 0.20405986880787289,
- 0.20733336172756975,
- 0.2205310258042134,
- 0.22635083796218455,
- 0.22477267646852445,
- 0.2222173576095851,
- 0.224646928501862,
- 0.21961420826881134,
- 0.2146112696605278,
- 0.21007513685018045,
- 0.20399489788582292,
- 0.20204257175645146,
- 0.20353089565890276,
- 0.21374498256392943,
- 0.22315896260083284,
- 0.22921423905154295,
- 0.22772719889664303,
- 0.2244006845952237,
- 0.22499435229991988,
- 0.2229343028458325,
- 0.2171127574958013,
- 0.20657794354531334,
- 0.2025761778328189,
- 0.19970501631002682,
- 0.19992875896745632,
- 0.20982091240981807,
- 0.2278612590043899,
- 0.23096663945817777,
- 0.23100517759145006,
- 0.23048931361960842,
- 0.22910308695290707,
- 0.2240026584661022,
- 0.21448872268286362,
- 0.21179332462549955,
- 0.20698438436038918,
- 0.20198587427473144,
- 0.20185295421000152,
- 0.21334674689045785,
- 0.22532757774297327,
- 0.22857806559134286,
- 0.2302075755298669,
- 0.23247618153749885,
- 0.2280760602770934,
- 0.22344341839043957,
- 0.21849079348670702,
- 0.2140008765910495,
- 0.20977611078755007,
- 0.20733719738633422,
- 0.2068951507101759,
- 0.21494756261349168,
- 0.2229877644869937,
- 0.232647098348208,
- 0.23307794239693536,
- 0.23326682589486514,
- 0.23120688325974317,
- 0.22379997943250934,
- 0.21647702398356353,
- 0.20963930330576863,
- 0.20600560169702956,
- 0.20148456651482222,
- 0.20418306763825064,
- 0.21579987433803666,
- 0.22660269302109912,
- 0.23174449296232844,
- 0.22988821772884696,
- 0.23027240744840036,
- 0.23027504172291172,
- 0.22410218392390807,
- 0.21328529907672764,
- 0.20667404490445368,
- 0.2039826823310352,
- 0.2025116560645148,
- 0.20375974531667146,
- 0.21038876486639774,
- 0.22758521290597114,
- 0.23689402134244797,
- 0.23683001028388365,
- 0.23203880412854128,
- 0.23114330420560467,
- 0.22502215505400758,
- 0.21666911322544163,
- 0.21229217225009991,
- 0.2054740266835405,
- 0.20221005869943984,
- 0.2049022660223545,
- 0.21289786338360087,
- 0.2257998038765498,
- 0.23064719073828735,
- 0.22975349641849657,
- 0.2297015183593227,
- 0.22677525520674713,
- 0.22140396072785523,
- 0.2117239225110572,
- 0.20699333777762524,
- 0.20610338930261737,
- 0.20637859466308286,
- 0.20547597916002222,
- 0.21078942284001587,
- 0.22338770351083623,
- 0.22709764535969337,
- 0.22727924878247183,
- 0.2283830792512804,
- 0.23005042727467984,
- 0.22462208450892052,
- 0.21584598543248315,
- 0.2108043639772408,
- 0.2079414431357171,
- 0.2046025649229277,
- 0.20466731732415894,
- 0.21083396651565522,
- 0.22654014929975042,
- 0.23100576904712017,
- 0.2317085075890588,
- 0.23155683687697204,
- 0.2330620247164176,
- 0.22732143640022584,
- 0.21376398859434084,
- 0.20825794931367766,
- 0.20235415716940108,
- 0.20172188348387646,
- 0.20409548061268476,
- 0.21220354903911282,
- 0.22288367753511676,
- 0.2361411031857533,
- 0.23783757211899387,
- 0.23900684314656248,
- 0.2321244902879239,
- 0.22647514222004528,
- 0.21604171260379348,
- 0.21137747485431518,
- 0.20508178208323113,
- 0.20840466150681483,
- 0.20859561289774767,
- 0.2166917171298705,
- 0.22555517869444078,
- 0.23413505742908397
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T12:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T12:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T12:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T12:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Moisture in Upper Portion of Soil Column",
- "standard_name": "mass_content_of_water_in_soil_layer"
- }
- },
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical"
- },
- "values": [
- 0.19724755388411627,
- 0.1967436900095648,
- 0.20194098327346116,
- 0.2083671025142803,
- 0.20119351862674675,
- 0.20365817932015365,
- 0.2024504365954672,
- 0.21013062047065498,
- 0.21937229210981338,
- 0.2165689840453337,
- 0.2079699749960528,
- 0.2042847719326588,
- 0.19185242917659706,
- 0.1863124359598419,
- 0.19151520578784467,
- 0.20060732833631337,
- 0.20292083893251217,
- 0.1965163112242474,
- 0.21035982063773187,
- 0.20219805012887296,
- 0.19710389654440272,
- 0.19827193558801726,
- 0.1948734665816094,
- 0.1956904897551514,
- 0.19856743574182786,
- 0.19866495270609247,
- 0.19262503679182327,
- 0.20934790131649525,
- 0.19948572916167695,
- 0.2048654289463976,
- 0.2032133132925843,
- 0.19798606140757513,
- 0.1979014129474896,
- 0.1982639310082247,
- 0.19660958875936446,
- 0.1958862782584844,
- 0.1913124259409671,
- 0.1847924210340261,
- 0.19610505192566977,
- 0.20355765915849816,
- 0.20472667207954512,
- 0.20297842650199432,
- 0.206141227886525,
- 0.20747573180553938,
- 0.21169042482009603,
- 0.20095494283523085,
- 0.19838291497918994,
- 0.19196661474940233,
- 0.18547205529747096,
- 0.17809039752816774,
- 0.19293401973230054,
- 0.2053067050637261,
- 0.20511128032947495,
- 0.21513030546548215,
- 0.21068594801006615,
- 0.20690918379325487,
- 0.2073925684218349,
- 0.20304516657388358,
- 0.19694886051154786,
- 0.19156250832514943,
- 0.17698639647740405,
- 0.17195239693749262,
- 0.18433271089527403,
- 0.20494905288559614,
- 0.21277864538560937,
- 0.20650547215124576,
- 0.20530214207036201,
- 0.20260699259285223,
- 0.19430496296159638,
- 0.19231799885801315,
- 0.20292272390946037,
- 0.1964175691949409,
- 0.19450819802962124,
- 0.1900243505849629,
- 0.19031096002265122,
- 0.20841092766474129,
- 0.2069901369447289,
- 0.21046472064629562,
- 0.21699897790370432,
- 0.20871268101565968,
- 0.20719643731952586,
- 0.22055441787674493,
- 0.20623579878114273,
- 0.20050233510624293,
- 0.19796099191991198,
- 0.19981284584331863,
- 0.20459506223920296,
- 0.2154794372454816,
- 0.21675525126114514,
- 0.21458592845130806,
- 0.21007297760577903,
- 0.21458078125817812,
- 0.21252469902984483,
- 0.2180727700088257,
- 0.21243366951979914,
- 0.21451602910754702,
- 0.20460614193397986,
- 0.19783678374376432,
- 0.20814863084444526,
- 0.20808568919099518,
- 0.20289239773859508,
- 0.2061344314448231,
- 0.20362401016614323,
- 0.20405013544544073,
- 0.202959533279405,
- 0.2092174401870187,
- 0.20154116898665078,
- 0.19514881980415552,
- 0.19000206571616202,
- 0.1901860799500947,
- 0.1946992968955181,
- 0.19915908800507845,
- 0.1991798414339013,
- 0.19485947543833007,
- 0.20133581757629132,
- 0.20472127918621924,
- 0.20147953495637813,
- 0.2045197923252687,
- 0.21129379521393732,
- 0.21191538939304005,
- 0.20741328293451336,
- 0.19803266023156618,
- 0.2087952431606613,
- 0.20906964655597318,
- 0.20341568882939545,
- 0.21108307450861732,
- 0.20714163694826257,
- 0.2020150215817231,
- 0.20603438224433432,
- 0.2071475293253995,
- 0.19730112778931236,
- 0.18612546253313433,
- 0.18333569597928623,
- 0.18504563361815174,
- 0.19405695822458863,
- 0.19994893981616146,
- 0.19676928619345135,
- 0.20294699897440197,
- 0.2074607156098282,
- 0.2074668519280166,
- 0.20270254359872253,
- 0.20014600383134917,
- 0.19310413299902474,
- 0.18650702310031853,
- 0.18222779938098396,
- 0.18905058108911355,
- 0.20111888902179934,
- 0.2134182940359779,
- 0.20959664419780588,
- 0.21063855634210235,
- 0.21236413488498684,
- 0.20679998768567834,
- 0.1992070325610664,
- 0.19301016317336125,
- 0.19635729544043698,
- 0.19218005368666358,
- 0.18782560494079623,
- 0.185085508346236,
- 0.20037374232132146,
- 0.20722225270678937,
- 0.19450138242166612,
- 0.2016260743330013,
- 0.20051176767674803,
- 0.1983505548779886,
- 0.20625404499291353,
- 0.20630036219461856,
- 0.20485054486291107,
- 0.20772049433003564,
- 0.20631460375836266,
- 0.20812725378618233,
- 0.2034122837513063,
- 0.2100234558641467,
- 0.20242519853459975,
- 0.20860183199404483,
- 0.20707147621142838,
- 0.2106356811238957,
- 0.2128389862305696,
- 0.2106553527830603,
- 0.20129443120641938,
- 0.2069295348020998
- ],
- "index": [
- "2000-01-16T12:00:00",
- "2000-02-15T12:00:00",
- "2000-03-16T12:00:00",
- "2000-04-16T00:00:00",
- "2000-05-16T12:00:00",
- "2000-06-16T00:00:00",
- "2000-07-16T12:00:00",
- "2000-08-16T12:00:00",
- "2000-09-16T00:00:00",
- "2000-10-16T12:00:00",
- "2000-11-16T00:00:00",
- "2000-12-16T12:00:00",
- "2001-01-16T12:00:00",
- "2001-02-15T00:00:00",
- "2001-03-16T12:00:00",
- "2001-04-16T00:00:00",
- "2001-05-16T12:00:00",
- "2001-06-16T00:00:00",
- "2001-07-16T12:00:00",
- "2001-08-16T12:00:00",
- "2001-09-16T00:00:00",
- "2001-10-16T12:00:00",
- "2001-11-16T00:00:00",
- "2001-12-16T12:00:00",
- "2002-01-16T12:00:00",
- "2002-02-15T00:00:00",
- "2002-03-16T12:00:00",
- "2002-04-16T00:00:00",
- "2002-05-16T12:00:00",
- "2002-06-16T00:00:00",
- "2002-07-16T12:00:00",
- "2002-08-16T12:00:00",
- "2002-09-16T00:00:00",
- "2002-10-16T12:00:00",
- "2002-11-16T00:00:00",
- "2002-12-16T12:00:00",
- "2003-01-16T12:00:00",
- "2003-02-15T00:00:00",
- "2003-03-16T12:00:00",
- "2003-04-16T00:00:00",
- "2003-05-16T12:00:00",
- "2003-06-16T00:00:00",
- "2003-07-16T12:00:00",
- "2003-08-16T12:00:00",
- "2003-09-16T00:00:00",
- "2003-10-16T12:00:00",
- "2003-11-16T00:00:00",
- "2003-12-16T12:00:00",
- "2004-01-16T12:00:00",
- "2004-02-15T12:00:00",
- "2004-03-16T12:00:00",
- "2004-04-16T00:00:00",
- "2004-05-16T12:00:00",
- "2004-06-16T00:00:00",
- "2004-07-16T12:00:00",
- "2004-08-16T12:00:00",
- "2004-09-16T00:00:00",
- "2004-10-16T12:00:00",
- "2004-11-16T00:00:00",
- "2004-12-16T12:00:00",
- "2005-01-16T12:00:00",
- "2005-02-15T00:00:00",
- "2005-03-16T12:00:00",
- "2005-04-16T00:00:00",
- "2005-05-16T12:00:00",
- "2005-06-16T00:00:00",
- "2005-07-16T12:00:00",
- "2005-08-16T12:00:00",
- "2005-09-16T00:00:00",
- "2005-10-16T12:00:00",
- "2005-11-16T00:00:00",
- "2005-12-16T12:00:00",
- "2006-01-16T12:00:00",
- "2006-02-15T00:00:00",
- "2006-03-16T12:00:00",
- "2006-04-16T00:00:00",
- "2006-05-16T12:00:00",
- "2006-06-16T00:00:00",
- "2006-07-16T12:00:00",
- "2006-08-16T12:00:00",
- "2006-09-16T00:00:00",
- "2006-10-16T12:00:00",
- "2006-11-16T00:00:00",
- "2006-12-16T12:00:00",
- "2007-01-16T12:00:00",
- "2007-02-15T00:00:00",
- "2007-03-16T12:00:00",
- "2007-04-16T00:00:00",
- "2007-05-16T12:00:00",
- "2007-06-16T00:00:00",
- "2007-07-16T12:00:00",
- "2007-08-16T12:00:00",
- "2007-09-16T00:00:00",
- "2007-10-16T12:00:00",
- "2007-11-16T00:00:00",
- "2007-12-16T12:00:00",
- "2008-01-16T12:00:00",
- "2008-02-15T12:00:00",
- "2008-03-16T12:00:00",
- "2008-04-16T00:00:00",
- "2008-05-16T12:00:00",
- "2008-06-16T00:00:00",
- "2008-07-16T12:00:00",
- "2008-08-16T12:00:00",
- "2008-09-16T00:00:00",
- "2008-10-16T12:00:00",
- "2008-11-16T00:00:00",
- "2008-12-16T12:00:00",
- "2009-01-16T12:00:00",
- "2009-02-15T00:00:00",
- "2009-03-16T12:00:00",
- "2009-04-16T00:00:00",
- "2009-05-16T12:00:00",
- "2009-06-16T00:00:00",
- "2009-07-16T12:00:00",
- "2009-08-16T12:00:00",
- "2009-09-16T00:00:00",
- "2009-10-16T12:00:00",
- "2009-11-16T00:00:00",
- "2009-12-16T12:00:00",
- "2010-01-16T12:00:00",
- "2010-02-15T00:00:00",
- "2010-03-16T12:00:00",
- "2010-04-16T00:00:00",
- "2010-05-16T12:00:00",
- "2010-06-16T00:00:00",
- "2010-07-16T12:00:00",
- "2010-08-16T12:00:00",
- "2010-09-16T00:00:00",
- "2010-10-16T12:00:00",
- "2010-11-16T00:00:00",
- "2010-12-16T12:00:00",
- "2011-01-16T12:00:00",
- "2011-02-15T00:00:00",
- "2011-03-16T12:00:00",
- "2011-04-16T00:00:00",
- "2011-05-16T12:00:00",
- "2011-06-16T00:00:00",
- "2011-07-16T12:00:00",
- "2011-08-16T12:00:00",
- "2011-09-16T00:00:00",
- "2011-10-16T12:00:00",
- "2011-11-16T00:00:00",
- "2011-12-16T12:00:00",
- "2012-01-16T12:00:00",
- "2012-02-15T12:00:00",
- "2012-03-16T12:00:00",
- "2012-04-16T00:00:00",
- "2012-05-16T12:00:00",
- "2012-06-16T00:00:00",
- "2012-07-16T12:00:00",
- "2012-08-16T12:00:00",
- "2012-09-16T00:00:00",
- "2012-10-16T12:00:00",
- "2012-11-16T00:00:00",
- "2012-12-16T12:00:00",
- "2013-01-16T12:00:00",
- "2013-02-15T00:00:00",
- "2013-03-16T12:00:00",
- "2013-04-16T00:00:00",
- "2013-05-16T12:00:00",
- "2013-06-16T00:00:00",
- "2013-07-16T12:00:00",
- "2013-08-16T12:00:00",
- "2013-09-16T00:00:00",
- "2013-10-16T12:00:00",
- "2013-11-16T00:00:00",
- "2013-12-16T12:00:00",
- "2014-01-16T12:00:00",
- "2014-02-15T00:00:00",
- "2014-03-16T12:00:00",
- "2014-04-16T00:00:00",
- "2014-05-16T12:00:00",
- "2014-06-16T00:00:00",
- "2014-07-16T12:00:00",
- "2014-08-16T12:00:00",
- "2014-09-16T00:00:00",
- "2014-10-16T12:00:00",
- "2014-11-16T00:00:00",
- "2014-12-16T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Moisture in Upper Portion of Soil Column",
- "standard_name": "mass_content_of_water_in_soil_layer"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "global"
- },
- "values": [
- 0.2307900491279888,
- 0.2298427848971197,
- 0.228645841881822,
- 0.22342978184933282,
- 0.2151356217795733,
- 0.2093443583660247,
- 0.20524610544812674,
- 0.2031529492153884,
- 0.20411433154220618,
- 0.21209435317447306,
- 0.22443761589079567,
- 0.23084727017573747
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Moisture in Upper Portion of Soil Column",
- "standard_name": "mass_content_of_water_in_soil_layer"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WangMao",
- "region": "tropical"
- },
- "values": [
- 0.19304217874080007,
- 0.19065053275790506,
- 0.19766427165919118,
- 0.20686356535735032,
- 0.20391616747139027,
- 0.20603968104949638,
- 0.20698229353839392,
- 0.20564264095343665,
- 0.20526418346786623,
- 0.2052697860409567,
- 0.20147463296912396,
- 0.19849022493860166
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "dimensionless",
- "long_name": "Moisture in Upper Portion of Soil Column",
- "standard_name": "mass_content_of_water_in_soil_layer"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "global"
- },
- "values": [
- 0.24601096858663102,
- 0.24980437850435452,
- 0.2506036887754174,
- 0.24924819392944383,
- 0.24365311044745733,
- 0.23824335429789034,
- 0.23169691068753176,
- 0.22983735240085154,
- 0.23013432863401578,
- 0.23363870733637562,
- 0.24230681535442558,
- 0.24524355940972659,
- 0.24592710264540496,
- 0.24723580500527764,
- 0.25023617577684437,
- 0.24709988412079437,
- 0.24031178557742444,
- 0.2372542154773589,
- 0.23032663824257849,
- 0.22656726812295871,
- 0.22809461102925366,
- 0.2319230287894851,
- 0.23733685596093682,
- 0.24196764952852692,
- 0.24521974233573987,
- 0.24652819167339712,
- 0.24605510528635274,
- 0.245598373806861,
- 0.23975386041150745,
- 0.23450897902903012,
- 0.2261429321142745,
- 0.2243683758745835,
- 0.2261957289859844,
- 0.22939237685598832,
- 0.2366113504192934,
- 0.2413305935922668,
- 0.24389722894783714,
- 0.24734124608392952,
- 0.24792807308031178,
- 0.24797574503074218,
- 0.23944415960158075,
- 0.2354459110282329,
- 0.23006172819229292,
- 0.2271994891869367,
- 0.2294123321930172,
- 0.23195143395265286,
- 0.23724459464414185,
- 0.24307694946321487,
- 0.24859937401444476,
- 0.24956551887429573,
- 0.24728220062334702,
- 0.24778322245173034,
- 0.24224431689605172,
- 0.23605605545226546,
- 0.2311078417212051,
- 0.22828862520247614,
- 0.22806464529787238,
- 0.23048092842122117,
- 0.23880853803702196,
- 0.24455040240767664,
- 0.24809986120756078,
- 0.24792153184402949,
- 0.24832924448563926,
- 0.24445477189070489,
- 0.24082949902408687,
- 0.23586622604100893,
- 0.2305455042114449,
- 0.2280956051692743,
- 0.2269924226689354,
- 0.22931051427154459,
- 0.23428311353303014,
- 0.23951839334811006,
- 0.24579292032624156,
- 0.24795191563146007,
- 0.24949174326153814,
- 0.25019508919953093,
- 0.2421822074356033,
- 0.23320860482655745,
- 0.22628187094654034,
- 0.22493063244023065,
- 0.22730046926900396,
- 0.23081045019795154,
- 0.23906460817972514,
- 0.24446988933341143,
- 0.2478580156860908,
- 0.24700517172236294,
- 0.24797929554521786,
- 0.2475347265392332,
- 0.24057184353596406,
- 0.23479154435898913,
- 0.22903297968102884,
- 0.22769248022816327,
- 0.22801969791582652,
- 0.2286715165747845,
- 0.232704477841619,
- 0.24107036652670244,
- 0.24559659439264336,
- 0.24689381634285298,
- 0.24655141012866869,
- 0.24333780978894284,
- 0.2382503213352036,
- 0.2348941382745236,
- 0.2298475772766482,
- 0.22890267032604236,
- 0.23119208656148238,
- 0.2335370557609337,
- 0.2401191536758889,
- 0.24457895113869696,
- 0.24713409553485105,
- 0.2501966214714653,
- 0.24870437547990704,
- 0.24797935641438829,
- 0.24093891065599526,
- 0.23514929276874558,
- 0.22950878836261498,
- 0.2256998951725961,
- 0.2266412817802612,
- 0.23095012681558919,
- 0.2374022935702445,
- 0.2446289284584089,
- 0.24843346494499072,
- 0.25045246150180356,
- 0.251250213595393,
- 0.2492158986304246,
- 0.24448222563870095,
- 0.2370006237460296,
- 0.2316940529554471,
- 0.22947541939877145,
- 0.2330236364985883,
- 0.23463308340425557,
- 0.24032795440998997,
- 0.24540032763352523,
- 0.2484165949525173,
- 0.252144577127908,
- 0.25340749699481896,
- 0.25007705367804967,
- 0.24188135857895235,
- 0.23449300251960228,
- 0.22917387036859876,
- 0.2266890088053286,
- 0.2255865783793209,
- 0.2311627419874025,
- 0.2378119549185882,
- 0.24197141309499115,
- 0.24445443055525287,
- 0.24592279091371794,
- 0.24662342388122718,
- 0.24520798434841784,
- 0.23826319279169528,
- 0.2318875592216113,
- 0.22677760579674947,
- 0.22401748094014037,
- 0.22508032970090747,
- 0.22765328781531352,
- 0.23518690837252318,
- 0.2419613337118358,
- 0.24355781546454727,
- 0.24509740010004513,
- 0.24494179787100673,
- 0.24456800571645834,
- 0.24043636799561285,
- 0.236056463723611,
- 0.23025297315458204,
- 0.2268815565854919,
- 0.2291095688707362,
- 0.2318724490425096,
- 0.23980275975752693,
- 0.24517212319160916,
- 0.24717583705350174,
- 0.24872988581121777,
- 0.24976272930575533,
- 0.24773999356822698,
- 0.24272771106005564,
- 0.2351386043212683,
- 0.22849009785918586,
- 0.2267280924166856,
- 0.22846796740650022,
- 0.2300981750427344,
- 0.23806219747276486,
- 0.2433089488455087
- ],
- "index": [
- "2000-01-15T00:00:00",
- "2000-02-15T00:00:00",
- "2000-03-15T00:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T00:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T00:00:00",
- "2000-08-15T00:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T00:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T00:00:00",
- "2001-01-15T00:00:00",
- "2001-02-15T00:00:00",
- "2001-03-15T00:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T00:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T00:00:00",
- "2001-08-15T00:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T00:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T00:00:00",
- "2002-01-15T00:00:00",
- "2002-02-15T00:00:00",
- "2002-03-15T00:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T00:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T00:00:00",
- "2002-08-15T00:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T00:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T00:00:00",
- "2003-01-15T00:00:00",
- "2003-02-15T00:00:00",
- "2003-03-15T00:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T00:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T00:00:00",
- "2003-08-15T00:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T00:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T00:00:00",
- "2004-01-15T00:00:00",
- "2004-02-15T00:00:00",
- "2004-03-15T00:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T00:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T00:00:00",
- "2004-08-15T00:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T00:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T00:00:00",
- "2005-01-15T00:00:00",
- "2005-02-15T00:00:00",
- "2005-03-15T00:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T00:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T00:00:00",
- "2005-08-15T00:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T00:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T00:00:00",
- "2006-01-15T00:00:00",
- "2006-02-15T00:00:00",
- "2006-03-15T00:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T00:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T00:00:00",
- "2006-08-15T00:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T00:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T00:00:00",
- "2007-01-15T00:00:00",
- "2007-02-15T00:00:00",
- "2007-03-15T00:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T00:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T00:00:00",
- "2007-08-15T00:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T00:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T00:00:00",
- "2008-01-15T00:00:00",
- "2008-02-15T00:00:00",
- "2008-03-15T00:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T00:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T00:00:00",
- "2008-08-15T00:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T00:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T00:00:00",
- "2009-01-15T00:00:00",
- "2009-02-15T00:00:00",
- "2009-03-15T00:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T00:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T00:00:00",
- "2009-08-15T00:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T00:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T00:00:00",
- "2010-01-15T00:00:00",
- "2010-02-15T00:00:00",
- "2010-03-15T00:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T00:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T00:00:00",
- "2010-08-15T00:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T00:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T00:00:00",
- "2011-01-15T00:00:00",
- "2011-02-15T00:00:00",
- "2011-03-15T00:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T00:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T00:00:00",
- "2011-08-15T00:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T00:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T00:00:00",
- "2012-01-15T00:00:00",
- "2012-02-15T00:00:00",
- "2012-03-15T00:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T00:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T00:00:00",
- "2012-08-15T00:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T00:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T00:00:00",
- "2013-01-15T00:00:00",
- "2013-02-15T00:00:00",
- "2013-03-15T00:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T00:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T00:00:00",
- "2013-08-15T00:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T00:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T00:00:00",
- "2014-01-15T00:00:00",
- "2014-02-15T00:00:00",
- "2014-03-15T00:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T00:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T00:00:00",
- "2014-08-15T00:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T00:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T00:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "dimensionless",
- "long_name": "trace_global",
- "standard_name": "soil_moisture_content"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "tropical"
- },
- "values": [
- 0.2964727872573831,
- 0.2952398179399011,
- 0.295795710320537,
- 0.30076148101403577,
- 0.3001948477470199,
- 0.30057581107256065,
- 0.2969550755387769,
- 0.2979344122188651,
- 0.30065783954262737,
- 0.2997539837670018,
- 0.30307248685025867,
- 0.2985706669328548,
- 0.2938236681889523,
- 0.28709655616425056,
- 0.2936264514778351,
- 0.2948598866125384,
- 0.29445687413515625,
- 0.2980723007702561,
- 0.29347048973985995,
- 0.2879828279126614,
- 0.29264932832258933,
- 0.29822184006727226,
- 0.2968738274236979,
- 0.29396344325444695,
- 0.2940397667584985,
- 0.2896619698538294,
- 0.29337236416011025,
- 0.29406538619286077,
- 0.29130061954550573,
- 0.29235624931105053,
- 0.28682511876231637,
- 0.28693800083364857,
- 0.2908501059090429,
- 0.2902247259052745,
- 0.29580851643794787,
- 0.29313096487709983,
- 0.28781305312186406,
- 0.2866301812053935,
- 0.2903886902374903,
- 0.29647706575403754,
- 0.29003879316287995,
- 0.29623123951145314,
- 0.294225748627709,
- 0.2917669562953755,
- 0.29657861872751,
- 0.29988289332244333,
- 0.2970530674640704,
- 0.2913444987010622,
- 0.29320635517993393,
- 0.29072239419998885,
- 0.29000181623536136,
- 0.29750804231841554,
- 0.29653582633532993,
- 0.2930155296045149,
- 0.29454008768070256,
- 0.28948454116743466,
- 0.2914260210301238,
- 0.2940212299064644,
- 0.2934738625432973,
- 0.2906686222528182,
- 0.2887674720300741,
- 0.2863030160545719,
- 0.2909092862828537,
- 0.29018847091303096,
- 0.29524432926551913,
- 0.2923230260582378,
- 0.2903345879894511,
- 0.28476515017014753,
- 0.2881182793416801,
- 0.2947796354001205,
- 0.2945874586387552,
- 0.29602198210790454,
- 0.29187355710714113,
- 0.2900473515468994,
- 0.29785000812141227,
- 0.30342363889027235,
- 0.3044116210509582,
- 0.29881008762238404,
- 0.2924624198855041,
- 0.2898162137461986,
- 0.29489013228669675,
- 0.300196182202658,
- 0.30153785992848064,
- 0.29680989304644495,
- 0.29031859188699066,
- 0.28799411845799777,
- 0.2885682197939996,
- 0.2949740115314511,
- 0.2968569698235972,
- 0.294978669807936,
- 0.2914167720867979,
- 0.2930104413990738,
- 0.29359303001712556,
- 0.2958352181403006,
- 0.2970224057938059,
- 0.29784985068166697,
- 0.2960455304568544,
- 0.2944551737937366,
- 0.29988606365742393,
- 0.3016947137793425,
- 0.2989092556726421,
- 0.29692637754115214,
- 0.2930286378258441,
- 0.2930404815749758,
- 0.2960063540834224,
- 0.30028032685945233,
- 0.2982702291897225,
- 0.29909476439492666,
- 0.2957629953436727,
- 0.29665165843150243,
- 0.29698110456182375,
- 0.3007573526895158,
- 0.30066325079182976,
- 0.2960105087102163,
- 0.29464723372677115,
- 0.29042534499634937,
- 0.2903069501006889,
- 0.2968009503684386,
- 0.294544712629404,
- 0.2920543185308662,
- 0.2891828697701661,
- 0.2859736723511348,
- 0.2922435711852423,
- 0.2958354126461225,
- 0.29736358293600607,
- 0.29586958866272667,
- 0.2960415380647177,
- 0.2920041296962583,
- 0.29341264387854143,
- 0.3003163731243527,
- 0.3058777858150181,
- 0.30195870324397395,
- 0.29661270540199053,
- 0.29572755813682955,
- 0.3015405763912011,
- 0.3029773905542501,
- 0.2982971684531965,
- 0.29283115930131226,
- 0.2913866262498071,
- 0.2878109267391534,
- 0.29078380396195325,
- 0.3036267418564961,
- 0.3021289230746004,
- 0.29436256339736266,
- 0.29247412983326765,
- 0.29095728675571003,
- 0.29164384029481477,
- 0.29733275541361254,
- 0.2992214999926661,
- 0.2960390908971978,
- 0.29308959278782687,
- 0.2866813597251191,
- 0.2879979342607628,
- 0.2921414037012079,
- 0.29667877401185844,
- 0.2930095469821917,
- 0.28776507905053544,
- 0.28823216050938594,
- 0.2915747874983681,
- 0.2946425963285214,
- 0.2936932411156976,
- 0.29506560116032143,
- 0.29423521129590496,
- 0.28988822007452497,
- 0.2935115742414108,
- 0.3002067385098174,
- 0.3026038153908886,
- 0.29904273421879085,
- 0.29070293632373284,
- 0.2870484014589769,
- 0.2923022348829413,
- 0.2983140316884264,
- 0.2997474462551521,
- 0.29394527927448105,
- 0.28906232971166984,
- 0.28938948602353265,
- 0.2912022905361439,
- 0.2927483691839875,
- 0.297345934430481,
- 0.2926177277149741
- ],
- "index": [
- "2000-01-15T00:00:00",
- "2000-02-15T00:00:00",
- "2000-03-15T00:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T00:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T00:00:00",
- "2000-08-15T00:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T00:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T00:00:00",
- "2001-01-15T00:00:00",
- "2001-02-15T00:00:00",
- "2001-03-15T00:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T00:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T00:00:00",
- "2001-08-15T00:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T00:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T00:00:00",
- "2002-01-15T00:00:00",
- "2002-02-15T00:00:00",
- "2002-03-15T00:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T00:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T00:00:00",
- "2002-08-15T00:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T00:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T00:00:00",
- "2003-01-15T00:00:00",
- "2003-02-15T00:00:00",
- "2003-03-15T00:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T00:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T00:00:00",
- "2003-08-15T00:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T00:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T00:00:00",
- "2004-01-15T00:00:00",
- "2004-02-15T00:00:00",
- "2004-03-15T00:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T00:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T00:00:00",
- "2004-08-15T00:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T00:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T00:00:00",
- "2005-01-15T00:00:00",
- "2005-02-15T00:00:00",
- "2005-03-15T00:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T00:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T00:00:00",
- "2005-08-15T00:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T00:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T00:00:00",
- "2006-01-15T00:00:00",
- "2006-02-15T00:00:00",
- "2006-03-15T00:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T00:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T00:00:00",
- "2006-08-15T00:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T00:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T00:00:00",
- "2007-01-15T00:00:00",
- "2007-02-15T00:00:00",
- "2007-03-15T00:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T00:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T00:00:00",
- "2007-08-15T00:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T00:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T00:00:00",
- "2008-01-15T00:00:00",
- "2008-02-15T00:00:00",
- "2008-03-15T00:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T00:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T00:00:00",
- "2008-08-15T00:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T00:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T00:00:00",
- "2009-01-15T00:00:00",
- "2009-02-15T00:00:00",
- "2009-03-15T00:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T00:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T00:00:00",
- "2009-08-15T00:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T00:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T00:00:00",
- "2010-01-15T00:00:00",
- "2010-02-15T00:00:00",
- "2010-03-15T00:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T00:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T00:00:00",
- "2010-08-15T00:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T00:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T00:00:00",
- "2011-01-15T00:00:00",
- "2011-02-15T00:00:00",
- "2011-03-15T00:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T00:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T00:00:00",
- "2011-08-15T00:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T00:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T00:00:00",
- "2012-01-15T00:00:00",
- "2012-02-15T00:00:00",
- "2012-03-15T00:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T00:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T00:00:00",
- "2012-08-15T00:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T00:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T00:00:00",
- "2013-01-15T00:00:00",
- "2013-02-15T00:00:00",
- "2013-03-15T00:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T00:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T00:00:00",
- "2013-08-15T00:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T00:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T00:00:00",
- "2014-01-15T00:00:00",
- "2014-02-15T00:00:00",
- "2014-03-15T00:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T00:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T00:00:00",
- "2014-08-15T00:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T00:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T00:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "dimensionless",
- "long_name": "trace_tropical",
- "standard_name": "soil_moisture_content"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "global"
- },
- "values": [
- 0.24641160310988378,
- 0.24818608750720814,
- 0.24860979827276247,
- 0.24720107394092908,
- 0.24106472473239365,
- 0.23533297167244824,
- 0.22939609143804754,
- 0.22702493015136835,
- 0.22822104567944734,
- 0.23107239175124852,
- 0.23780490507651386,
- 0.24321665531228107
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "dimensionless",
- "long_name": "cycle_global",
- "standard_name": "soil_moisture_content"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "tropical"
- },
- "values": [
- 0.292324099847404,
- 0.29018275445734,
- 0.29377898167342764,
- 0.2975874824217624,
- 0.2971290217522106,
- 0.29553670128705317,
- 0.2927814313315778,
- 0.290062566171555,
- 0.2927989937493547,
- 0.29726910748768626,
- 0.29845864397481886,
- 0.2953666853558252
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "dimensionless",
- "long_name": "cycle_tropical",
- "standard_name": "soil_moisture_content"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/None_None_accumulation.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/None_None_accumulation.png
deleted file mode 100644
index a88a908..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/None_None_accumulation.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/diagnostic.json
deleted file mode 100644
index daae534..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/diagnostic.json
+++ /dev/null
@@ -1,74 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "None": {
- "LongName": "None",
- "Description": "Reference data extents",
- "Generator": "N/A"
- }
- },
- "metric": {
- "nbp": {}
- },
- "statistic": {
- "nbp(2010)": {
- "type": "scalar",
- "units": "Pg"
- },
- "diff(2010)": {
- "type": "scalar",
- "units": "Pg"
- },
- "Difference Score": {
- "type": "score",
- "units": "1"
- },
- "Trajectory Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "None": {
- "nbp": {
- "Difference Score": 0.1899653799845261,
- "Trajectory Score": 0.040173213420733,
- "diff(2010)": -106.3086430368222,
- "nbp(2010)": -98.2640672102777
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/index.html
deleted file mode 100644
index d80b150..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/index.html
+++ /dev/null
@@ -1,355 +0,0 @@
-
-
-
-
-
-nbp-hoffman
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
nbp
-
-
-
-
-
-
-
-
-
All Models
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/output.json
deleted file mode 100644
index e93e85c..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/output.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "None_None_accumulation.png": {
- "filename": "None_None_accumulation.png",
- "long_name": "",
- "description": "",
- "dimensions": {
- "region": "None"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "Hoffman"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_bias.png
deleted file mode 100644
index 851e82b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_biasscore.png
deleted file mode 100644
index 0daf775..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_cycle.png
deleted file mode 100644
index 46aaa22..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_cyclescore.png
deleted file mode 100644
index 1c33d15..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_mean.png
deleted file mode 100644
index c75ac69..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_rmse.png
deleted file mode 100644
index fd1b15d..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_rmsescore.png
deleted file mode 100644
index 7f27049..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_shift.png
deleted file mode 100644
index daebf06..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_tmax.png
deleted file mode 100644
index 7ba337f..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_trace.png
deleted file mode 100644
index 4f40407..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_global_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_bias.png
deleted file mode 100644
index 7e511b7..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_biasscore.png
deleted file mode 100644
index 99467cd..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_cycle.png
deleted file mode 100644
index f83de05..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_cyclescore.png
deleted file mode 100644
index 652e95b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_mean.png
deleted file mode 100644
index 15a0fc3..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_rmse.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_rmse.png
deleted file mode 100644
index 9a8af57..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_rmse.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_rmsescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_rmsescore.png
deleted file mode 100644
index 08383be..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_rmsescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_shift.png
deleted file mode 100644
index caf04fd..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_tmax.png
deleted file mode 100644
index 06ddf1c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_trace.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_trace.png
deleted file mode 100644
index 246a9c5..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/CESM2-r1i1p1f1-gn_tropical_trace.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/None_global_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/None_global_taylor.png
deleted file mode 100644
index 7283e3a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/None_global_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/None_tropical_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/None_tropical_taylor.png
deleted file mode 100644
index 54d9538..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/None_tropical_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_global_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_global_mean.png
deleted file mode 100644
index e3bcab6..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_global_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_global_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_global_tmax.png
deleted file mode 100644
index 9663410..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_global_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_tropical_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_tropical_mean.png
deleted file mode 100644
index 536d614..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_tropical_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_tropical_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_tropical_tmax.png
deleted file mode 100644
index ef66fbc..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/Reference_tropical_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/diagnostic.json
deleted file mode 100644
index 5de0b31..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/diagnostic.json
+++ /dev/null
@@ -1,138 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "CESM2": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "global": {
- "LongName": "Global - Land",
- "Description": "Global - Land",
- "Generator": "GlobalLand.nc"
- },
- "tropical": {
- "LongName": "Tropical climates",
- "Description": "Tropical climates",
- "Generator": "Koppen_coarse.nc"
- }
- },
- "metric": {
- "Bias": {},
- "RMSE": {},
- "Annual Cycle": {},
- "Spatial Distribution": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "%"
- },
- "Bias": {
- "type": "scalar",
- "units": "%"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "RMSE": {
- "type": "scalar",
- "units": "%"
- },
- "RMSE Score": {
- "type": "score",
- "units": "1"
- },
- "Phase Shift": {
- "type": "scalar",
- "units": "month"
- },
- "Seasonal Cycle Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "CESM2": {
- "r1i1p1f1": {
- "gn": {
- "global": {
- "Annual Cycle": {
- "Phase Shift": 0.5164660981748402,
- "Seasonal Cycle Score": 0.880055488577528
- },
- "Bias": {
- "Bias": -0.2712996469755923,
- "Bias Score": 0.5466892472141689,
- "Period Mean": 23.35515380083739
- },
- "RMSE": {
- "RMSE": 11.335306372328944,
- "RMSE Score": 0.3634423063307926
- },
- "Spatial Distribution": {
- "Correlation": 0.8170370672994209,
- "Normalized Standard Deviation": 1.7605310643073582,
- "Spatial Distribution Score": 0.6702330216549381
- }
- },
- "tropical": {
- "Annual Cycle": {
- "Phase Shift": 0.1027300601050646,
- "Seasonal Cycle Score": 0.9744850383909792
- },
- "Bias": {
- "Bias": 0.0072305200493562,
- "Bias Score": 0.432800306090969,
- "Period Mean": 0.8005981756362853
- },
- "RMSE": {
- "RMSE": 0.0415688391584803,
- "RMSE Score": 0.2549728546078997
- },
- "Spatial Distribution": {
- "Correlation": -0.0029291057158825,
- "Normalized Standard Deviation": 0.2690557248937159,
- "Spatial Distribution Score": 0.1255261479444317
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/index.html
deleted file mode 100644
index 99f2797..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/index.html
+++ /dev/null
@@ -1,424 +0,0 @@
-
-
-
-
-
-snc-esacci
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bias
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Annual Cycle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Spatial Distribution
-
-
-
-
-
-
-
-
-
All Models
-
-
- bias
-
- biasscore
-
- cycle
-
- cyclescore
-
- mean
-
- rmse
-
- rmsescore
-
- shift
-
- tmax
-
- trace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/output.json
deleted file mode 100644
index a4d5567..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/output.json
+++ /dev/null
@@ -1,376 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "CESM2-r1i1p1f1-gn_global_biasscore.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_biasscore.png",
- "long_name": "The bias score for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "Bias score"
- }
- },
- "CESM2-r1i1p1f1-gn_global_shift.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_shift.png",
- "long_name": "The shift in maximum month for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "Shift in maximum month"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_biasscore.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_biasscore.png",
- "long_name": "The bias score for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "Bias score"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_trace.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_trace.png",
- "long_name": "The regional mean for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "Regional mean"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_tmax.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_tmax.png",
- "long_name": "The maxmimum month for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "Maximum month"
- }
- },
- "CESM2-r1i1p1f1-gn_global_cycle.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_cycle.png",
- "long_name": "The annual cycle for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "Annual cycle"
- }
- },
- "None_tropical_taylor.png": {
- "filename": "None_tropical_taylor.png",
- "long_name": "The Taylor diagram over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "Taylor diagram"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_rmsescore.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_rmsescore.png",
- "long_name": "The RMSE score for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "RMSE score"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_cycle.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_cycle.png",
- "long_name": "The annual cycle for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "Annual cycle"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_shift.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_shift.png",
- "long_name": "The shift in maximum month for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "Shift in maximum month"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_rmse.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_rmse.png",
- "long_name": "The RMSE for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "RMSE"
- }
- },
- "CESM2-r1i1p1f1-gn_global_tmax.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_tmax.png",
- "long_name": "The maxmimum month for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "Maximum month"
- }
- },
- "None_global_taylor.png": {
- "filename": "None_global_taylor.png",
- "long_name": "The Taylor diagram over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "Taylor diagram"
- }
- },
- "Reference_tropical_mean.png": {
- "filename": "Reference_tropical_mean.png",
- "long_name": "The period mean for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "Reference_global_tmax.png": {
- "filename": "Reference_global_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "CESM2-r1i1p1f1-gn_global_bias.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_bias.png",
- "long_name": "The bias for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "Bias"
- }
- },
- "CESM2-r1i1p1f1-gn_global_rmse.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_rmse.png",
- "long_name": "The RMSE for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "RMSE"
- }
- },
- "CESM2-r1i1p1f1-gn_global_trace.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_trace.png",
- "long_name": "The regional mean for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "Regional mean"
- }
- },
- "CESM2-r1i1p1f1-gn_global_mean.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_mean.png",
- "long_name": "The period mean for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "Period Mean"
- }
- },
- "CESM2-r1i1p1f1-gn_global_cyclescore.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_cyclescore.png",
- "long_name": "The annual cycle score for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "Annual cycle score"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_bias.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_bias.png",
- "long_name": "The bias for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "Bias"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_mean.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_mean.png",
- "long_name": "The period mean for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "Period Mean"
- }
- },
- "Reference_global_mean.png": {
- "filename": "Reference_global_mean.png",
- "long_name": "The period mean for the reference data over the Global - Land region.",
- "description": "",
- "dimensions": {
- "region": "global",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "CESM2-r1i1p1f1-gn_global_rmsescore.png": {
- "filename": "CESM2-r1i1p1f1-gn_global_rmsescore.png",
- "long_name": "The RMSE score for CESM2-r1i1p1f1-gn over the Global - Land region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global",
- "statistic": "RMSE score"
- }
- },
- "CESM2-r1i1p1f1-gn_tropical_cyclescore.png": {
- "filename": "CESM2-r1i1p1f1-gn_tropical_cyclescore.png",
- "long_name": "The annual cycle score for CESM2-r1i1p1f1-gn over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical",
- "statistic": "Annual cycle score"
- }
- },
- "Reference_tropical_tmax.png": {
- "filename": "Reference_tropical_tmax.png",
- "long_name": "The maxmimum month for the reference data over the Tropical climates region.",
- "description": "",
- "dimensions": {
- "region": "tropical",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/series.json
deleted file mode 100644
index 05eb933..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/snc-esacci/155e48e4efa2f554a687a8dbc010a169c35d6e27/series.json
+++ /dev/null
@@ -1,1690 +0,0 @@
-[
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global"
- },
- "values": [
- 36.66711770097405,
- 37.35990461214088,
- 33.78351854273541,
- 28.42207660872698,
- 18.924580733076102,
- 14.271282246786749,
- 12.721673339238325,
- 11.555401610565138,
- 12.556050917862233,
- 17.88818941294216,
- 28.477701255174015,
- 34.1923990193813,
- 37.90750637559582,
- 38.61368278403065,
- 34.64396011101023,
- 26.269270630658763,
- 19.302311516238554,
- 14.711776637571264,
- 12.544989939963449,
- 11.74618238741186,
- 12.003228825585452,
- 17.43948168422278,
- 26.714007087432527,
- 34.09800598687865,
- 38.86923712851006,
- 39.2462071483771,
- 35.331326720196365,
- 25.14638693040078,
- 17.32803098256485,
- 13.906083859249383,
- 12.129056225232778,
- 11.366960261339099,
- 11.968033291672443,
- 16.965532147897424,
- 24.369168319587903,
- 33.2735068825781,
- 40.49673421048056,
- 37.42982440447155,
- 33.786893150892126,
- 27.1672908273462,
- 18.363478557099175,
- 13.664736148092489,
- 12.267365967962913,
- 11.45470605373798,
- 11.951583501552465,
- 17.03427938018696,
- 25.79350828294864,
- 35.7323739817568,
- 38.42734105482589,
- 37.42036280738807,
- 34.767857993597325,
- 25.33052610451204,
- 17.701063813805085,
- 13.727136621651916,
- 11.565188044717612,
- 11.445991758634609,
- 12.233499774044036,
- 18.58502038923722,
- 27.45231674304033,
- 33.68205804474915,
- 37.32139284000611,
- 36.38458691492609,
- 33.421069337071934,
- 26.106805138274858,
- 18.7800903778068,
- 14.033655905440712,
- 12.04608571491498,
- 11.602417362726142,
- 12.017223184344926,
- 18.822344134924066,
- 26.736813657892547,
- 34.094769763682635,
- 37.1410544010349,
- 37.75839426636045,
- 34.33159776454715,
- 25.93556832302755,
- 18.54073751079801,
- 14.087716453214725,
- 11.934235287854403,
- 11.320163540510784,
- 12.358294914147816,
- 17.52874138124723,
- 25.778593984623473,
- 32.41156839857994,
- 37.02785512188599,
- 38.05754762198183,
- 33.259310346730366,
- 26.5222514311737,
- 19.228590511918394,
- 14.132946550459565,
- 12.08863520695634,
- 11.74767315370743,
- 12.240238843684523,
- 16.69304834861351,
- 25.625374017971193,
- 32.47607896530046,
- 36.42688965165843,
- 38.04888207068818,
- 33.29611381566752,
- 26.74831324431402,
- 18.468268478190957,
- 13.94855403195974,
- 11.700943202516,
- 11.305748170842909,
- 11.955834913792147,
- 18.40388706456764,
- 26.534763592569515,
- 34.24110804680321,
- 37.91213026191721,
- 37.92452306151641,
- 35.25056029075319,
- 29.53139863695703,
- 19.708085058256675,
- 13.924218245744223,
- 11.546728769098108,
- 11.345884709699765,
- 12.31552583190824,
- 17.543554127622226,
- 26.837186389470173,
- 34.90596048250293,
- 39.982644147965665,
- 38.64675204675397,
- 33.507842726480455,
- 26.08120120436837,
- 18.170343695526633,
- 14.465699017703066,
- 11.796896630790785,
- 11.280379736024551,
- 12.458238057130977,
- 17.1373818490882,
- 26.37318262980241,
- 34.22408614319766,
- 37.910102180780996,
- 36.72061575414427,
- 33.41300609222101,
- 23.85511555828957,
- 18.39335475346475,
- 14.46163482710287,
- 12.538764630142389,
- 11.330592926956133,
- 12.174195270361334,
- 17.57233892750214,
- 26.102599915672513,
- 32.56023736543512,
- 36.71979468013476,
- 37.77021429824688,
- 31.912068807063537,
- 23.593240685030626,
- 18.033530510468506,
- 14.318198371575415,
- 12.055412382540124,
- 11.279233601967158,
- 11.709219444585234,
- 19.378426459689074,
- 26.447776110173763,
- 32.84379122118901,
- 39.3452485600111,
- 37.44290735012606,
- 31.84339872593785,
- 26.503093393654524,
- 18.374472777720193,
- 13.436043747081007,
- 11.861846832437942,
- 11.273510516932014,
- 12.475749261088263,
- 17.48904507248657,
- 24.25238949308331,
- 31.73658467221385,
- 36.490154675489485,
- 36.31647382894623,
- 32.16399601006007,
- 25.713353720672966,
- 18.612109978651755,
- 13.823408559506525,
- 11.593477564405928,
- 11.299410933647101,
- 12.420101194972647,
- 16.940177604674734,
- 26.535493844000698,
- 32.825828156850505
- ],
- "index": [
- "2000-01-15T12:00:00",
- "2000-02-14T00:00:00",
- "2000-03-15T12:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T12:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T12:00:00",
- "2000-08-15T12:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T12:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T12:00:00",
- "2001-01-15T12:00:00",
- "2001-02-14T00:00:00",
- "2001-03-15T12:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T12:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T12:00:00",
- "2001-08-15T12:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T12:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T12:00:00",
- "2002-01-15T12:00:00",
- "2002-02-14T00:00:00",
- "2002-03-15T12:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T12:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T12:00:00",
- "2002-08-15T12:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T12:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T12:00:00",
- "2003-01-15T12:00:00",
- "2003-02-14T00:00:00",
- "2003-03-15T12:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T12:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T12:00:00",
- "2003-08-15T12:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T12:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T12:00:00",
- "2004-01-15T12:00:00",
- "2004-02-14T00:00:00",
- "2004-03-15T12:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T12:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T12:00:00",
- "2004-08-15T12:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T12:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T12:00:00",
- "2005-01-15T12:00:00",
- "2005-02-14T00:00:00",
- "2005-03-15T12:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T12:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T12:00:00",
- "2005-08-15T12:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T12:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T12:00:00",
- "2006-01-15T12:00:00",
- "2006-02-14T00:00:00",
- "2006-03-15T12:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T12:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T12:00:00",
- "2006-08-15T12:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T12:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T12:00:00",
- "2007-01-15T12:00:00",
- "2007-02-14T00:00:00",
- "2007-03-15T12:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T12:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T12:00:00",
- "2007-08-15T12:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T12:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T12:00:00",
- "2008-01-15T12:00:00",
- "2008-02-14T00:00:00",
- "2008-03-15T12:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T12:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T12:00:00",
- "2008-08-15T12:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T12:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T12:00:00",
- "2009-01-15T12:00:00",
- "2009-02-14T00:00:00",
- "2009-03-15T12:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T12:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T12:00:00",
- "2009-08-15T12:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T12:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T12:00:00",
- "2010-01-15T12:00:00",
- "2010-02-14T00:00:00",
- "2010-03-15T12:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T12:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T12:00:00",
- "2010-08-15T12:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T12:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T12:00:00",
- "2011-01-15T12:00:00",
- "2011-02-14T00:00:00",
- "2011-03-15T12:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T12:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T12:00:00",
- "2011-08-15T12:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T12:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T12:00:00",
- "2012-01-15T12:00:00",
- "2012-02-14T00:00:00",
- "2012-03-15T12:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T12:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T12:00:00",
- "2012-08-15T12:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T12:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T12:00:00",
- "2013-01-15T12:00:00",
- "2013-02-14T00:00:00",
- "2013-03-15T12:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T12:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T12:00:00",
- "2013-08-15T12:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T12:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T12:00:00",
- "2014-01-15T12:00:00",
- "2014-02-14T00:00:00",
- "2014-03-15T12:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T12:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T12:00:00",
- "2014-08-15T12:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T12:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "percent",
- "long_name": "Snow Area Percentage",
- "standard_name": "surface_snow_area_fraction"
- }
- },
- {
- "dimensions": {
- "metric": "trace",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical"
- },
- "values": [
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853
- ],
- "index": [
- "2000-01-15T12:00:00",
- "2000-02-14T00:00:00",
- "2000-03-15T12:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T12:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T12:00:00",
- "2000-08-15T12:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T12:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T12:00:00",
- "2001-01-15T12:00:00",
- "2001-02-14T00:00:00",
- "2001-03-15T12:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T12:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T12:00:00",
- "2001-08-15T12:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T12:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T12:00:00",
- "2002-01-15T12:00:00",
- "2002-02-14T00:00:00",
- "2002-03-15T12:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T12:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T12:00:00",
- "2002-08-15T12:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T12:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T12:00:00",
- "2003-01-15T12:00:00",
- "2003-02-14T00:00:00",
- "2003-03-15T12:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T12:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T12:00:00",
- "2003-08-15T12:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T12:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T12:00:00",
- "2004-01-15T12:00:00",
- "2004-02-14T00:00:00",
- "2004-03-15T12:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T12:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T12:00:00",
- "2004-08-15T12:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T12:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T12:00:00",
- "2005-01-15T12:00:00",
- "2005-02-14T00:00:00",
- "2005-03-15T12:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T12:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T12:00:00",
- "2005-08-15T12:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T12:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T12:00:00",
- "2006-01-15T12:00:00",
- "2006-02-14T00:00:00",
- "2006-03-15T12:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T12:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T12:00:00",
- "2006-08-15T12:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T12:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T12:00:00",
- "2007-01-15T12:00:00",
- "2007-02-14T00:00:00",
- "2007-03-15T12:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T12:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T12:00:00",
- "2007-08-15T12:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T12:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T12:00:00",
- "2008-01-15T12:00:00",
- "2008-02-14T00:00:00",
- "2008-03-15T12:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T12:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T12:00:00",
- "2008-08-15T12:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T12:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T12:00:00",
- "2009-01-15T12:00:00",
- "2009-02-14T00:00:00",
- "2009-03-15T12:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T12:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T12:00:00",
- "2009-08-15T12:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T12:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T12:00:00",
- "2010-01-15T12:00:00",
- "2010-02-14T00:00:00",
- "2010-03-15T12:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T12:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T12:00:00",
- "2010-08-15T12:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T12:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T12:00:00",
- "2011-01-15T12:00:00",
- "2011-02-14T00:00:00",
- "2011-03-15T12:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T12:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T12:00:00",
- "2011-08-15T12:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T12:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T12:00:00",
- "2012-01-15T12:00:00",
- "2012-02-14T00:00:00",
- "2012-03-15T12:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T12:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T12:00:00",
- "2012-08-15T12:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T12:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T12:00:00",
- "2013-01-15T12:00:00",
- "2013-02-14T00:00:00",
- "2013-03-15T12:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T12:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T12:00:00",
- "2013-08-15T12:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T12:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T12:00:00",
- "2014-01-15T12:00:00",
- "2014-02-14T00:00:00",
- "2014-03-15T12:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T12:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T12:00:00",
- "2014-08-15T12:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T12:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T12:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "percent",
- "long_name": "Snow Area Percentage",
- "standard_name": "surface_snow_area_fraction"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "global"
- },
- "values": [
- 37.90968022994608,
- 37.676058831812554,
- 33.64750149461512,
- 26.19505964215253,
- 18.528603405121572,
- 14.06087290300586,
- 12.026086689054702,
- 11.42361708628245,
- 12.189134473341134,
- 17.69476325126393,
- 26.268725309998292,
- 33.553223648868915
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "percent",
- "long_name": "Snow Area Percentage",
- "standard_name": "surface_snow_area_fraction"
- }
- },
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "CESM2",
- "reference_source_id": "ESACCI",
- "region": "tropical"
- },
- "values": [
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853,
- 0.8005981756362853
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "percent",
- "long_name": "Snow Area Percentage",
- "standard_name": "surface_snow_area_fraction"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "global"
- },
- "values": [
- 28.655684272961214,
- 27.815623466061915,
- 23.69964587917325,
- 16.51434088081498,
- 8.747118015652177,
- 2.6916816512301587,
- 0.766130751804151,
- 0.5435013023633439,
- 1.5813432564169034,
- 9.304401461299767,
- 21.14425794199425,
- 27.023165468925363,
- 28.29949868244661,
- 27.67340955991619,
- 24.047018077440416,
- 16.901323306472527,
- 8.294931349969644,
- 2.2304467050635077,
- 0.6924521995774331,
- 0.4853344081337113,
- 1.6368784640683847,
- 8.744055303754577,
- 17.7354379306338,
- 26.29500185713916,
- 27.80552609319642,
- 25.915315023786793,
- 22.88217611256885,
- 16.99142680758845,
- 9.05952176344056,
- 2.636412367951683,
- 0.6135092322409051,
- 0.43034460217300746,
- 1.651082489984481,
- 9.86117162059476,
- 19.31309086609419,
- 26.210542470578172,
- 28.56696646029065,
- 28.806163386531555,
- 25.06179247546999,
- 16.96221020375055,
- 8.84802963451445,
- 2.5364731969608467,
- 0.53109317701432,
- 0.3673345340229325,
- 0.9099561989257282,
- 7.622546085883109,
- 19.59399534244789,
- 25.237044896689937,
- 28.206811548563113,
- 28.053622630076777,
- 23.820993608643303,
- 17.024726599608428,
- 9.706235192958484,
- 3.013587321362263,
- 0.6025353232923177,
- 0.3717173571014473,
- 1.30277741801337,
- 9.267140033007879,
- 18.374952780599155,
- 25.42981362612732,
- 28.105381082833816,
- 28.790500330621906,
- 24.9224599615104,
- 16.511567335038265,
- 8.021447317834244,
- 2.2265222529747737,
- 0.5987556155533135,
- 0.3753958729122535,
- 1.01503569740288,
- 7.928375262052487,
- 17.37666504152616,
- 25.405217122940144,
- 28.065393083689028,
- 27.475259664086582,
- 24.35494815611086,
- 16.637516936928055,
- 8.543395118723359,
- 2.1293656166834642,
- 0.5653336294705594,
- 0.44843876817290085,
- 0.8304321732770996,
- 8.603156752886887,
- 18.384892561212943,
- 24.926175246485524,
- 26.730259286647666,
- 27.00928040501979,
- 23.25973111217275,
- 15.69638209439292,
- 8.090588576757254,
- 2.6203289879859413,
- 0.6341511418846882,
- 0.4119975205469308,
- 1.0897201281451478,
- 7.986704073898642,
- 18.081544446808,
- 25.7522599666198,
- 29.04604707516194,
- 28.44954766313799,
- 22.47779067952426,
- 16.53468825783532,
- 8.865638343660152,
- 2.549102483944976,
- 0.5803622381942539,
- 0.4913862873657303,
- 1.3385087006888337,
- 8.039068749859966,
- 17.593967058760757,
- 24.818113716730085,
- 28.375867916074505,
- 26.958906281763735,
- 23.913013055977796,
- 16.35068565470607,
- 8.814190505863843,
- 2.7538688234770268,
- 0.6125993602551183,
- 0.39658495191202603,
- 0.9995774134453221,
- 8.255380918216224,
- 18.64951818802155,
- 25.99673820167569,
- 28.66953410380453,
- 28.821996511361224,
- 24.12731556034434,
- 15.881709991656725,
- 7.365226018236758,
- 2.240297360560898,
- 0.6200402272542281,
- 0.39306084616538717,
- 1.3356388629793194,
- 7.929101639604023,
- 17.22411603407339,
- 25.650501224949313,
- 28.42866304743144,
- 28.150486561117674,
- 25.178927973188696,
- 16.420607105758318,
- 7.915865780612088,
- 2.2792958067291096,
- 0.6136924216412943,
- 0.4834974087230976,
- 1.1565504824442574,
- 7.145307753421702,
- 18.875193981131602,
- 24.71665027399046,
- 27.02759148399993,
- 28.31852106416743,
- 24.392049870569373,
- 15.850087381433216,
- 8.23863140671338,
- 2.0947702364518266,
- 0.6013198573842515,
- 0.37373083955272124,
- 0.8372879949316598,
- 8.480714988797839,
- 18.826392187122565,
- 26.281942354285057,
- 28.56129163476465,
- 27.39291604786826,
- 24.430894724909145,
- 18.14137579936042,
- 7.966934995763558,
- 2.01402634315573,
- 0.574661872951379,
- 0.4369872128138598,
- 1.5805203720390457,
- 8.385395089421637,
- 17.539322697367076,
- 25.13732655306179,
- 26.71257534034733,
- 27.41416448979529,
- 22.5816632300434,
- 15.581196759344198,
- 8.14304135829879,
- 2.3631115903428808,
- 0.5605399485312976,
- 0.36258479102696145,
- 1.2849679921132824,
- 9.20094819345461,
- 18.815269627426428,
- 24.567772079763117
- ],
- "index": [
- "2000-01-15T00:00:00",
- "2000-02-15T00:00:00",
- "2000-03-15T00:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T00:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T00:00:00",
- "2000-08-15T00:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T00:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T00:00:00",
- "2001-01-15T00:00:00",
- "2001-02-15T00:00:00",
- "2001-03-15T00:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T00:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T00:00:00",
- "2001-08-15T00:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T00:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T00:00:00",
- "2002-01-15T00:00:00",
- "2002-02-15T00:00:00",
- "2002-03-15T00:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T00:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T00:00:00",
- "2002-08-15T00:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T00:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T00:00:00",
- "2003-01-15T00:00:00",
- "2003-02-15T00:00:00",
- "2003-03-15T00:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T00:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T00:00:00",
- "2003-08-15T00:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T00:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T00:00:00",
- "2004-01-15T00:00:00",
- "2004-02-15T00:00:00",
- "2004-03-15T00:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T00:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T00:00:00",
- "2004-08-15T00:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T00:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T00:00:00",
- "2005-01-15T00:00:00",
- "2005-02-15T00:00:00",
- "2005-03-15T00:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T00:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T00:00:00",
- "2005-08-15T00:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T00:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T00:00:00",
- "2006-01-15T00:00:00",
- "2006-02-15T00:00:00",
- "2006-03-15T00:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T00:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T00:00:00",
- "2006-08-15T00:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T00:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T00:00:00",
- "2007-01-15T00:00:00",
- "2007-02-15T00:00:00",
- "2007-03-15T00:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T00:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T00:00:00",
- "2007-08-15T00:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T00:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T00:00:00",
- "2008-01-15T00:00:00",
- "2008-02-15T00:00:00",
- "2008-03-15T00:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T00:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T00:00:00",
- "2008-08-15T00:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T00:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T00:00:00",
- "2009-01-15T00:00:00",
- "2009-02-15T00:00:00",
- "2009-03-15T00:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T00:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T00:00:00",
- "2009-08-15T00:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T00:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T00:00:00",
- "2010-01-15T00:00:00",
- "2010-02-15T00:00:00",
- "2010-03-15T00:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T00:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T00:00:00",
- "2010-08-15T00:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T00:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T00:00:00",
- "2011-01-15T00:00:00",
- "2011-02-15T00:00:00",
- "2011-03-15T00:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T00:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T00:00:00",
- "2011-08-15T00:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T00:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T00:00:00",
- "2012-01-15T00:00:00",
- "2012-02-15T00:00:00",
- "2012-03-15T00:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T00:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T00:00:00",
- "2012-08-15T00:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T00:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T00:00:00",
- "2013-01-15T00:00:00",
- "2013-02-15T00:00:00",
- "2013-03-15T00:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T00:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T00:00:00",
- "2013-08-15T00:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T00:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T00:00:00",
- "2014-01-15T00:00:00",
- "2014-02-15T00:00:00",
- "2014-03-15T00:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T00:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T00:00:00",
- "2014-08-15T00:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T00:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T00:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "percent",
- "long_name": "Fractional Snow Cover",
- "standard_name": "surface_snow_area_fraction"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "trace",
- "region": "tropical"
- },
- "values": [
- 0.04086760081497397,
- 0.04167639782261405,
- 0.04194943428654531,
- 0.04161944791276219,
- 0.04043142994929601,
- 0.020138055681060335,
- 0.006659263472344673,
- 0.012885436657982594,
- 0.01729927696986044,
- 0.03114225277422605,
- 0.0407052748477377,
- 0.04222974164009,
- 0.04178208474847917,
- 0.041397049537598644,
- 0.04186468698495476,
- 0.041678029581744776,
- 0.03909802390926409,
- 0.01267832954089426,
- 0.005964671597525035,
- 0.008078086755763263,
- 0.01858964455881894,
- 0.03552732134972996,
- 0.035734870299433064,
- 0.03976844102867797,
- 0.04092593397742929,
- 0.04116722160966496,
- 0.0415045343345775,
- 0.04168505804167567,
- 0.03700683750869579,
- 0.009180311500187596,
- 0.005677868747284272,
- 0.0066120212428776295,
- 0.009073094585871152,
- 0.032313139055478245,
- 0.03425555700439491,
- 0.038059387240820655,
- 0.037628963523942016,
- 0.039962533234559,
- 0.04044307856657918,
- 0.03996859487965526,
- 0.0378361275682742,
- 0.01272702024808679,
- 0.004878317657941399,
- 0.007503496491891823,
- 0.007211475243577228,
- 0.025901647912133938,
- 0.033939622041301576,
- 0.037728289788266985,
- 0.039911315812180354,
- 0.040580489886447364,
- 0.04133648003044223,
- 0.04077692128619588,
- 0.03873471053555027,
- 0.014339807091635955,
- 0.005420839073142566,
- 0.00712520252965376,
- 0.007950938805041238,
- 0.02463750485643718,
- 0.036007019826160655,
- 0.03772816772620841,
- 0.03954859887117441,
- 0.04029095071813746,
- 0.041046789472127254,
- 0.04076421608369162,
- 0.03919514539636836,
- 0.0195433232800397,
- 0.00505249172884287,
- 0.006419235870985645,
- 0.008174203772857814,
- 0.02224144135147391,
- 0.034392199696307336,
- 0.037987026590816104,
- 0.03887111882689829,
- 0.039745621751384824,
- 0.039500011812356774,
- 0.03979474031770833,
- 0.036645336410508315,
- 0.010367304209696017,
- 0.00455303859845131,
- 0.005947646445421455,
- 0.0061535856321854,
- 0.023910713460115675,
- 0.033806280583730274,
- 0.03554248718610735,
- 0.03839627376674431,
- 0.03778796277229747,
- 0.039088202138463125,
- 0.03904005101833799,
- 0.03670803351924667,
- 0.008862449030980367,
- 0.0038844938284250787,
- 0.005632845506775003,
- 0.005487103236184278,
- 0.023166517802614046,
- 0.029643439395409782,
- 0.035365339041797735,
- 0.038148888921352216,
- 0.0385383592705918,
- 0.03871225080303329,
- 0.03848377568452581,
- 0.03721367699049585,
- 0.015273464040403962,
- 0.0036304226475112424,
- 0.005601975216629103,
- 0.005935290226792961,
- 0.021762443127898903,
- 0.034300529270179764,
- 0.035076023070848346,
- 0.03838235566039791,
- 0.038502754507714704,
- 0.038783988041240995,
- 0.03856719649672392,
- 0.033346081589759796,
- 0.01055674511052437,
- 0.003594040486239823,
- 0.004918044499828051,
- 0.006900988955978662,
- 0.022550956390264047,
- 0.033697160925947524,
- 0.03632424941640313,
- 0.037231302190667497,
- 0.03815931110044926,
- 0.03780811463933818,
- 0.03845765487153335,
- 0.036565924903635694,
- 0.012422780004997679,
- 0.003794617599543835,
- 0.0053377432975837726,
- 0.005983772865275651,
- 0.027128238903929097,
- 0.03140117018271233,
- 0.035833722314353375,
- 0.037897710009151674,
- 0.03793446566631989,
- 0.038178062147030636,
- 0.03807122811766475,
- 0.036805107791314615,
- 0.017120118887499407,
- 0.003368613000562525,
- 0.005069736397391479,
- 0.006491803178911633,
- 0.023808734142621683,
- 0.03444848655116996,
- 0.03680288525552483,
- 0.03814513121390013,
- 0.03830814511260468,
- 0.03846467446939149,
- 0.038517922343816714,
- 0.03618621246943932,
- 0.011045480865982504,
- 0.003544911371988645,
- 0.005451213585656825,
- 0.009549398428782602,
- 0.024284853348802402,
- 0.029495280281636463,
- 0.03650556444303229,
- 0.03754645288862313,
- 0.038265179747261804,
- 0.03870447052958897,
- 0.03832233764862311,
- 0.034992808258230444,
- 0.008617028610161693,
- 0.0033618009287812024,
- 0.005078137602960985,
- 0.009857124766332926,
- 0.030617711000132844,
- 0.03406868641586172,
- 0.033466429003872075,
- 0.03674999751394415,
- 0.037857629464526026,
- 0.03833339759924355,
- 0.03807253735587849,
- 0.03688755926219031,
- 0.023403353878002763,
- 0.0036460629339573392,
- 0.00515231197291657,
- 0.0072122874896345225,
- 0.021703422444888886,
- 0.028963158545598864,
- 0.035185835199219966
- ],
- "index": [
- "2000-01-15T00:00:00",
- "2000-02-15T00:00:00",
- "2000-03-15T00:00:00",
- "2000-04-15T00:00:00",
- "2000-05-15T00:00:00",
- "2000-06-15T00:00:00",
- "2000-07-15T00:00:00",
- "2000-08-15T00:00:00",
- "2000-09-15T00:00:00",
- "2000-10-15T00:00:00",
- "2000-11-15T00:00:00",
- "2000-12-15T00:00:00",
- "2001-01-15T00:00:00",
- "2001-02-15T00:00:00",
- "2001-03-15T00:00:00",
- "2001-04-15T00:00:00",
- "2001-05-15T00:00:00",
- "2001-06-15T00:00:00",
- "2001-07-15T00:00:00",
- "2001-08-15T00:00:00",
- "2001-09-15T00:00:00",
- "2001-10-15T00:00:00",
- "2001-11-15T00:00:00",
- "2001-12-15T00:00:00",
- "2002-01-15T00:00:00",
- "2002-02-15T00:00:00",
- "2002-03-15T00:00:00",
- "2002-04-15T00:00:00",
- "2002-05-15T00:00:00",
- "2002-06-15T00:00:00",
- "2002-07-15T00:00:00",
- "2002-08-15T00:00:00",
- "2002-09-15T00:00:00",
- "2002-10-15T00:00:00",
- "2002-11-15T00:00:00",
- "2002-12-15T00:00:00",
- "2003-01-15T00:00:00",
- "2003-02-15T00:00:00",
- "2003-03-15T00:00:00",
- "2003-04-15T00:00:00",
- "2003-05-15T00:00:00",
- "2003-06-15T00:00:00",
- "2003-07-15T00:00:00",
- "2003-08-15T00:00:00",
- "2003-09-15T00:00:00",
- "2003-10-15T00:00:00",
- "2003-11-15T00:00:00",
- "2003-12-15T00:00:00",
- "2004-01-15T00:00:00",
- "2004-02-15T00:00:00",
- "2004-03-15T00:00:00",
- "2004-04-15T00:00:00",
- "2004-05-15T00:00:00",
- "2004-06-15T00:00:00",
- "2004-07-15T00:00:00",
- "2004-08-15T00:00:00",
- "2004-09-15T00:00:00",
- "2004-10-15T00:00:00",
- "2004-11-15T00:00:00",
- "2004-12-15T00:00:00",
- "2005-01-15T00:00:00",
- "2005-02-15T00:00:00",
- "2005-03-15T00:00:00",
- "2005-04-15T00:00:00",
- "2005-05-15T00:00:00",
- "2005-06-15T00:00:00",
- "2005-07-15T00:00:00",
- "2005-08-15T00:00:00",
- "2005-09-15T00:00:00",
- "2005-10-15T00:00:00",
- "2005-11-15T00:00:00",
- "2005-12-15T00:00:00",
- "2006-01-15T00:00:00",
- "2006-02-15T00:00:00",
- "2006-03-15T00:00:00",
- "2006-04-15T00:00:00",
- "2006-05-15T00:00:00",
- "2006-06-15T00:00:00",
- "2006-07-15T00:00:00",
- "2006-08-15T00:00:00",
- "2006-09-15T00:00:00",
- "2006-10-15T00:00:00",
- "2006-11-15T00:00:00",
- "2006-12-15T00:00:00",
- "2007-01-15T00:00:00",
- "2007-02-15T00:00:00",
- "2007-03-15T00:00:00",
- "2007-04-15T00:00:00",
- "2007-05-15T00:00:00",
- "2007-06-15T00:00:00",
- "2007-07-15T00:00:00",
- "2007-08-15T00:00:00",
- "2007-09-15T00:00:00",
- "2007-10-15T00:00:00",
- "2007-11-15T00:00:00",
- "2007-12-15T00:00:00",
- "2008-01-15T00:00:00",
- "2008-02-15T00:00:00",
- "2008-03-15T00:00:00",
- "2008-04-15T00:00:00",
- "2008-05-15T00:00:00",
- "2008-06-15T00:00:00",
- "2008-07-15T00:00:00",
- "2008-08-15T00:00:00",
- "2008-09-15T00:00:00",
- "2008-10-15T00:00:00",
- "2008-11-15T00:00:00",
- "2008-12-15T00:00:00",
- "2009-01-15T00:00:00",
- "2009-02-15T00:00:00",
- "2009-03-15T00:00:00",
- "2009-04-15T00:00:00",
- "2009-05-15T00:00:00",
- "2009-06-15T00:00:00",
- "2009-07-15T00:00:00",
- "2009-08-15T00:00:00",
- "2009-09-15T00:00:00",
- "2009-10-15T00:00:00",
- "2009-11-15T00:00:00",
- "2009-12-15T00:00:00",
- "2010-01-15T00:00:00",
- "2010-02-15T00:00:00",
- "2010-03-15T00:00:00",
- "2010-04-15T00:00:00",
- "2010-05-15T00:00:00",
- "2010-06-15T00:00:00",
- "2010-07-15T00:00:00",
- "2010-08-15T00:00:00",
- "2010-09-15T00:00:00",
- "2010-10-15T00:00:00",
- "2010-11-15T00:00:00",
- "2010-12-15T00:00:00",
- "2011-01-15T00:00:00",
- "2011-02-15T00:00:00",
- "2011-03-15T00:00:00",
- "2011-04-15T00:00:00",
- "2011-05-15T00:00:00",
- "2011-06-15T00:00:00",
- "2011-07-15T00:00:00",
- "2011-08-15T00:00:00",
- "2011-09-15T00:00:00",
- "2011-10-15T00:00:00",
- "2011-11-15T00:00:00",
- "2011-12-15T00:00:00",
- "2012-01-15T00:00:00",
- "2012-02-15T00:00:00",
- "2012-03-15T00:00:00",
- "2012-04-15T00:00:00",
- "2012-05-15T00:00:00",
- "2012-06-15T00:00:00",
- "2012-07-15T00:00:00",
- "2012-08-15T00:00:00",
- "2012-09-15T00:00:00",
- "2012-10-15T00:00:00",
- "2012-11-15T00:00:00",
- "2012-12-15T00:00:00",
- "2013-01-15T00:00:00",
- "2013-02-15T00:00:00",
- "2013-03-15T00:00:00",
- "2013-04-15T00:00:00",
- "2013-05-15T00:00:00",
- "2013-06-15T00:00:00",
- "2013-07-15T00:00:00",
- "2013-08-15T00:00:00",
- "2013-09-15T00:00:00",
- "2013-10-15T00:00:00",
- "2013-11-15T00:00:00",
- "2013-12-15T00:00:00",
- "2014-01-15T00:00:00",
- "2014-02-15T00:00:00",
- "2014-03-15T00:00:00",
- "2014-04-15T00:00:00",
- "2014-05-15T00:00:00",
- "2014-06-15T00:00:00",
- "2014-07-15T00:00:00",
- "2014-08-15T00:00:00",
- "2014-09-15T00:00:00",
- "2014-10-15T00:00:00",
- "2014-11-15T00:00:00",
- "2014-12-15T00:00:00"
- ],
- "index_name": "time",
- "attributes": {
- "units": "percent",
- "long_name": "Fractional Snow Cover",
- "standard_name": "surface_snow_area_fraction"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "global"
- },
- "values": [
- 28.08380607414746,
- 27.80304753902092,
- 23.943361365176518,
- 16.53332300764599,
- 8.441386358599882,
- 2.4252860496583457,
- 0.611145133136633,
- 0.4247931135324204,
- 1.2366851763250488,
- 8.450231195076864,
- 18.501907779014875,
- 25.563217670664198
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "percent",
- "long_name": "Fractional Snow Cover",
- "standard_name": "surface_snow_area_fraction"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "tropical"
- },
- "values": [
- 0.03880224858265723,
- 0.03934493814681146,
- 0.03971454505699421,
- 0.03958798077603586,
- 0.037176867737484645,
- 0.013751704798676894,
- 0.004468763578169456,
- 0.0064542089382878635,
- 0.008791332581073697,
- 0.02604645986138313,
- 0.03365724905783879,
- 0.03690690592973595
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "percent",
- "long_name": "Fractional Snow Cover",
- "standard_name": "surface_snow_area_fraction"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png
deleted file mode 100644
index f101871..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png
deleted file mode 100644
index ac46c87..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png
deleted file mode 100644
index 66c09b9..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png
deleted file mode 100644
index 7dceb64..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png
deleted file mode 100644
index 255da6a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png
deleted file mode 100644
index 2928f1a..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png
deleted file mode 100644
index 205384b..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/None_None_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/None_None_taylor.png
deleted file mode 100644
index d056184..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/None_None_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/Reference_None_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/Reference_None_mean.png
deleted file mode 100644
index 649a584..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/Reference_None_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/Reference_None_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/Reference_None_tmax.png
deleted file mode 100644
index 7914f34..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/Reference_None_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/diagnostic.json
deleted file mode 100644
index ca3c614..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/diagnostic.json
+++ /dev/null
@@ -1,100 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "None": {
- "LongName": "None",
- "Description": "Reference data extents",
- "Generator": "N/A"
- }
- },
- "metric": {
- "Bias": {},
- "Annual Cycle": {},
- "Spatial Distribution": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "psu"
- },
- "Bias": {
- "type": "scalar",
- "units": "psu"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "Phase Shift": {
- "type": "scalar",
- "units": "month"
- },
- "Seasonal Cycle Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "None": {
- "Annual Cycle": {
- "Phase Shift": 0.2887661409935119,
- "Seasonal Cycle Score": 0.6258453021674301
- },
- "Bias": {
- "Bias": -0.0887684238683904,
- "Bias Score": 0.1894026403107017,
- "Period Mean": 34.54013145125146
- },
- "Spatial Distribution": {
- "Correlation": 0.8174238244180748,
- "Normalized Standard Deviation": 1.1177985490283402,
- "Spatial Distribution Score": 0.8975352121435952
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/index.html
deleted file mode 100644
index 4d94dfd..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/index.html
+++ /dev/null
@@ -1,398 +0,0 @@
-
-
-
-
-
-so-woa2023-surface
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bias
-
-
-
-
-
-
-
-
-
-
-
-
-
Annual Cycle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Spatial Distribution
-
-
-
-
-
-
-
-
-
All Models
-
-
- bias
-
- biasscore
-
- cycle
-
- cyclescore
-
- mean
-
- shift
-
- tmax
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/output.json
deleted file mode 100644
index fe61d13..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/output.json
+++ /dev/null
@@ -1,160 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Bias score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Bias"
- }
- },
- "Reference_None_mean.png": {
- "filename": "Reference_None_mean.png",
- "long_name": "The period mean for the reference data",
- "description": "",
- "dimensions": {
- "region": "None",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Annual cycle score"
- }
- },
- "None_None_taylor.png": {
- "filename": "None_None_taylor.png",
- "long_name": "The Taylor diagram",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Taylor diagram"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Period Mean"
- }
- },
- "Reference_None_tmax.png": {
- "filename": "Reference_None_tmax.png",
- "long_name": "The maxmimum month for the reference data",
- "description": "",
- "dimensions": {
- "region": "None",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Shift in maximum month"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/series.json
deleted file mode 100644
index 73fc094..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/so-woa2023-surface/ee76f58e0836ddf4cd376f2f0d746d49628d9649/series.json
+++ /dev/null
@@ -1,88 +0,0 @@
-[
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None"
- },
- "values": [
- 34.52591921381082,
- 34.536213304744464,
- 34.54314958518056,
- 34.5486988724533,
- 34.54590749860878,
- 34.537716083535635,
- 34.5274436187918,
- 34.535056676229985,
- 34.54522080112368,
- 34.549853490852655,
- 34.54667453984556,
- 34.53932436377151
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "practical_salinity_unit",
- "long_name": "Sea Surface Salinity",
- "standard_name": "sea_surface_salinity"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "None"
- },
- "values": [
- 34.60799789428711,
- 34.61610412597656,
- 34.62367248535156,
- 34.629093170166016,
- 34.632320404052734,
- 34.609832763671875,
- 34.594337463378906,
- 34.572410583496094,
- 34.59218215942383,
- 34.59507751464844,
- 34.598487854003906,
- 34.6147346496582
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "psu",
- "long_name": "Objectively analyzed mean fields for sea_water_practical_salinity at standard depth levels.",
- "standard_name": "sea_water_practical_salinity"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png
deleted file mode 100644
index 696a8f2..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png
deleted file mode 100644
index 96bd6d6..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png
deleted file mode 100644
index 9f89ef0..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png
deleted file mode 100644
index 22b5b31..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png
deleted file mode 100644
index c411ce3..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png
deleted file mode 100644
index d7df6c0..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png
deleted file mode 100644
index 3ecf641..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/None_None_taylor.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/None_None_taylor.png
deleted file mode 100644
index 6ec17f9..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/None_None_taylor.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/Reference_None_mean.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/Reference_None_mean.png
deleted file mode 100644
index 076636c..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/Reference_None_mean.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/Reference_None_tmax.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/Reference_None_tmax.png
deleted file mode 100644
index ea2be84..0000000
Binary files a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/Reference_None_tmax.png and /dev/null differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/diagnostic.json
deleted file mode 100644
index b45263d..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/diagnostic.json
+++ /dev/null
@@ -1,100 +0,0 @@
-{
- "DIMENSIONS": {
- "json_structure": [
- "experiment_id",
- "source_id",
- "member_id",
- "grid_label",
- "region",
- "metric",
- "statistic"
- ],
- "experiment_id": {
- "historical": {}
- },
- "source_id": {
- "ACCESS-ESM1-5": {}
- },
- "member_id": {
- "r1i1p1f1": {}
- },
- "grid_label": {
- "gn": {}
- },
- "region": {
- "None": {
- "LongName": "None",
- "Description": "Reference data extents",
- "Generator": "N/A"
- }
- },
- "metric": {
- "Bias": {},
- "Annual Cycle": {},
- "Spatial Distribution": {}
- },
- "statistic": {
- "Period Mean": {
- "type": "scalar",
- "units": "°C"
- },
- "Bias": {
- "type": "scalar",
- "units": "°C"
- },
- "Bias Score": {
- "type": "score",
- "units": "1"
- },
- "Phase Shift": {
- "type": "scalar",
- "units": "month"
- },
- "Seasonal Cycle Score": {
- "type": "score",
- "units": "1"
- },
- "Normalized Standard Deviation": {
- "type": "scalar",
- "units": "1"
- },
- "Correlation": {
- "type": "scalar",
- "units": "1"
- },
- "Spatial Distribution Score": {
- "type": "score",
- "units": "1"
- }
- }
- },
- "RESULTS": {
- "historical": {
- "ACCESS-ESM1-5": {
- "r1i1p1f1": {
- "gn": {
- "None": {
- "Annual Cycle": {
- "Phase Shift": 0.2035522993380111,
- "Seasonal Cycle Score": 0.8509560913629087
- },
- "Bias": {
- "Bias": 0.6831548278713121,
- "Bias Score": 0.4644609829766806,
- "Period Mean": 19.189869231349093
- },
- "Spatial Distribution": {
- "Correlation": 0.9894473171974268,
- "Normalized Standard Deviation": 0.978776940116151,
- "Spatial Distribution Score": 0.994266059831472
- }
- }
- }
- }
- }
- }
- },
- "PROVENANCE": null,
- "DISCLAIMER": null,
- "NOTES": null
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/index.html b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/index.html
deleted file mode 100644
index c4d68ab..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/index.html
+++ /dev/null
@@ -1,398 +0,0 @@
-
-
-
-
-
-thetao-woa2023-surface
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bias
-
-
-
-
-
-
-
-
-
-
-
-
-
Annual Cycle
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Spatial Distribution
-
-
-
-
-
-
-
-
-
All Models
-
-
- bias
-
- biasscore
-
- cycle
-
- cyclescore
-
- mean
-
- shift
-
- tmax
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/output.json
deleted file mode 100644
index fe61d13..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/output.json
+++ /dev/null
@@ -1,160 +0,0 @@
-{
- "index": "index.html",
- "provenance": {
- "environment": {},
- "modeldata": [],
- "obsdata": {},
- "log": "cmec_output.log"
- },
- "data": {},
- "plots": {
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_biasscore.png",
- "long_name": "The bias score for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Bias score"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_tmax.png",
- "long_name": "The maxmimum month for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Maximum month"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_bias.png",
- "long_name": "The bias for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Bias"
- }
- },
- "Reference_None_mean.png": {
- "filename": "Reference_None_mean.png",
- "long_name": "The period mean for the reference data",
- "description": "",
- "dimensions": {
- "region": "None",
- "statistic": "Period Mean",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_cyclescore.png",
- "long_name": "The annual cycle score for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Annual cycle score"
- }
- },
- "None_None_taylor.png": {
- "filename": "None_None_taylor.png",
- "long_name": "The Taylor diagram",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Taylor diagram"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_mean.png",
- "long_name": "The period mean for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Period Mean"
- }
- },
- "Reference_None_tmax.png": {
- "filename": "Reference_None_tmax.png",
- "long_name": "The maxmimum month for the reference data",
- "description": "",
- "dimensions": {
- "region": "None",
- "statistic": "Maximum month",
- "source_id": "Reference"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_cycle.png",
- "long_name": "The annual cycle for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Annual cycle"
- }
- },
- "ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png": {
- "filename": "ACCESS-ESM1-5-r1i1p1f1-gn_None_shift.png",
- "long_name": "The shift in maximum month for ACCESS-ESM1-5-r1i1p1f1-gn",
- "description": "",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None",
- "statistic": "Shift in maximum month"
- }
- }
- },
- "html": {
- "index.html": {
- "filename": "index.html",
- "long_name": "Results page",
- "description": "Page displaying scalars and plots from the ILAMB execution.",
- "dimensions": {
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023"
- }
- }
- },
- "metrics": null,
- "diagnostics": {}
-}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/series.json
deleted file mode 100644
index 9738dfe..0000000
--- a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/thetao-woa2023-surface/e963b97134b6c9e5bbee4bc0d8aef25467b066a5/series.json
+++ /dev/null
@@ -1,88 +0,0 @@
-[
- {
- "dimensions": {
- "metric": "cycle",
- "experiment_id": "historical",
- "grid_label": "gn",
- "member_id": "r1i1p1f1",
- "source_id": "ACCESS-ESM1-5",
- "reference_source_id": "WOA2023",
- "region": "None"
- },
- "values": [
- 19.47497379038429,
- 19.663703342398236,
- 19.580005910319045,
- 19.350193179567167,
- 19.0939924698227,
- 19.024023723233302,
- 19.07430054972946,
- 19.114818612006122,
- 19.00737946805181,
- 18.86556612677174,
- 18.905053780198173,
- 19.1572611953403
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "degree_Celsius",
- "long_name": "Sea Surface Temperature",
- "standard_name": "sea_surface_temperature"
- }
- },
- {
- "dimensions": {
- "source_id": "Reference",
- "metric": "cycle",
- "region": "None"
- },
- "values": [
- 18.432594299316406,
- 18.58881378173828,
- 18.618356704711914,
- 18.542512893676758,
- 18.425539016723633,
- 18.390596389770508,
- 18.431917190551758,
- 18.509204864501953,
- 18.42348289489746,
- 18.229026794433594,
- 18.16299819946289,
- 18.256389617919922
- ],
- "index": [
- 1,
- 2,
- 3,
- 4,
- 5,
- 6,
- 7,
- 8,
- 9,
- 10,
- 11,
- 12
- ],
- "index_name": "month",
- "attributes": {
- "units": "degC",
- "long_name": "Objectively analyzed mean fields for sea_water_temperature at standard depth levels.",
- "standard_name": "sea_water_temperature"
- }
- }
-]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/diagnostic.json
new file mode 100644
index 0000000..4f7f761
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/diagnostic.json
@@ -0,0 +1,200 @@
+{
+ "DIMENSIONS": {
+ "experiment_id": {
+ "hist-GHG": {}
+ },
+ "json_structure": [
+ "kind",
+ "source_id",
+ "member_id",
+ "experiment_id",
+ "variable_id",
+ "reference_source_id",
+ "region",
+ "statistic",
+ "season"
+ ],
+ "kind": {
+ "model": {}
+ },
+ "member_id": {
+ "r1i1p1f1": {}
+ },
+ "reference_source_id": {
+ "ERA-5": {}
+ },
+ "region": {
+ "global": {}
+ },
+ "season": {
+ "ann": {},
+ "djf": {},
+ "jja": {},
+ "mam": {},
+ "son": {}
+ },
+ "source_id": {
+ "ACCESS-ESM1-5": {}
+ },
+ "statistic": {
+ "bias_xy": {},
+ "cor_xy": {},
+ "mae_xy": {},
+ "mean-obs_xy": {},
+ "mean_xy": {},
+ "rms_devzm": {},
+ "rms_xy": {},
+ "rms_xyt": {},
+ "rms_y": {},
+ "rmsc_xy": {},
+ "std-obs_xy": {},
+ "std-obs_xy_devzm": {},
+ "std-obs_xyt": {},
+ "std_xy": {},
+ "std_xy_devzm": {},
+ "std_xyt": {}
+ },
+ "variable_id": {
+ "ts": {}
+ }
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": {
+ "commandLine": "/home/jared/code/climate-ref/software/conda/pmp-a0cd98ec96f7c858f788439a4f0b4951fe2d7a55/bin/mean_climate_driver.py -p /home/jared/code/climate-ref/climate-ref/packages/climate-ref-pmp/src/climate_ref_pmp/params/pmp_param_annualcycle_2-metrics.py --vars ts --custom_observations /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/obs_dict.json --test_data_path /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21 --test_data_set ACCESS-ESM1-5 --realization r1i1p1f1 --filename_template %(variable)_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_clims.198101-200512.AC.v4.nc --metrics_output_path /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21 --cmec",
+ "conda": {
+ "Platform": "linux-64"
+ },
+ "date": "2026-07-16 14:07:01",
+ "openGL": {
+ "GLX": {
+ "client": {},
+ "server": {}
+ }
+ },
+ "osAccess": false,
+ "packages": {
+ "PMP": "3.9.2",
+ "PMPObs": "See 'References' key below, for detailed obs provenance information.",
+ "cdat_info": "8.2.1",
+ "cdp": "1.7.0",
+ "esmf": "0.8.10",
+ "esmpy": "8.9.0",
+ "matplotlib": "3.10.6",
+ "numpy": "2.0.2",
+ "python": "3.10.10",
+ "scipy": "1.15.2",
+ "xarray": "2025.6.1",
+ "xcdat": "0.10.0"
+ },
+ "platform": {
+ "Name": "gus",
+ "OS": "Linux",
+ "Version": "6.12.88+deb13-amd64"
+ },
+ "userId": "jared"
+ },
+ "RESULTS": {
+ "model": {
+ "ACCESS-ESM1-5": {
+ "r1i1p1f1": {
+ "hist-GHG": {
+ "ts": {
+ "ERA-5": {
+ "attributes": {
+ "InputClimatologyFileName": "ts_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_clims.198101-200512.AC.v4.nc"
+ },
+ "global": {
+ "bias_xy": {
+ "ann": 1.55238,
+ "djf": 1.66939,
+ "jja": 1.47011,
+ "mam": 1.47425,
+ "son": 1.59322
+ },
+ "cor_xy": {
+ "ann": 0.973264,
+ "djf": 0.969618,
+ "jja": 0.970058,
+ "mam": 0.971528,
+ "son": 0.97079
+ },
+ "mae_xy": {
+ "ann": 2.57763,
+ "djf": 2.94304,
+ "jja": 2.77248,
+ "mam": 2.6903,
+ "son": 2.72777
+ },
+ "mean-obs_xy": {
+ "ann": 288.038,
+ "djf": 286.212,
+ "jja": 289.845,
+ "mam": 288.055,
+ "son": 288.057
+ },
+ "mean_xy": {
+ "ann": 289.59,
+ "djf": 287.881,
+ "jja": 291.315,
+ "mam": 289.529,
+ "son": 289.651
+ },
+ "rms_devzm": {
+ "ann": 2.5675
+ },
+ "rms_xy": {
+ "ann": 3.80383,
+ "djf": 4.43753,
+ "jja": 4.11347,
+ "mam": 4.06961,
+ "son": 3.97481
+ },
+ "rms_xyt": {
+ "ann": 4.26745
+ },
+ "rms_y": {
+ "ann": 2.80661
+ },
+ "rmsc_xy": {
+ "ann": 3.47264,
+ "djf": 4.11155,
+ "jja": 3.84179,
+ "mam": 3.7932,
+ "son": 3.64153
+ },
+ "std-obs_xy": {
+ "ann": 14.7479,
+ "djf": 16.7278,
+ "jja": 14.677,
+ "mam": 15.5647,
+ "son": 14.8687
+ },
+ "std-obs_xy_devzm": {
+ "ann": 4.15782
+ },
+ "std-obs_xyt": {
+ "ann": 15.7057
+ },
+ "std_xy": {
+ "ann": 15.1182,
+ "djf": 16.6199,
+ "jja": 15.6702,
+ "mam": 16.01,
+ "son": 15.1652
+ },
+ "std_xy_devzm": {
+ "ann": 3.73955
+ },
+ "std_xyt": {
+ "ann": 16.1009
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/output.json
new file mode 100644
index 0000000..2ed0132
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/output.json
@@ -0,0 +1,77 @@
+{
+ "index": "index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "cmec_output.log",
+ "platform": {
+ "OS": "Linux",
+ "Version": "6.12.88+deb13-amd64",
+ "Name": "gus"
+ },
+ "userId": "jared",
+ "osAccess": false,
+ "commandLine": "/home/jared/code/climate-ref/software/conda/pmp-a0cd98ec96f7c858f788439a4f0b4951fe2d7a55/bin/mean_climate_driver.py -p /home/jared/code/climate-ref/climate-ref/packages/climate-ref-pmp/src/climate_ref_pmp/params/pmp_param_annualcycle_2-metrics.py --vars ts --custom_observations /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/obs_dict.json --test_data_path /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21 --test_data_set ACCESS-ESM1-5 --realization r1i1p1f1 --filename_template %(variable)_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_clims.198101-200512.AC.v4.nc --metrics_output_path /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21 --cmec",
+ "date": "2026-07-16 14:07:01",
+ "conda": {
+ "Platform": "linux-64"
+ },
+ "packages": {
+ "python": "3.10.10",
+ "cdat_info": "8.2.1",
+ "cdp": "1.7.0",
+ "xarray": "2025.6.1",
+ "esmf": "0.8.10",
+ "esmpy": "8.9.0",
+ "matplotlib": "3.10.6",
+ "numpy": "2.0.2",
+ "scipy": "1.15.2",
+ "xcdat": "0.10.0",
+ "PMP": "3.9.2",
+ "PMPObs": "See 'References' key below, for detailed obs provenance information."
+ },
+ "openGL": {
+ "GLX": {
+ "server": {},
+ "client": {}
+ }
+ }
+ },
+ "data": {},
+ "plots": {
+ "ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_AC_basicTest.png": {
+ "filename": "ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_AC_basicTest.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_DJF_basicTest.png": {
+ "filename": "ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_DJF_basicTest.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_JJA_basicTest.png": {
+ "filename": "ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_JJA_basicTest.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_MAM_basicTest.png": {
+ "filename": "ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_MAM_basicTest.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_SON_basicTest.png": {
+ "filename": "ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_SON_basicTest.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ }
+ },
+ "html": {},
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/csoil-hwsd2/0d6ef0b1d781d57235c572a9d091da792d2839ea/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_AC_basicTest.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_AC_basicTest.png
new file mode 100644
index 0000000..f2a7ff6
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_AC_basicTest.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_DJF_basicTest.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_DJF_basicTest.png
new file mode 100644
index 0000000..688863a
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_DJF_basicTest.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_JJA_basicTest.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_JJA_basicTest.png
new file mode 100644
index 0000000..6255bf7
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_JJA_basicTest.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_MAM_basicTest.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_MAM_basicTest.png
new file mode 100644
index 0000000..b25bb4c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_MAM_basicTest.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_SON_basicTest.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_SON_basicTest.png
new file mode 100644
index 0000000..bd71999
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/annual-cycle/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_ts_ERA-5_ts_g38_v1_b5235f17/21/ts/ts_ACCESS-ESM1-5_r1i1p1f1_interpolated_regrid2_global_SON_basicTest.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/diagnostic.json
new file mode 100644
index 0000000..a8500c3
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/diagnostic.json
@@ -0,0 +1,83 @@
+{
+ "DIMENSIONS": {
+ "experiment_id": {
+ "historical": {}
+ },
+ "grid_label": {
+ "gn": {}
+ },
+ "json_structure": [
+ "kind",
+ "mip_id",
+ "source_id",
+ "member_id",
+ "grid_label",
+ "experiment_id",
+ "metric",
+ "reference_source_id"
+ ],
+ "kind": {
+ "model": {}
+ },
+ "member_id": {
+ "r1i1p1f1": {}
+ },
+ "metric": {},
+ "mip_id": {
+ "cmip6": {}
+ },
+ "reference_source_id": {},
+ "source_id": {
+ "ACCESS-ESM1-5": {}
+ }
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": {
+ "commandLine": "/home/jared/code/climate-ref/climate-ref/packages/climate-ref-pmp/src/climate_ref_pmp/drivers/enso_driver.py --metrics_collection ENSO_proc --experiment_id historical --input_json_path /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/input_ENSO_proc_ACCESS-ESM1-5_historical_r1i1p1f1.json --output_directory /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23",
+ "conda": {
+ "Platform": "linux-64"
+ },
+ "date": "2026-07-16 14:06:36",
+ "openGL": {
+ "GLX": {
+ "client": {},
+ "server": {}
+ }
+ },
+ "osAccess": false,
+ "packages": {
+ "PMP": "3.9.2",
+ "PMPObs": "See 'References' key below, for detailed obs provenance information.",
+ "cdat_info": "8.2.1",
+ "cdp": "1.7.0",
+ "esmf": "0.8.10",
+ "esmpy": "8.9.0",
+ "matplotlib": "3.10.6",
+ "numpy": "2.0.2",
+ "python": "3.10.10",
+ "scipy": "1.15.2",
+ "xarray": "2025.6.1",
+ "xcdat": "0.10.0"
+ },
+ "platform": {
+ "Name": "gus",
+ "OS": "Linux",
+ "Version": "6.12.88+deb13-amd64"
+ },
+ "userId": "jared"
+ },
+ "RESULTS": {
+ "model": {
+ "cmip6": {
+ "ACCESS-ESM1-5": {
+ "r1i1p1f1": {
+ "gn": {
+ "historical": {}
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/output.json
new file mode 100644
index 0000000..ec75452
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/output.json
@@ -0,0 +1,46 @@
+{
+ "index": "index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "cmec_output.log",
+ "commandLine": "/home/jared/code/climate-ref/climate-ref/packages/climate-ref-pmp/src/climate_ref_pmp/drivers/enso_driver.py --metrics_collection ENSO_proc --experiment_id historical --input_json_path /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/input_ENSO_proc_ACCESS-ESM1-5_historical_r1i1p1f1.json --output_directory /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23",
+ "conda": {
+ "Platform": "linux-64"
+ },
+ "date": "2026-07-16 14:06:36",
+ "openGL": {
+ "GLX": {
+ "client": {},
+ "server": {}
+ }
+ },
+ "osAccess": false,
+ "packages": {
+ "PMP": "3.9.2",
+ "PMPObs": "See 'References' key below, for detailed obs provenance information.",
+ "cdat_info": "8.2.1",
+ "cdp": "1.7.0",
+ "esmf": "0.8.10",
+ "esmpy": "8.9.0",
+ "matplotlib": "3.10.6",
+ "numpy": "2.0.2",
+ "python": "3.10.10",
+ "scipy": "1.15.2",
+ "xarray": "2025.6.1",
+ "xcdat": "0.10.0"
+ },
+ "platform": {
+ "Name": "gus",
+ "OS": "Linux",
+ "Version": "6.12.88+deb13-amd64"
+ },
+ "userId": "jared"
+ },
+ "data": {},
+ "plots": {},
+ "html": {},
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/series.json
similarity index 100%
rename from backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/ilamb/nbp-hoffman/049ea28851ed57f9f019cec0af9915bf95118ef2/series.json
rename to backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_proc/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g58_v1_d905ddf2/23/series.json
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown01.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown01.png
new file mode 100644
index 0000000..f49544b
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown01.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown02.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown02.png
new file mode 100644
index 0000000..2c8e4d8
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown02.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown03.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown03.png
new file mode 100644
index 0000000..826c235
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown03.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown04.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown04.png
new file mode 100644
index 0000000..ffba912
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown04.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown05.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown05.png
new file mode 100644
index 0000000..420a9d4
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown05.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown06.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown06.png
new file mode 100644
index 0000000..7019d0d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown06.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown07.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown07.png
new file mode 100644
index 0000000..4c539df
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown07.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown08.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown08.png
new file mode 100644
index 0000000..378d591
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown08.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown09.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown09.png
new file mode 100644
index 0000000..1e25652
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown09.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown10.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown10.png
new file mode 100644
index 0000000..a67530c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown10.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown11.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown11.png
new file mode 100644
index 0000000..baa0238
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown11.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown12.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown12.png
new file mode 100644
index 0000000..be167d5
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown12.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown01.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown01.png
new file mode 100644
index 0000000..b28e970
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown01.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown02.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown02.png
new file mode 100644
index 0000000..cc54a59
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown02.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown03.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown03.png
new file mode 100644
index 0000000..101a487
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown03.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown04.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown04.png
new file mode 100644
index 0000000..e912a35
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown04.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown05.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown05.png
new file mode 100644
index 0000000..967c379
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown05.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown06.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown06.png
new file mode 100644
index 0000000..c6abc6b
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown06.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown07.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown07.png
new file mode 100644
index 0000000..36d83b5
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown07.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown08.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown08.png
new file mode 100644
index 0000000..74ee64d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown08.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown09.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown09.png
new file mode 100644
index 0000000..408bfc3
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown09.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown10.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown10.png
new file mode 100644
index 0000000..f5e6e13
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown10.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown11.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown11.png
new file mode 100644
index 0000000..e91fed0
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown11.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown12.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown12.png
new file mode 100644
index 0000000..570eb74
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown12.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/diagnostic.json
new file mode 100644
index 0000000..b4f3994
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/diagnostic.json
@@ -0,0 +1,118 @@
+{
+ "DIMENSIONS": {
+ "experiment_id": {
+ "historical": {}
+ },
+ "grid_label": {
+ "gn": {}
+ },
+ "json_structure": [
+ "kind",
+ "mip_id",
+ "source_id",
+ "member_id",
+ "grid_label",
+ "experiment_id",
+ "metric",
+ "reference_source_id"
+ ],
+ "kind": {
+ "model": {}
+ },
+ "member_id": {
+ "r1i1p1f1": {}
+ },
+ "metric": {
+ "EnsoPrMapDjfCorr": {},
+ "EnsoPrMapDjfRmse": {},
+ "EnsoPrMapDjfStd": {},
+ "EnsoPrMapJjaCorr": {},
+ "EnsoPrMapJjaRmse": {},
+ "EnsoPrMapJjaStd": {}
+ },
+ "mip_id": {
+ "cmip6": {}
+ },
+ "reference_source_id": {
+ "HadISST_GPCP-Monthly-3-2": {},
+ "Tropflux_GPCP-Monthly-3-2": {}
+ },
+ "source_id": {
+ "ACCESS-ESM1-5": {}
+ }
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": {
+ "commandLine": "/home/jared/code/climate-ref/climate-ref/packages/climate-ref-pmp/src/climate_ref_pmp/drivers/enso_driver.py --metrics_collection ENSO_tel --experiment_id historical --input_json_path /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/input_ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1.json --output_directory /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22",
+ "conda": {
+ "Platform": "linux-64"
+ },
+ "date": "2026-07-16 14:07:00",
+ "openGL": {
+ "GLX": {
+ "client": {},
+ "server": {}
+ }
+ },
+ "osAccess": false,
+ "packages": {
+ "PMP": "3.9.2",
+ "PMPObs": "See 'References' key below, for detailed obs provenance information.",
+ "cdat_info": "8.2.1",
+ "cdp": "1.7.0",
+ "esmf": "0.8.10",
+ "esmpy": "8.9.0",
+ "matplotlib": "3.10.6",
+ "numpy": "2.0.2",
+ "python": "3.10.10",
+ "scipy": "1.15.2",
+ "xarray": "2025.6.1",
+ "xcdat": "0.10.0"
+ },
+ "platform": {
+ "Name": "gus",
+ "OS": "Linux",
+ "Version": "6.12.88+deb13-amd64"
+ },
+ "userId": "jared"
+ },
+ "RESULTS": {
+ "model": {
+ "cmip6": {
+ "ACCESS-ESM1-5": {
+ "r1i1p1f1": {
+ "gn": {
+ "historical": {
+ "EnsoPrMapDjfCorr": {
+ "HadISST_GPCP-Monthly-3-2": 0.8284741364339038,
+ "Tropflux_GPCP-Monthly-3-2": 0.832438949539564
+ },
+ "EnsoPrMapDjfRmse": {
+ "HadISST_GPCP-Monthly-3-2": 0.3288841387010711,
+ "Tropflux_GPCP-Monthly-3-2": 0.325495337770583
+ },
+ "EnsoPrMapDjfStd": {
+ "HadISST_GPCP-Monthly-3-2": 1.2254145399476348,
+ "Tropflux_GPCP-Monthly-3-2": 1.2678051246614426
+ },
+ "EnsoPrMapJjaCorr": {
+ "HadISST_GPCP-Monthly-3-2": 0.8134818351187548,
+ "Tropflux_GPCP-Monthly-3-2": 0.8064925016226705
+ },
+ "EnsoPrMapJjaRmse": {
+ "HadISST_GPCP-Monthly-3-2": 0.4094760416457439,
+ "Tropflux_GPCP-Monthly-3-2": 0.4015105722184469
+ },
+ "EnsoPrMapJjaStd": {
+ "HadISST_GPCP-Monthly-3-2": 1.69266606413509,
+ "Tropflux_GPCP-Monthly-3-2": 1.8413299292569218
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/output.json
new file mode 100644
index 0000000..be8116c
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/output.json
@@ -0,0 +1,204 @@
+{
+ "index": "index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "cmec_output.log",
+ "commandLine": "/home/jared/code/climate-ref/climate-ref/packages/climate-ref-pmp/src/climate_ref_pmp/drivers/enso_driver.py --metrics_collection ENSO_tel --experiment_id historical --input_json_path /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/input_ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1.json --output_directory /data/projects/climate-ref/refapp-fixture/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/scratch/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22",
+ "conda": {
+ "Platform": "linux-64"
+ },
+ "date": "2026-07-16 14:07:00",
+ "openGL": {
+ "GLX": {
+ "client": {},
+ "server": {}
+ }
+ },
+ "osAccess": false,
+ "packages": {
+ "PMP": "3.9.2",
+ "PMPObs": "See 'References' key below, for detailed obs provenance information.",
+ "cdat_info": "8.2.1",
+ "cdp": "1.7.0",
+ "esmf": "0.8.10",
+ "esmpy": "8.9.0",
+ "matplotlib": "3.10.6",
+ "numpy": "2.0.2",
+ "python": "3.10.10",
+ "scipy": "1.15.2",
+ "xarray": "2025.6.1",
+ "xcdat": "0.10.0"
+ },
+ "platform": {
+ "Name": "gus",
+ "OS": "Linux",
+ "Version": "6.12.88+deb13-amd64"
+ },
+ "userId": "jared"
+ },
+ "data": {
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf.nc": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf.nc",
+ "long_name": "Output data",
+ "description": "Data produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja.nc": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja.nc",
+ "long_name": "Output data",
+ "description": "Data produced by the diagnostic",
+ "dimensions": null
+ }
+ },
+ "plots": {
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown01.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown01.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown02.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown02.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown03.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown03.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown04.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown04.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown05.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown05.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown06.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown06.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown07.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown07.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown08.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown08.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown09.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown09.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown10.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown10.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown11.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown11.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown12.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapDjf_diagnostic_divedown12.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown01.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown01.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown02.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown02.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown03.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown03.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown04.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown04.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown05.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown05.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown06.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown06.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown07.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown07.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown08.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown08.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown09.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown09.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown10.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown10.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown11.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown11.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown12.png": {
+ "filename": "ENSO_tel_ACCESS-ESM1-5_historical_r1i1p1f1_EnsoPrMapJja_diagnostic_divedown12.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ }
+ },
+ "html": {},
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/series.json
new file mode 100644
index 0000000..0637a08
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/enso_tel/historical_gn_r1i1p1f1_ACCESS-ESM1-5_obs4MIPs_g55_v1_531de27a/22/series.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/EG_Spec_North_test_NPGO_monthly_HadISST-1-1_1900-2005.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/EG_Spec_North_test_NPGO_monthly_HadISST-1-1_1900-2005.png
new file mode 100644
index 0000000..471efd0
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/EG_Spec_North_test_NPGO_monthly_HadISST-1-1_1900-2005.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png
new file mode 100644
index 0000000..b3ab66d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png
new file mode 100644
index 0000000..1c8d244
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png
new file mode 100644
index 0000000..b4436da
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png
new file mode 100644
index 0000000..f35e09d
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png
new file mode 100644
index 0000000..dc9cef6
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png
new file mode 100644
index 0000000..47c86a3
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof2_compare_obs.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof2_compare_obs.png
new file mode 100644
index 0000000..1eaa180
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof2_compare_obs.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png
new file mode 100644
index 0000000..1d98066
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_obs_1900-2005.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_obs_1900-2005.png
new file mode 100644
index 0000000..befbc3a
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_obs_1900-2005.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_obs_1900-2005_teleconnection.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_obs_1900-2005_teleconnection.png
new file mode 100644
index 0000000..8321ec0
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/NPGO_ts_EOF2_monthly_obs_1900-2005_teleconnection.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/diagnostic.json
new file mode 100644
index 0000000..3077236
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/diagnostic.json
@@ -0,0 +1,137 @@
+{
+ "DIMENSIONS": {
+ "experiment_id": {
+ "hist-GHG": {}
+ },
+ "json_structure": [
+ "kind",
+ "mip_id",
+ "source_id",
+ "member_id",
+ "experiment_id",
+ "reference_source_id",
+ "mode",
+ "season",
+ "method",
+ "statistic"
+ ],
+ "kind": {
+ "model": {}
+ },
+ "member_id": {
+ "r1i1p1f1": {}
+ },
+ "method": {
+ "cbf": {},
+ "eof1": {},
+ "eof2": {}
+ },
+ "mip_id": {
+ "cmip6": {}
+ },
+ "mode": {
+ "NPGO": {}
+ },
+ "reference_source_id": {
+ "HadISST-1-1": {}
+ },
+ "season": {
+ "monthly": {}
+ },
+ "source_id": {
+ "ACCESS-ESM1-5": {}
+ },
+ "statistic": {
+ "bias": {},
+ "bias_glo": {},
+ "cor": {},
+ "cor_glo": {},
+ "frac": {},
+ "frac_cbf_regrid": {},
+ "mean": {},
+ "mean_glo": {},
+ "rms": {},
+ "rms_glo": {},
+ "rmsc": {},
+ "rmsc_glo": {},
+ "stdv_pc": {},
+ "stdv_pc_ratio_to_obs": {}
+ }
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": {},
+ "RESULTS": {
+ "model": {
+ "cmip6": {
+ "ACCESS-ESM1-5": {
+ "r1i1p1f1": {
+ "hist-GHG": {
+ "HadISST-1-1": {
+ "NPGO": {
+ "attributes": {
+ "target_model_eofs": 2
+ },
+ "monthly": {
+ "attributes": {
+ "best_matching_model_eofs__cor": 1,
+ "best_matching_model_eofs__rms": 2,
+ "best_matching_model_eofs__tcor_cbf_vs_eof_pc": 1,
+ "period": "2000-2005"
+ },
+ "cbf": {
+ "bias": 0.0008529356870382941,
+ "bias_glo": 0.031582794785208014,
+ "cor": 0.7386872982611676,
+ "cor_glo": 0.38061815619404105,
+ "frac": 0.09687375770307928,
+ "frac_cbf_regrid": 0.14915891182928212,
+ "mean": 3.324076432273517e-17,
+ "mean_glo": 0.06953719119836707,
+ "rms": 0.13791947615752614,
+ "rms_glo": 0.1362525227878265,
+ "rmsc": 0.6928819029108036,
+ "rmsc_glo": 1.1084718484022797,
+ "stdv_pc": 0.1167388931262994,
+ "stdv_pc_ratio_to_obs": 0.8145907025940083
+ },
+ "eof1": {
+ "bias": -0.017387262832058048,
+ "bias_glo": 0.0609627824081342,
+ "cor": 0.17802945858862174,
+ "cor_glo": 0.035457689262511534,
+ "frac": 0.17062006725773216,
+ "mean": 2.7196988991328772e-17,
+ "mean_glo": 0.09653594527833015,
+ "rms": 0.2724783402681173,
+ "rms_glo": 0.22902791547586415,
+ "rmsc": 1.182116449331297,
+ "rmsc_glo": 1.383737717107014,
+ "stdv_pc": 0.22235014222791263,
+ "stdv_pc_ratio_to_obs": 1.551533972344206
+ },
+ "eof2": {
+ "bias": -0.012560087069559238,
+ "bias_glo": -0.03172037990097244,
+ "cor": 0.15367251337504148,
+ "cor_glo": 0.1938128145477766,
+ "frac": 0.13916421819740019,
+ "mean": 1.3598494495664386e-17,
+ "mean_glo": 0.008319087816542066,
+ "rms": 0.25733815074299343,
+ "rms_glo": 0.15594073473502593,
+ "rmsc": 1.1913935055066711,
+ "rmsc_glo": 1.2265227828844507,
+ "stdv_pc": 0.20081037596488938,
+ "stdv_pc_ratio_to_obs": 1.401231936201686
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/output.json
new file mode 100644
index 0000000..7cc4232
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/output.json
@@ -0,0 +1,106 @@
+{
+ "index": "index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "cmec_output.log"
+ },
+ "data": {
+ "NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.nc": {
+ "filename": "NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.nc",
+ "long_name": "Output data",
+ "description": "Data produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.nc": {
+ "filename": "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.nc",
+ "long_name": "Output data",
+ "description": "Data produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.nc": {
+ "filename": "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.nc",
+ "long_name": "Output data",
+ "description": "Data produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_obs_1900-2005.nc": {
+ "filename": "NPGO_ts_EOF2_monthly_obs_1900-2005.nc",
+ "long_name": "Output data",
+ "description": "Data produced by the diagnostic",
+ "dimensions": null
+ }
+ },
+ "plots": {
+ "EG_Spec_North_test_NPGO_monthly_HadISST-1-1_1900-2005.png": {
+ "filename": "EG_Spec_North_test_NPGO_monthly_HadISST-1-1_1900-2005.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png": {
+ "filename": "NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png": {
+ "filename": "NPGO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png": {
+ "filename": "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png": {
+ "filename": "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png": {
+ "filename": "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png": {
+ "filename": "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof2_compare_obs.png": {
+ "filename": "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof2_compare_obs.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png": {
+ "filename": "NPGO_ts_EOF2_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_obs_1900-2005.png": {
+ "filename": "NPGO_ts_EOF2_monthly_obs_1900-2005.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "NPGO_ts_EOF2_monthly_obs_1900-2005_teleconnection.png": {
+ "filename": "NPGO_ts_EOF2_monthly_obs_1900-2005_teleconnection.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ }
+ },
+ "html": {},
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/series.json
new file mode 100644
index 0000000..0637a08
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-npgo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g64_v1_e30f16a8/25/series.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/EG_Spec_North_test_PDO_monthly_HadISST-1-1_1900-2005.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/EG_Spec_North_test_PDO_monthly_HadISST-1-1_1900-2005.png
new file mode 100644
index 0000000..1ca3c32
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/EG_Spec_North_test_PDO_monthly_HadISST-1-1_1900-2005.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png
new file mode 100644
index 0000000..7c9640c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png
new file mode 100644
index 0000000..b4607ee
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png
new file mode 100644
index 0000000..7878815
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png
new file mode 100644
index 0000000..c9ff20c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof1_compare_obs.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof1_compare_obs.png
new file mode 100644
index 0000000..e8b38aa
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof1_compare_obs.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png
new file mode 100644
index 0000000..a2d168c
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_obs_1900-2005.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_obs_1900-2005.png
new file mode 100644
index 0000000..8e679ad
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_obs_1900-2005.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_obs_1900-2005_teleconnection.png b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_obs_1900-2005_teleconnection.png
new file mode 100644
index 0000000..bed0bb5
Binary files /dev/null and b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/PDO_ts_EOF1_monthly_obs_1900-2005_teleconnection.png differ
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/diagnostic.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/diagnostic.json
new file mode 100644
index 0000000..acd127e
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/diagnostic.json
@@ -0,0 +1,121 @@
+{
+ "DIMENSIONS": {
+ "experiment_id": {
+ "hist-GHG": {}
+ },
+ "json_structure": [
+ "kind",
+ "mip_id",
+ "source_id",
+ "member_id",
+ "experiment_id",
+ "reference_source_id",
+ "mode",
+ "season",
+ "method",
+ "statistic"
+ ],
+ "kind": {
+ "model": {}
+ },
+ "member_id": {
+ "r1i1p1f1": {}
+ },
+ "method": {
+ "cbf": {},
+ "eof1": {}
+ },
+ "mip_id": {
+ "cmip6": {}
+ },
+ "mode": {
+ "PDO": {}
+ },
+ "reference_source_id": {
+ "HadISST-1-1": {}
+ },
+ "season": {
+ "monthly": {}
+ },
+ "source_id": {
+ "ACCESS-ESM1-5": {}
+ },
+ "statistic": {
+ "bias": {},
+ "bias_glo": {},
+ "cor": {},
+ "cor_glo": {},
+ "frac": {},
+ "frac_cbf_regrid": {},
+ "mean": {},
+ "mean_glo": {},
+ "rms": {},
+ "rms_glo": {},
+ "rmsc": {},
+ "rmsc_glo": {},
+ "stdv_pc": {},
+ "stdv_pc_ratio_to_obs": {}
+ }
+ },
+ "DISCLAIMER": null,
+ "NOTES": null,
+ "PROVENANCE": {},
+ "RESULTS": {
+ "model": {
+ "cmip6": {
+ "ACCESS-ESM1-5": {
+ "r1i1p1f1": {
+ "hist-GHG": {
+ "HadISST-1-1": {
+ "PDO": {
+ "attributes": {
+ "target_model_eofs": 1
+ },
+ "monthly": {
+ "attributes": {
+ "best_matching_model_eofs__cor": 1,
+ "best_matching_model_eofs__rms": 1,
+ "best_matching_model_eofs__tcor_cbf_vs_eof_pc": 1,
+ "period": "2000-2005"
+ },
+ "cbf": {
+ "bias": 0.0014177142055992688,
+ "bias_glo": -0.010579753309227724,
+ "cor": 0.8791592354465428,
+ "cor_glo": 0.576027592920046,
+ "frac": 0.14243501181492962,
+ "frac_cbf_regrid": 0.21931069747313547,
+ "mean": 1.6620382161367585e-17,
+ "mean_glo": 0.050330814376260774,
+ "rms": 0.15043498731210292,
+ "rms_glo": 0.15524083910371714,
+ "rmsc": 0.5560370932306481,
+ "rmsc_glo": 0.9384118849408806,
+ "stdv_pc": 0.16849235706662413,
+ "stdv_pc_ratio_to_obs": 0.7796507436478954
+ },
+ "eof1": {
+ "bias": -0.013817834751923441,
+ "bias_glo": 0.03067796720023463,
+ "cor": 0.5538245786927588,
+ "cor_glo": 0.44261318238669395,
+ "frac": 0.17062006725773216,
+ "mean": 3.021887665703197e-17,
+ "mean_glo": 0.09657039849775817,
+ "rms": 0.22631960795293912,
+ "rms_glo": 0.19492086384614815,
+ "rmsc": 0.8043494393502799,
+ "rmsc_glo": 1.0491774511539473,
+ "stdv_pc": 0.22235014222791263,
+ "stdv_pc_ratio_to_obs": 1.028862417003641
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/output.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/output.json
new file mode 100644
index 0000000..a8456e0
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/output.json
@@ -0,0 +1,88 @@
+{
+ "index": "index.html",
+ "provenance": {
+ "environment": {},
+ "modeldata": [],
+ "obsdata": {},
+ "log": "cmec_output.log"
+ },
+ "data": {
+ "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.nc": {
+ "filename": "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.nc",
+ "long_name": "Output data",
+ "description": "Data produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.nc": {
+ "filename": "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.nc",
+ "long_name": "Output data",
+ "description": "Data produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_obs_1900-2005.nc": {
+ "filename": "PDO_ts_EOF1_monthly_obs_1900-2005.nc",
+ "long_name": "Output data",
+ "description": "Data produced by the diagnostic",
+ "dimensions": null
+ }
+ },
+ "plots": {
+ "EG_Spec_North_test_PDO_monthly_HadISST-1-1_1900-2005.png": {
+ "filename": "EG_Spec_North_test_PDO_monthly_HadISST-1-1_1900-2005.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png": {
+ "filename": "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png": {
+ "filename": "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png": {
+ "filename": "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_compare_obs.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png": {
+ "filename": "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_cbf_teleconnection.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof1_compare_obs.png": {
+ "filename": "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_eof1_compare_obs.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png": {
+ "filename": "PDO_ts_EOF1_monthly_cmip6_ACCESS-ESM1-5_hist-GHG_r1i1p1f1_mo_atm_2000-2005_teleconnection.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_obs_1900-2005.png": {
+ "filename": "PDO_ts_EOF1_monthly_obs_1900-2005.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ },
+ "PDO_ts_EOF1_monthly_obs_1900-2005_teleconnection.png": {
+ "filename": "PDO_ts_EOF1_monthly_obs_1900-2005_teleconnection.png",
+ "long_name": "Plot",
+ "description": "Plot produced by the diagnostic",
+ "dimensions": null
+ }
+ },
+ "html": {},
+ "metrics": null,
+ "diagnostics": {}
+}
\ No newline at end of file
diff --git a/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/series.json b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/series.json
new file mode 100644
index 0000000..0637a08
--- /dev/null
+++ b/backend/tests/test-data/tests.integration.test_cmip7_aft/test_solve_cmip7_aft/results/pmp/extratropical-modes-of-variability-pdo/hist-GHG_gn_r1i1p1f1_ACCESS-ESM1-5_HadISST-1-1_ts_g60_v1_c75d6895/24/series.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/changelog/41.fix.md b/changelog/41.fix.md
new file mode 100644
index 0000000..5844b33
--- /dev/null
+++ b/changelog/41.fix.md
@@ -0,0 +1 @@
+The metric-value facets no longer include the internal `kind` dimension, which is surfaced as a dedicated field on each value rather than a filterable facet.
diff --git a/changelog/41.trivial.md b/changelog/41.trivial.md
new file mode 100644
index 0000000..273d2c7
--- /dev/null
+++ b/changelog/41.trivial.md
@@ -0,0 +1 @@
+Refreshed the backend integration test fixture with a fresh full-provider solve (adds PMP outputs) and trimmed it for size.