diff --git a/components/cpm/Future.vue b/components/cpm/Future.vue new file mode 100644 index 00000000..a1a1faef --- /dev/null +++ b/components/cpm/Future.vue @@ -0,0 +1,120 @@ + + + diff --git a/components/cpm/Performance.vue b/components/cpm/Performance.vue index 3f76572f..7d288f0a 100644 --- a/components/cpm/Performance.vue +++ b/components/cpm/Performance.vue @@ -18,7 +18,7 @@

- CPM experiment + High-resolution models (CPM)

- RCM experiment + Regional models (RCM)

- GCM experiment + Global models (GCM)

{ - filterList[model] = model + if (model === 'SMHI') { + filterList[model] = 'DMI/SMHI' + } else { + filterList[model] = model + } }) return filterList } diff --git a/pages/cpm.vue b/pages/cpm.vue index 6d6c9035..c3739ef4 100644 --- a/pages/cpm.vue +++ b/pages/cpm.vue @@ -18,6 +18,7 @@ export default { pages: [ { title: 'CPM home', url: '/cpm' }, { title: 'Past performance', url: '/cpm/performance' }, + { title: 'Future change', url: '/cpm/future' }, { title: 'Analyse', url: '/cpm/analyse' }, { title: 'Explore', url: '/cpm/explore' }, { title: 'Download', url: '/cpm/download' }, diff --git a/pages/cpm/future.vue b/pages/cpm/future.vue new file mode 100644 index 00000000..d6f46f34 --- /dev/null +++ b/pages/cpm/future.vue @@ -0,0 +1,11 @@ + + + diff --git a/python/explorer_creator_cpm_atlas.ipynb b/python/explorer_creator_cpm.ipynb similarity index 100% rename from python/explorer_creator_cpm_atlas.ipynb rename to python/explorer_creator_cpm.ipynb diff --git a/python/future_change_plots.ipynb b/python/future_change_plots.ipynb new file mode 100644 index 00000000..7ef0b8be --- /dev/null +++ b/python/future_change_plots.ipynb @@ -0,0 +1,712 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Update content of the CPM Atlas - generate maps for future change
\n", + "Author : Team BETA
\n", + "Return Values : png files
\n", + "Source data : The data is preprocessed and provided by Petter Lind." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import numpy as np\n", + "import xarray as xr\n", + "from pathlib import Path\n", + "from itertools import product\n", + "# regridding\n", + "import xesmf as xe\n", + "# plotting\n", + "import matplotlib\n", + "import matplotlib.pyplot as plt\n", + "import cartopy.crs as crs\n", + "from cartopy import feature as cfeature\n", + "from textwrap import wrap\n", + "# for clipping\n", + "import rioxarray" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# path to observation datasets\n", + "path_data = \"/mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind\"" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# alias of regions\n", + "regions_name_dict = {\n", + " \"nwe-3\": \"NW\",\n", + " \"swe-3\": \"SW\",\n", + " \"see-3\": \"SE\",\n", + " \"ceu-3\": \"C\",\n", + " \"cee-3\": \"CE\",\n", + " \"neu-3\": \"N\",\n", + " \"alp-3\": \"AL\",\n", + "}\n", + "\n", + "# regions name for hclim only\n", + "regions_name_dict_hclim = {\n", + " \"alp-12\": [\"C\", \"AL\", \"NW\", \"SW\"],\n", + " \"eur-11\": \"N\",\n", + " \"cee-12\": [\"CE\", \"SE\"]\n", + "}\n", + "\n", + "# define geometries for clipping by regions\n", + "regions = {\n", + " \"NW\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[-8.0, 40.4], [11.0, 40.4], [15.2, 58.6], [-12.5, 58.6], [-8.0, 40.4]]]\n", + " }\n", + " ],\n", + " \"SW\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[-10, 30], [7.4, 33], [5.7, 48.9], [-15, 45.4], [-10, 30]]]\n", + " }\n", + " ],\n", + " \"SE\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[12.5, 34.3], [28.5, 34.3], [29.4, 40.9], [11.5, 40.9], [12.5, 34.3]]]\n", + " }\n", + " ],\n", + " \"C\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[5.0, 44.5], [18.0, 45.5], [18.0, 56.0], [1.0, 53.0], [5.0, 44.5]]]\n", + " }\n", + " ],\n", + " \"CE\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[17.8, 41.5], [31.3, 41.5], [32.8, 51.6], [16.4, 51.6], [17.8, 41.5]]]\n", + " }\n", + " ],\n", + " \"N\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[1, 50.7], [26.7, 49.7], [44.1, 70.6], [-9.4, 72.6], [1, 50.7]]]\n", + " }\n", + " ],\n", + " \"AL\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[1, 40], [17, 40], [17, 50], [1, 50], [1, 40]]]\n", + " }\n", + " ]\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# uniform naming convention consistent with deliverables\n", + "# {identifier: [group, model]}\n", + "cpm_model_list = {\n", + " \"cclm\": [\"cmcc\", \"cclm\"],\n", + " \"cnrm-arome\": [\"cnrm\", \"arome41t1\"],\n", + " \"ethz-cclm\": [\"ethz\", \"cclm-gpu\"],\n", + " \"gerics\": [\"gerics\", \"remo\"],\n", + " \"hclim-knmi\": [\"knmi\", \"hclim38-arome\"],\n", + " \"hclim\": [\"smhi\", \"hclim38-arome\"],\n", + " \"regcm4\": [\"ictp\", \"regcm4\"],\n", + " \"ipsl-wrf\": [\"ipsl\", \"wrf\"],\n", + " \"mohc-um10.1\": [\"ukmo\", \"um\"]\n", + "}\n", + "\n", + "rcm_model_list = {\n", + " \"cclm\": [\"cmcc\", \"cclm\"],\n", + " \"cnrm\": [\"cnrm\", \"aladin63\"],\n", + " \"ethz-cclm\": [\"ethz\", \"cclm\"],\n", + " \"gerics\": [\"gerics\", \"remo\"],\n", + " \"knmi-racmo\": [\"knmi\", \"racmo\"],\n", + " \"hclim\": [\"smhi\", \"hclim38-aladin\"],\n", + " \"regcm4\": [\"ictp\", \"regcm4\"],\n", + " \"ipsl-wrf\": [\"ipsl\", \"wrf\"],\n", + " \"mohc-hadgem3-gc3.1\": [\"ukmo\", \"hadgem3-gc3.1-n512\"]\n", + "}\n", + "\n", + "gcm_model_list = {\n", + " \"ec-earth-cclm\": [\"cmcc\", \"ec-earth\"],\n", + " \"cnrm\": [\"cnrm\", \"cnrm-cm5\"],\n", + " \"ethz-mpi-esm-lr\": [\"ethz\", \"mpi-esm-lr\"],\n", + " \"gerics\": [\"gerics\", \"mpi-esm-lr\"],\n", + " \"knmi\": [\"knmi\", \"ec-earth\"],\n", + " \"ec-earth-smhi\": [\"smhi\", \"ec-earth\"],\n", + " \"hadgem2-es\": [\"ictp\", \"hadgem2-es\"],\n", + " \"ipsl-cm5a-mr\": [\"ipsl\", \"ipsl-cm5\"],\n", + " \"ipsl-cm6a-lr\": [\"ipsl\", \"ipsl-cm6\"],\n", + " \"glob-25\": [\"ukmo\", \"hadgem2-es\"]\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# define grid for regridding\n", + "lon = np.arange(-180, 180.1, 0.5)\n", + "lat = np.arange(-90, 90.1, 0.5)\n", + "tartge_grid = xr.Dataset(\n", + " {\"var\":((\"lat\", \"lon\"),np.ones((len(lat), len(lon)), dtype=float))},\n", + " coords={\"lat\": lat, \"lon\": lon}\n", + " )\n", + "# for clipping package rioxarray to identify the coordinate system\n", + "tartge_grid.coords[\"lat\"].attrs[\"axis\"] = \"Y\"\n", + "tartge_grid.coords[\"lon\"].attrs[\"axis\"] = \"X\"\n", + "\n", + "def diff_past_future(future_run, past_run, variable, target_grid):\n", + " \"\"\"Compute the difference between model outputs for past and future.\n", + " \"\"\"\n", + " # load the input data\n", + " past_run_data = xr.open_dataset(past_run)\n", + " future_run_data = xr.open_dataset(future_run)\n", + " #############################################################\n", + " ### regridding from model native grid to target grid ###\n", + " #############################################################\n", + " # mask input data\n", + " # note that the mask is the same for all seasons\n", + " past_run_data['mask'] = xr.where(~np.isnan(past_run_data[f\"{variable}\"].sel(season=\"DJF\")), 1, 0)\n", + " future_run_data['mask'] = xr.where(~np.isnan(future_run_data[f\"{variable}\"].sel(season=\"DJF\")), 1, 0)\n", + " # create regridder\n", + " regridder = xe.Regridder(past_run_data, tartge_grid, \"bilinear\")\n", + " # use the regridder to regrid data\n", + " past_run_regrid = regridder(past_run_data[f\"{variable}\"])\n", + " future_run_regrid = regridder(future_run_data[f\"{variable}\"])\n", + " ###############################################################\n", + " ### compute difference between model outputs ###\n", + " ###############################################################\n", + " diff_data = future_run_regrid - past_run_regrid\n", + "\n", + " return diff_data" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "def region_clip(input_data, region):\n", + " # change filled values to 0, to avoid errors after clipping\n", + " # input_data[f\"{variable}\"] = input_data[f\"{variable}\"].where(input_data[f\"{variable}\"]<1e+10, 0)\n", + " # set-up the coordinate system known to rio\n", + " input_data.rio.write_crs(\"EPSG:4326\", inplace=True)\n", + " # clip data\n", + " clipped_data = input_data.rio.clip(regions[region], \"EPSG:4326\", all_touched=True)\n", + "\n", + " return clipped_data" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# function for plotting maps\n", + "def plot_map(dataset, outfile, project, group, season, region, variable):\n", + " # Plot\n", + " fig = plt.figure(dpi=120)\n", + " ax = fig.add_subplot(111, projection=crs.PlateCarree())\n", + " if variable == \"pr\":\n", + " dataset.sel(season=f\"{season}\").plot(ax=ax, vmin=-3, vmax=3, cmap=\"BrBG\",\n", + " cbar_kwargs={'label': 'Precipitation difference (mm/day)',\n", + " 'extend': 'neither', 'location': 'bottom'})\n", + " elif variable == \"tas\":\n", + " dataset.sel(season=f\"{season}\").plot(ax=ax, vmin=0, vmax=6, cmap=\"YlOrRd\",\n", + " cbar_kwargs={'label': 'Temperature difference (degC)',\n", + " 'extend': 'neither', 'location': 'bottom'})\n", + " # colorbar\n", + " # cbar = fig.colorbar(im)\n", + " # cbar.set_label('')\n", + " # Prettify\n", + " ax.add_feature(cfeature.OCEAN, zorder=2)\n", + " ax.coastlines(zorder=3)\n", + " ax.axis('off')\n", + " if variable == \"pr\":\n", + " ax.set_title(\"\\n\".join(wrap(f'{group.upper()} {project}| {season} | {region}', 30)))\n", + " elif variable == \"tas\":\n", + " ax.set_title(\"\\n\".join(wrap(f'{group.upper()} {project}| {season} | {region}', 30)))\n", + "\n", + " # Save\n", + " plt.tight_layout()\n", + " fig.savefig(outfile)\n", + " plt.close()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# find the past run for the same model/group\n", + "def find_his_run(future_run_ticker, directory):\n", + " past_run_ticker = '_'.join(future_run_ticker.split('_')[:-1]) + '_his'\n", + " for file in os.listdir(directory):\n", + " if file.startswith(past_run_ticker):\n", + " ncfile_past = file\n", + " \n", + " ncfile_past_path = Path(directory, ncfile_past)\n", + " \n", + " return ncfile_past_path" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# load all relevant datasets and plot maps\n", + "seasons = ['DJF', 'JJA']\n", + "variables = ['tas', 'pr']\n", + "# projects = [\"CPM\", \"RCM\", \"GCM\"]\n", + "projects = [\"GCM\"]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Generate maps for future change" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_rcp85_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_ssp585_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_ssp585_seasonal_cycle_tas_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_rcp85_seasonal_cycle_tas_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_rcp85_seasonal_cycle_pr_mon_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2040-2049_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_ssp585_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_ssp585_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/NW/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SW/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/SE/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/C/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/CE/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/N/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_rcp85_seasonal_cycle_pr_day_mean_native_grid_2041-2050_ANN.nc, created ../static/cpm_analysis/future_change/AL/pr/gcm_knmi_JJA.png.\n" + ] + } + ], + "source": [ + "for project, variable in product(projects, variables):\n", + " directory = path_data + f\"/{project}/{variable}\"\n", + " for ncfile in Path(directory).iterdir():\n", + " # filter the historical runs\n", + " if \"rcp85\" in str(ncfile) or \"ssp585\" in str(ncfile):\n", + " if project == \"GCM\":\n", + " name_model_group = ncfile.stem.split('_seasonal')[0]\n", + " ncfile_past = find_his_run(name_model_group, directory)\n", + " # handle the exceptions of file name\n", + " if len(name_model_group.split('_')) == 3:\n", + " group, model, _ = name_model_group.split('_')\n", + " else:\n", + " group, _ = name_model_group.split('_')\n", + " # calculate the difference and clip\n", + " diff_data = diff_past_future(ncfile, ncfile_past, variable, tartge_grid)\n", + " for region_alias in regions.keys():\n", + " if group == \"ipsl-cm6a-lr\" and region_alias != 'SW':\n", + " pass\n", + " elif group == \"ipsl-cm5a-mr\" and region_alias == 'SW':\n", + " pass\n", + " else:\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/future_change/{region_alias}/{variable}/{project.lower()}_{gcm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, gcm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " if project == \"RCM\":\n", + " name_region_model_group = ncfile.stem.split('_seasonal')[0]\n", + " ncfile_past = find_his_run(name_region_model_group, directory)\n", + " if len(name_region_model_group.split('_')) == 4:\n", + " region, group, model = name_region_model_group.split('_')[:3]\n", + " else:\n", + " region, group = name_region_model_group.split('_')[:2]\n", + " # calculate the difference and clip\n", + " diff_data = diff_past_future(ncfile, ncfile_past, variable, tartge_grid)\n", + " # handle the exception for hclim-ec-earth runs\n", + " if group == \"hclim\":\n", + " for region_alias in regions_name_dict_hclim[f\"{region}\"]:\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/future_change/{region_alias}/{variable}/{project.lower()}_{rcm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, rcm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " # for other data sets try the clipping for all the regions\n", + " else:\n", + " for region_alias in regions.keys():\n", + " try:\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " # skip regions with only a few valid points\n", + " if (len(np.unique(clipped_region.data)) < 15):\n", + " pass\n", + " else:\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/future_change/{region_alias}/{variable}/{project.lower()}_{rcm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, rcm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " except Exception as e:\n", + " print(e)\n", + " pass\n", + " if project == \"CPM\":\n", + " name_region_model_group = ncfile.stem.split('_seasonal')[0]\n", + " ncfile_past = find_his_run(name_region_model_group, directory)\n", + " region, group, model = ncfile.stem.split('_')[:3]\n", + " if region == \"reu-3\": # reu-3 covers all the sub-regions\n", + " diff_data = diff_past_future(ncfile, ncfile_past, variable, tartge_grid)\n", + " for region_alias in regions.keys():\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/future_change/{region_alias}/{variable}/{project.lower()}_{cpm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, cpm_model_list[group][0], season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " else: # other regions correspond to single sub-region\n", + " region_alias = regions_name_dict[f\"{region}\"]\n", + " diff_data = diff_past_future(ncfile, ncfile_past, variable, tartge_grid)\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/future_change/{region_alias}/{variable}/{project.lower()}_{cpm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, cpm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " # alp-3 KNMI data is used for NW region as well\n", + " if group == \"hclim-knmi\":\n", + " region_alias = \"NW\"\n", + " diff_data = diff_past_future(ncfile, ncfile_past, variable, tartge_grid)\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/future_change/{region_alias}/{variable}/{project.lower()}_{cpm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, cpm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\") " + ] + } + ], + "metadata": { + "interpreter": { + "hash": "e7604e8ec5f09e490e10161e37a4725039efd3ab703d81b1b8a1e00d6741866c" + }, + "kernelspec": { + "display_name": "Python 3.8.5 ('base')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.12" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/python/maps_creator_cpm_atlas.py b/python/maps_creator_cpm_atlas.py deleted file mode 100644 index 6d338ac5..00000000 --- a/python/maps_creator_cpm_atlas.py +++ /dev/null @@ -1,204 +0,0 @@ - -""" -Update content of the CPM Atlas - generate maps based on the preprocessed CPM data -Function : Plot maps in a uniform way based on the preprocessed CPM data -Author : Team BETA -First Built : 2022.03.02 -Last Update : 2022.03.07 -Library : os, pathlib, itertools, matplotlib, cartopy, xarray, rioxarray, argparse -Description : This script serves to extract netcdf data and generate maps - for CPM catalogue page. -Return Values : png files -Note : The data is preprocessed and provided by Tom Crocker from Met Office. -""" - -import os -import argparse -from pathlib import Path -from itertools import product -import numpy as np -import xarray as xr -# plotting -import matplotlib -import matplotlib.pyplot as plt -import cartopy.crs as crs -from cartopy import feature as cfeature -from textwrap import wrap -# for clipping -import rioxarray - -##################################################################### -## This script is intended for batch processing of maps -##################################################################### -# model and project list -# [cpm model name, cordex model name, cmip model name] -model_project_list = [ - ["CLMcom-CMCC-CCLM5-0-9", "CCLM4-8-17 ICHEC-EC-EARTH", "EC-EARTH"], #CMIP5 - ["CNRM-AROME41t1", "ALADIN63 CNRM-CERFACS-CNRM-CM5", "CNRM-CM5"], #CMIP5 - ["COSMO-pompa", "CCLM4-8-17 MPI-M-MPI-ESM-LR", "MPI-ESM-LR"], #CMIP5 - ["GERICS-REMO2015", "REMO2015 MPI-M-MPI-ESM-LR", "MPI-ESM-LR"], #CMIP5 - ["HadREM3-RA-UM10.1", "MOHC-HadGEM3-GC3.1-N512 MOHC-HadGEM2-ES", "HadGEM2-ES"], #CMIP5 - ["HCLIMcom-HCLIM38-AROME", "HCLIMcom-HCLIM38-ALADIN ICHEC-EC-EARTH", "EC-EARTH"], #CMIP5 - ["ICTP-RegCM4-7-0", "ICTP-RegCM4-7-0 MOHC-HadGEM2-ES", "HadGEM2-ES"], #CMIP5 - ["KNMI-HCLIM38h1-AROME", "KNMI-RACMO23E KNMI-EC-EARTH", "EC-EARTH"], #CMIP5 - #["ICTP-RegCM4-7", "ICTP-RegCM4-7-0 MOHC-HadGEM2-ES", "HadGEM2-ES"], #CMIP5 - #["SMHI-HCLIM38-AROME", "SMHI-HCLIM38-ALADIN ICHEC-EC-EARTH", ], -] - -# define geometries for clipping by regions -regions = { - "NW": [ - { - 'type': 'Polygon', - 'coordinates': [[[-8.0, 40.4], [11.0, 40.4], [15.2, 58.6], [-12.5, 58.6], [-8.0, 40.4]]] - } - ], - "SW": [ - { - 'type': 'Polygon', - 'coordinates': [[[-10, 30], [7.4, 33], [5.7, 48.9], [-15, 45.4], [-10, 30]]] - } - ], - "SE": [ - { - 'type': 'Polygon', - 'coordinates': [[[12.5, 34.3], [28.5, 34.3], [29.4, 40.9], [11.5, 40.9], [12.5, 34.3]]] - } - ], - "C": [ - { - 'type': 'Polygon', - 'coordinates': [[[5.0, 44.5], [18.0, 45.5], [18.0, 56.0], [1.0, 53.0], [5.0, 44.5]]] - } - ], - "CE": [ - { - 'type': 'Polygon', - 'coordinates': [[[17.8, 41.5], [31.3, 41.5], [32.8, 51.6], [16.4, 51.6], [17.8, 41.5]]] - } - ], - "N": [ - { - 'type': 'Polygon', - 'coordinates': [[[1, 50.7], [26.7, 49.7], [44.1, 70.6], [-9.4, 72.6], [1, 50.7]]] - } - ], - "AL": [ - { - 'type': 'Polygon', - 'coordinates': [[[1, 40], [17, 40], [17, 50], [1, 50], [1, 40]]] - } - ] -} - -# function for plotting maps -def plot_map(dataset, outfile, model, season, region, variable): - # Plot - fig = plt.figure(dpi=120) - ax = fig.add_subplot(111, projection=crs.PlateCarree()) - if variable == "pr": - levels = np.arange(-60, 61, 2) - dataset.plot(ax=ax, levels=levels, cmap="BrBG", - cbar_kwargs={'label': 'Precipitation change (%)', - 'extend': 'neither'}) - elif variable == "tas": - levels = np.arange(-3, 6.1, 0.2) - dataset.plot(ax=ax, levels=levels, cmap="YlOrRd", - cbar_kwargs={'label': 'Temperature change (degC)', - 'extend': 'neither'}) - # colorbar - # cbar = fig.colorbar(im) - # cbar.set_label('') - # Prettify - ax.add_feature(cfeature.OCEAN, zorder=2) - ax.coastlines(zorder=3) - ax.axis('off') - if variable == "pr": - ax.set_title("\n".join(wrap(f'{model} | {season} | {region}', 30))) - elif variable == "tas": - ax.set_title("\n".join(wrap(f'{model} | {season} | {region}', 30))) - - # Save - fig.savefig(outfile) - plt.close() - -# function for region clipping -def region_clip(infile, region): - # load dataset - xds = xr.open_dataset(infile) - # change filled values to 0, to avoid errors after clipping - xds["unknown"] = xds.unknown.where(xds.unknown<1e+10, 0) - # drop unused variables, otherwise it will cause - # an error when configuring the coordinate system - xds = xds.drop_vars("lat_bnds") - xds = xds.drop_vars("lon_bnds") - # set-up the coordinate system known to rio - xds.rio.write_crs("EPSG:4326", inplace=True) - # clip data - clipped_data = xds.unknown.rio.clip(regions[region], "EPSG:4326", all_touched=True) - - return clipped_data - -def flatten(nasted_list): - """ - input: nasted_list - this contain any number of nested lists. - ------------------------ - output: list_of_lists - one list contain all the items. - """ - - list_of_lists = [] - for item in nasted_list: - list_of_lists.extend(item) - return list_of_lists - -def files(inputdir): - # load all datasets and plot maps - seasons = ['DJF', 'JJA'] - #seasons = ['DJF', 'MAM', 'JJA', 'SON'] - variables = ['tas', 'pr'] - #projects = ['CMIP5', 'CMIP6', 'CORDEX', 'cordex-cpm'] - - # flatten the list of models - model_project_list = flatten(model_project_list) - - for variable, season, region in product(variables, seasons, regions.keys()): - directory = inputdir + f"/{variable}_anoms/main/{season}" - for infile in Path(directory).iterdir(): - # handle exceptions of file naming - if 'rg' in str(infile): - project, model, _, _, season = infile.stem.split('_') - model = model + '-rg' # include the 'rg' tag in the name - elif 'drivers' in str(infile): - pass - else: - project, model, _, season = infile.stem.split('_') - # handle exceptions of redundant region file naming - if project == "cordex-cpm": - try: - model, redundant_region = model.split(' ') - except: - pass - # to handle the exception when the clipped region is empty - if model in model_project_list: - try: - clipped_region = region_clip(infile, region) - # skip regions with only a few valid points - if (len(np.unique(clipped_region.data)) < 50): - pass - else: - outfile = f"../static/maps/{region}/{variable}/{project}_{model}_{season}.png" - plot_map(clipped_region, outfile, model, season, region, variable) - print(f"Processed {infile}, created {outfile}.") - except Exception as e: - print(e) - pass - -if __name__ == "__main__": - # define command line arguments - parser = argparse.ArgumentParser() - parser.add_argument('-i', '--inputdir', required=True, type=str, default="./", - help="directory containing preprocessed netCDF files [default current location]") - # get arguments - args = parser.parse_args() - # call plot() - files(args.inputdir) \ No newline at end of file diff --git a/python/past_performance_plots.ipynb b/python/past_performance_plots.ipynb new file mode 100644 index 00000000..e8487f15 --- /dev/null +++ b/python/past_performance_plots.ipynb @@ -0,0 +1,680 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Update content of the CPM Atlas - generate maps for past performance
\n", + "Author : Team BETA
\n", + "Return Values : png files
\n", + "Source data : The data is preprocessed and provided by Petter Lind." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import xarray as xr\n", + "from pathlib import Path\n", + "from itertools import product\n", + "# regridding\n", + "import xesmf as xe\n", + "# plotting\n", + "import matplotlib\n", + "import matplotlib.pyplot as plt\n", + "import cartopy.crs as crs\n", + "from cartopy import feature as cfeature\n", + "from textwrap import wrap\n", + "# for clipping\n", + "import rioxarray" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# path to observation datasets\n", + "path_data = \"/mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind\"" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# alias of regions\n", + "regions_name_dict = {\n", + " \"nwe-3\": \"NW\",\n", + " \"swe-3\": \"SW\",\n", + " \"see-3\": \"SE\",\n", + " \"ceu-3\": \"C\",\n", + " \"cee-3\": \"CE\",\n", + " \"neu-3\": \"N\",\n", + " \"alp-3\": \"AL\",\n", + "}\n", + "\n", + "# regions name for hclim only\n", + "regions_name_dict_hclim = {\n", + " \"alp-12\": [\"C\", \"AL\", \"NW\", \"SW\"],\n", + " \"eur-11\": \"N\",\n", + " \"cee-12\": [\"CE\", \"SE\"]\n", + "}\n", + "\n", + "# define geometries for clipping by regions\n", + "regions = {\n", + " \"NW\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[-8.0, 40.4], [11.0, 40.4], [15.2, 58.6], [-12.5, 58.6], [-8.0, 40.4]]]\n", + " }\n", + " ],\n", + " \"SW\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[-10, 30], [7.4, 33], [5.7, 48.9], [-15, 45.4], [-10, 30]]]\n", + " }\n", + " ],\n", + " \"SE\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[12.5, 34.3], [28.5, 34.3], [29.4, 40.9], [11.5, 40.9], [12.5, 34.3]]]\n", + " }\n", + " ],\n", + " \"C\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[5.0, 44.5], [18.0, 45.5], [18.0, 56.0], [1.0, 53.0], [5.0, 44.5]]]\n", + " }\n", + " ],\n", + " \"CE\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[17.8, 41.5], [31.3, 41.5], [32.8, 51.6], [16.4, 51.6], [17.8, 41.5]]]\n", + " }\n", + " ],\n", + " \"N\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[1, 50.7], [26.7, 49.7], [44.1, 70.6], [-9.4, 72.6], [1, 50.7]]]\n", + " }\n", + " ],\n", + " \"AL\": [\n", + " {\n", + " 'type': 'Polygon',\n", + " 'coordinates': [[[1, 40], [17, 40], [17, 50], [1, 50], [1, 40]]]\n", + " }\n", + " ]\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# uniform naming convention consistent with deliverables\n", + "# {identifier: [group, model]}\n", + "cpm_model_list = {\n", + " \"cclm\": [\"cmcc\", \"cclm\"],\n", + " \"cnrm-arome\": [\"cnrm\", \"arome41t1\"],\n", + " \"ethz-cclm\": [\"ethz\", \"cclm-gpu\"],\n", + " \"gerics\": [\"gerics\", \"remo\"],\n", + " \"hclim-knmi\": [\"knmi\", \"hclim38-arome\"],\n", + " \"hclim\": [\"smhi\", \"hclim38-arome\"],\n", + " \"regcm4\": [\"ictp\", \"regcm4\"],\n", + " \"ipsl-wrf\": [\"ipsl\", \"wrf\"],\n", + " \"mohc-um10.1\": [\"ukmo\", \"um\"]\n", + "}\n", + "\n", + "rcm_model_list = {\n", + " \"cclm\": [\"cmcc\", \"cclm\"],\n", + " \"cnrm\": [\"cnrm\", \"aladin63\"],\n", + " \"ethz-cclm\": [\"ethz\", \"cclm\"],\n", + " \"gerics\": [\"gerics\", \"remo\"],\n", + " \"knmi-racmo\": [\"knmi\", \"racmo\"],\n", + " \"hclim\": [\"smhi\", \"hclim38-aladin\"],\n", + " \"regcm4\": [\"ictp\", \"regcm4\"],\n", + " \"ipsl-wrf\": [\"ipsl\", \"wrf\"],\n", + " \"mohc-hadgem3-gc3.1\": [\"ukmo\", \"hadgem3-gc3.1-n512\"]\n", + "}\n", + "\n", + "gcm_model_list = {\n", + " \"ec-earth-cclm\": [\"cmcc\", \"ec-earth\"],\n", + " \"cnrm\": [\"cnrm\", \"cnrm-cm5\"],\n", + " \"ethz-mpi-esm-lr\": [\"ethz\", \"mpi-esm-lr\"],\n", + " \"gerics\": [\"gerics\", \"mpi-esm-lr\"],\n", + " \"knmi\": [\"knmi\", \"ec-earth\"],\n", + " \"ec-earth-smhi\": [\"smhi\", \"ec-earth\"],\n", + " \"hadgem2-es\": [\"ictp\", \"hadgem2-es\"],\n", + " \"ipsl-cm5a-mr\": [\"ipsl\", \"ipsl-cm5\"],\n", + " \"ipsl-cm6a-lr\": [\"ipsl\", \"ipsl-cm6\"],\n", + " \"glob-25\": [\"ukmo\", \"hadgem2-es\"]\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "def diff_obs_model(infile, variable):\n", + " \"\"\"Compute the difference between observation and model outputs.\n", + " \"\"\"\n", + " # load the input data\n", + " model_data = xr.open_dataset(infile)\n", + " # get the correct observation data\n", + " if variable == \"pr\":\n", + " obs_data = xr.open_dataset(Path(path_data, \"OBS\", \"EOBS20_seasonal_cycle_pr_day_mean_native_grid_1980-2010_ANN.nc\"))\n", + " elif variable == \"tas\":\n", + " obs_data = xr.open_dataset(Path(path_data, \"OBS\", \"EOBS20_seasonal_cycle_tas_day_mean_native_grid_1980-2010_ANN.nc\"))\n", + " #############################################################\n", + " ### regridding from model native grid to observation grid ###\n", + " #############################################################\n", + " # mask input data and observation data\n", + " # note that the mask is the same for all seasons\n", + " model_data['mask'] = xr.where(~np.isnan(model_data[f\"{variable}\"].sel(season=\"DJF\")), 1, 0)\n", + " obs_data['mask'] = xr.where(~np.isnan(obs_data[f\"{variable}\"].sel(season=\"DJF\")), 1, 0)\n", + " # create regridder\n", + " regridder = xe.Regridder(model_data, obs_data, \"bilinear\")\n", + " # use the regridder to regrid data\n", + " model_data_regrid = regridder(model_data[f\"{variable}\"])\n", + " ###############################################################\n", + " ### compute difference between model output and observation ###\n", + " ###############################################################\n", + " diff_data = model_data_regrid - obs_data[f\"{variable}\"]\n", + "\n", + " return diff_data" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "def region_clip(input_data, region):\n", + " # change filled values to 0, to avoid errors after clipping\n", + " # input_data[f\"{variable}\"] = input_data[f\"{variable}\"].where(input_data[f\"{variable}\"]<1e+10, 0)\n", + " # set-up the coordinate system known to rio\n", + " input_data.rio.write_crs(\"EPSG:4326\", inplace=True)\n", + " # clip data\n", + " clipped_data = input_data.rio.clip(regions[region], \"EPSG:4326\", all_touched=True)\n", + "\n", + " return clipped_data" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# function for plotting maps\n", + "def plot_map(dataset, outfile, project, group, season, region, variable):\n", + " # Plot\n", + " fig = plt.figure(dpi=120)\n", + " ax = fig.add_subplot(111, projection=crs.PlateCarree())\n", + " if variable == \"pr\":\n", + " dataset.sel(season=f\"{season}\").plot(ax=ax, vmin=-5, vmax=5, cmap=\"BrBG\",\n", + " cbar_kwargs={'label': 'Precipitation difference (mm/day)',\n", + " 'extend': 'neither', 'location': 'bottom'})\n", + " elif variable == \"tas\":\n", + " dataset.sel(season=f\"{season}\").plot(ax=ax, vmin=6, vmax=6, cmap=\"coolwarm\",\n", + " cbar_kwargs={'label': 'Temperature difference (degC)',\n", + " 'extend': 'neither', 'location': 'bottom'})\n", + " # colorbar\n", + " # cbar = fig.colorbar(im)\n", + " # cbar.set_label('')\n", + " # Prettify\n", + " ax.add_feature(cfeature.OCEAN, zorder=2)\n", + " ax.coastlines(zorder=3)\n", + " ax.axis('off')\n", + " if variable == \"pr\":\n", + " ax.set_title(\"\\n\".join(wrap(f'{group.upper()} {project}| {season} | {region}', 30)))\n", + " elif variable == \"tas\":\n", + " ax.set_title(\"\\n\".join(wrap(f'{group.upper()} {project}| {season} | {region}', 30)))\n", + "\n", + " # Save\n", + " plt.tight_layout()\n", + " fig.savefig(outfile)\n", + " plt.close()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# load all relevant datasets and plot maps\n", + "seasons = ['DJF', 'JJA']\n", + "variables = ['tas', 'pr']\n", + "projects = [\"CPM\", \"RCM\", \"GCM\"]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Generate maps for past performance" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_cnrm_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_cnrm_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_cmcc_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_cmcc_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_smhi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_smhi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ethz_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ethz_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_gerics_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_gerics_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ukmo_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ukmo_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ictp_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ictp_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ipsl_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ipsl_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_knmi_JJA.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_knmi_DJF.png.\n", + "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_knmi_JJA.png.\n" + ] + } + ], + "source": [ + "for project, variable in product(projects, variables):\n", + " directory = path_data + f\"/{project}/{variable}\"\n", + " for ncfile in Path(directory).iterdir():\n", + " # filter the historical runs\n", + " if \"his\" in str(ncfile):\n", + " if project == \"GCM\":\n", + " name_model_group = ncfile.stem.split('_seasonal')[0]\n", + " # handle the exceptions of file name\n", + " if len(name_model_group.split('_')) == 3:\n", + " group, model, _ = name_model_group.split('_')\n", + " else:\n", + " group, _ = name_model_group.split('_')\n", + " # calculate the difference and clip\n", + " diff_data = diff_obs_model(ncfile, variable)\n", + " for region_alias in regions.keys():\n", + " if group == \"ipsl-cm6a-lr\" and region_alias != 'SW':\n", + " pass\n", + " elif group == \"ipsl-cm5a-mr\" and region_alias == 'SW':\n", + " pass\n", + " else:\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{gcm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, gcm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " if project == \"RCM\":\n", + " name_region_model_group = ncfile.stem.split('_seasonal')[0]\n", + " if len(name_region_model_group.split('_')) == 4:\n", + " region, group, model = name_region_model_group.split('_')[:3]\n", + " else:\n", + " region, group = name_region_model_group.split('_')[:2]\n", + " # calculate the difference and clip\n", + " diff_data = diff_obs_model(ncfile, variable)\n", + " # handle the exception for hclim-ec-earth runs\n", + " if group == \"hclim\":\n", + " for region_alias in regions_name_dict_hclim[f\"{region}\"]:\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{rcm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, rcm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " # for other data sets try the clipping for all the regions\n", + " else:\n", + " for region_alias in regions.keys():\n", + " try:\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " # skip regions with only a few valid points\n", + " if (len(np.unique(clipped_region.data)) < 15):\n", + " pass\n", + " else:\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{rcm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, rcm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " except Exception as e:\n", + " print(e)\n", + " pass\n", + " if project == \"CPM\":\n", + " region, group, model = ncfile.stem.split('_')[:3]\n", + " if region == \"reu-3\": # reu-3 covers all the sub-regions\n", + " diff_data = diff_obs_model(ncfile, variable)\n", + " for region_alias in regions.keys():\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{cpm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, cpm_model_list[group][0], season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " else: # other regions correspond to single sub-region\n", + " region_alias = regions_name_dict[f\"{region}\"]\n", + " diff_data = diff_obs_model(ncfile, variable)\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{cpm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, cpm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\")\n", + " # alp-3 KNMI data is used for NW region as well\n", + " if group == \"hclim-knmi\":\n", + " region_alias = \"NW\"\n", + " diff_data = diff_obs_model(ncfile, variable)\n", + " clipped_region = region_clip(diff_data, region_alias)\n", + " for season in seasons:\n", + " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{cpm_model_list[group][0]}_{season}.png\")\n", + " plot_map(clipped_region, outfile, project, cpm_model_list[group][0],\n", + " season, region_alias, variable)\n", + " print(f\"Processed {ncfile}, created {outfile}.\") " + ] + } + ], + "metadata": { + "interpreter": { + "hash": "e7604e8ec5f09e490e10161e37a4725039efd3ab703d81b1b8a1e00d6741866c" + }, + "kernelspec": { + "display_name": "Python 3.8.5 ('base')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.12" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/python/performance_plots.ipynb b/python/performance_plots.ipynb deleted file mode 100644 index 2a32b296..00000000 --- a/python/performance_plots.ipynb +++ /dev/null @@ -1,693 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### Update content of the CPM Atlas - generate maps for past performance page
\n", - "Author : Team BETA
\n", - "Return Values : png files
\n", - "Source data : The data is preprocessed and provided by Petter Lind." - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import numpy as np\n", - "import xarray as xr\n", - "from pathlib import Path\n", - "from itertools import product\n", - "# regridding\n", - "import xesmf as xe\n", - "# plotting\n", - "import matplotlib\n", - "import matplotlib.pyplot as plt\n", - "import cartopy.crs as crs\n", - "from cartopy import feature as cfeature\n", - "from textwrap import wrap\n", - "# for clipping\n", - "import rioxarray" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "# path to observation datasets\n", - "path_data = \"/mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind\"" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "# alias of regions\n", - "regions_name_dict = {\n", - " \"nwe-3\": \"NW\",\n", - " \"swe-3\": \"SW\",\n", - " \"see-3\": \"SE\",\n", - " \"ceu-3\": \"C\",\n", - " \"cee-3\": \"CE\",\n", - " \"neu-3\": \"N\",\n", - " \"alp-3\": \"AL\",\n", - "}\n", - "\n", - "# regions name for hclim only\n", - "regions_name_dict_hclim = {\n", - " \"alp-12\": [\"C\", \"AL\", \"NW\", \"SW\"],\n", - " \"eur-11\": \"N\",\n", - " \"cee-12\": [\"CE\", \"SE\"]\n", - "}\n", - "\n", - "# define geometries for clipping by regions\n", - "regions = {\n", - " \"NW\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[-8.0, 40.4], [11.0, 40.4], [15.2, 58.6], [-12.5, 58.6], [-8.0, 40.4]]]\n", - " }\n", - " ],\n", - " \"SW\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[-10, 30], [7.4, 33], [5.7, 48.9], [-15, 45.4], [-10, 30]]]\n", - " }\n", - " ],\n", - " \"SE\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[12.5, 34.3], [28.5, 34.3], [29.4, 40.9], [11.5, 40.9], [12.5, 34.3]]]\n", - " }\n", - " ],\n", - " \"C\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[5.0, 44.5], [18.0, 45.5], [18.0, 56.0], [1.0, 53.0], [5.0, 44.5]]]\n", - " }\n", - " ],\n", - " \"CE\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[17.8, 41.5], [31.3, 41.5], [32.8, 51.6], [16.4, 51.6], [17.8, 41.5]]]\n", - " }\n", - " ],\n", - " \"N\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[1, 50.7], [26.7, 49.7], [44.1, 70.6], [-9.4, 72.6], [1, 50.7]]]\n", - " }\n", - " ],\n", - " \"AL\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[1, 40], [17, 40], [17, 50], [1, 50], [1, 40]]]\n", - " }\n", - " ]\n", - "}" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "def diff_obs_model(infile, variable):\n", - " \"\"\"Compute the difference between observation and model outputs.\n", - " \"\"\"\n", - " # load the input data\n", - " model_data = xr.open_dataset(infile)\n", - " # get the correct observation data\n", - " if variable == \"pr\":\n", - " obs_data = xr.open_dataset(Path(path_data, \"OBS\", \"EOBS20_seasonal_cycle_pr_day_mean_native_grid_1980-2010_ANN.nc\"))\n", - " elif variable == \"tas\":\n", - " obs_data = xr.open_dataset(Path(path_data, \"OBS\", \"EOBS20_seasonal_cycle_tas_day_mean_native_grid_1980-2010_ANN.nc\"))\n", - " #############################################################\n", - " ### regridding from model native grid to observation grid ###\n", - " #############################################################\n", - " # mask input data and observation data\n", - " # note that the mask is the same for all seasons\n", - " model_data['mask'] = xr.where(~np.isnan(model_data[f\"{variable}\"].sel(season=\"DJF\")), 1, 0)\n", - " obs_data['mask'] = xr.where(~np.isnan(obs_data[f\"{variable}\"].sel(season=\"DJF\")), 1, 0)\n", - " # create regridder\n", - " regridder = xe.Regridder(model_data, obs_data, \"bilinear\")\n", - " # use the regridder to regrid data\n", - " model_data_regrid = regridder(model_data[f\"{variable}\"])\n", - " ###############################################################\n", - " ### compute difference between model output and observation ###\n", - " ###############################################################\n", - " diff_data = model_data_regrid - obs_data[f\"{variable}\"]\n", - "\n", - " return diff_data" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "def region_clip(input_data, region):\n", - " # change filled values to 0, to avoid errors after clipping\n", - " # input_data[f\"{variable}\"] = input_data[f\"{variable}\"].where(input_data[f\"{variable}\"]<1e+10, 0)\n", - " # set-up the coordinate system known to rio\n", - " input_data.rio.write_crs(\"EPSG:4326\", inplace=True)\n", - " # clip data\n", - " clipped_data = input_data.rio.clip(regions[region], \"EPSG:4326\", all_touched=True)\n", - "\n", - " return clipped_data" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "# function for plotting maps\n", - "def plot_map(dataset, outfile, model, season, region, variable):\n", - " # Plot\n", - " fig = plt.figure(dpi=120)\n", - " ax = fig.add_subplot(111, projection=crs.PlateCarree())\n", - " if variable == \"pr\":\n", - " levels = np.arange(-10, 11, 1)\n", - " dataset.sel(season=f\"{season}\").plot(ax=ax, levels=levels, cmap=\"BrBG\",\n", - " cbar_kwargs={'label': 'Precipitation difference (mm)',\n", - " 'extend': 'neither'})\n", - " elif variable == \"tas\":\n", - " levels = np.arange(-10, 11, 1)\n", - " dataset.sel(season=f\"{season}\").plot(ax=ax, levels=levels, cmap=\"YlOrRd\",\n", - " cbar_kwargs={'label': 'Temperature difference (degC)',\n", - " 'extend': 'neither'})\n", - " # colorbar\n", - " # cbar = fig.colorbar(im)\n", - " # cbar.set_label('')\n", - " # Prettify\n", - " ax.add_feature(cfeature.OCEAN, zorder=2)\n", - " ax.coastlines(zorder=3)\n", - " ax.axis('off')\n", - " if variable == \"pr\":\n", - " ax.set_title(\"\\n\".join(wrap(f'{model} | {season} | {region}', 30)))\n", - " elif variable == \"tas\":\n", - " ax.set_title(\"\\n\".join(wrap(f'{model} | {season} | {region}', 30)))\n", - "\n", - " # Save\n", - " fig.savefig(outfile)\n", - " plt.close()" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/cnrm_cnrm-cm5_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-cclm_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ec-earth-smhi_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ethz-mpi-esm-lr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/gerics_mpi-esm-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/hadgem2-es_his_seasonal_cycle_tas_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm5a-mr_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/ipsl-cm6a-lr_his_seasonal_cycle_tas_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi-ecmwf-erai_his_seasonal_cycle_tas_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/tas/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/tas/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/tas/knmi_ec-earth_his_seasonal_cycle_tas_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_cnrm-cnrm-cm5_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/cnrm_cnrm-cm5_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_cnrm-cnrm-cm5_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-cclm_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-cclm_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-cclm_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-smhi_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ec-earth-smhi_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-smhi_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ethz-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2000-2009_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ethz-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ethz-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ethz-mpi-esm-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ethz-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_gerics-mpi-esm-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/gerics_mpi-esm-lr_his_seasonal_cycle_pr_mon_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_gerics-mpi-esm-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/glob-25_mohc-hadgem3-gc3.1_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/hadgem2-es_his_seasonal_cycle_pr_day_mean_native_grid_1998-2007_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm5a-mr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm5a-mr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm5a-mr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm6a-lr_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/ipsl-cm6a-lr_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm6a-lr_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ecmwf-erai_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi-ecmwf-erai_his_seasonal_cycle_pr_day_mean_native_grid_2009-2017_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ecmwf-erai_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/C/pr/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/N/pr/gcm_knmi-ec-earth_JJA.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ec-earth_DJF.png.\n", - "Processed /mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/GCM/pr/knmi_ec-earth_his_seasonal_cycle_pr_day_mean_native_grid_1996-2005_ANN.nc, created ../static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ec-earth_JJA.png.\n" - ] - } - ], - "source": [ - "# load all relevant datasets and plot maps\n", - "seasons = ['DJF', 'JJA']\n", - "variables = ['tas', 'pr']\n", - "projects = [\"CPM\", \"RCM\", \"GCM\"]\n", - "\n", - "for project, variable in product(projects, variables):\n", - " directory = path_data + f\"/{project}/{variable}\"\n", - " for ncfile in Path(directory).iterdir():\n", - " # filter the historical runs\n", - " if \"his\" in str(ncfile):\n", - " if project == \"GCM\":\n", - " name_model_group = ncfile.stem.split('_seasonal')[0]\n", - " # handle the exceptions of file name\n", - " if len(name_model_group.split('_')) == 3:\n", - " group, model, _ = name_model_group.split('_')\n", - " model = group + \"-\" + model # combine the names\n", - " else:\n", - " model, _ = name_model_group.split('_')\n", - " # calculate the difference and clip\n", - " diff_data = diff_obs_model(ncfile, variable)\n", - " for region_alias in regions.keys():\n", - " clipped_region = region_clip(diff_data, region_alias)\n", - " for season in seasons:\n", - " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{model}_{season}.png\")\n", - " plot_map(clipped_region, outfile, model,\n", - " season, region_alias, variable)\n", - " print(f\"Processed {ncfile}, created {outfile}.\")\n", - " if project == \"RCM\":\n", - " name_region_model_group = ncfile.stem.split('_seasonal')[0]\n", - " if len(name_region_model_group.split('_')) == 4:\n", - " region, group, model = name_region_model_group.split('_')[:3]\n", - " model = group + \"-\" + model # combine the names\n", - " else:\n", - " region, model = name_region_model_group.split('_')[:2]\n", - " # calculate the difference and clip\n", - " diff_data = diff_obs_model(ncfile, variable)\n", - " # handle the exception for hclim-ec-earth runs\n", - " if model == \"hclim-ec-earth\":\n", - " for region_alias in regions_name_dict_hclim[f\"{region}\"]:\n", - " clipped_region = region_clip(diff_data, region_alias)\n", - " for season in seasons:\n", - " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{model}_{season}.png\")\n", - " plot_map(clipped_region, outfile, model,\n", - " season, region_alias, variable)\n", - " print(f\"Processed {ncfile}, created {outfile}.\")\n", - " # for other data sets try the clipping for all the regions\n", - " else:\n", - " for region_alias in regions.keys():\n", - " try:\n", - " clipped_region = region_clip(diff_data, region_alias)\n", - " # skip regions with only a few valid points\n", - " if (len(np.unique(clipped_region.data)) < 20):\n", - " pass\n", - " else:\n", - " for season in seasons:\n", - " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{model}_{season}.png\")\n", - " plot_map(clipped_region, outfile, model,\n", - " season, region_alias, variable)\n", - " print(f\"Processed {ncfile}, created {outfile}.\")\n", - " except Exception as e:\n", - " print(e)\n", - " pass\n", - " if project == \"CPM\":\n", - " region, group, model = ncfile.stem.split('_')[:3]\n", - " if region == \"reu-3\": # reu-3 covers all the sub-regions\n", - " diff_data = diff_obs_model(ncfile, variable)\n", - " for region_alias in regions.keys():\n", - " clipped_region = region_clip(diff_data, region_alias)\n", - " for season in seasons:\n", - " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{group}_{model}_{season}.png\")\n", - " plot_map(clipped_region, outfile, model,\n", - " season, region_alias, variable)\n", - " print(f\"Processed {ncfile}, created {outfile}.\")\n", - " else: # other regions correspond to single sub-region\n", - " region_alias = regions_name_dict[f\"{region}\"]\n", - " diff_data = diff_obs_model(ncfile, variable)\n", - " clipped_region = region_clip(diff_data, region_alias)\n", - " for season in seasons:\n", - " outfile = (f\"../static/cpm_analysis/past_performance/{region_alias}/{variable}/{project.lower()}_{group}_{model}_{season}.png\")\n", - " plot_map(clipped_region, outfile, model,\n", - " season, region_alias, variable)\n", - " print(f\"Processed {ncfile}, created {outfile}.\")" - ] - } - ], - "metadata": { - "interpreter": { - "hash": "e7604e8ec5f09e490e10161e37a4725039efd3ab703d81b1b8a1e00d6741866c" - }, - "kernelspec": { - "display_name": "Python 3.8.5 ('base')", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.12" - }, - "orig_nbformat": 4 - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/python/test_performance_plots.ipynb b/python/test_performance_plots.ipynb deleted file mode 100644 index 4714e769..00000000 --- a/python/test_performance_plots.ipynb +++ /dev/null @@ -1,1232 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import numpy as np\n", - "import xarray as xr\n", - "from pathlib import Path\n", - "from itertools import product\n", - "# regridding\n", - "import xesmf as xe\n", - "# plotting\n", - "import matplotlib\n", - "import matplotlib.pyplot as plt\n", - "import cartopy.crs as crs\n", - "from cartopy import feature as cfeature\n", - "from textwrap import wrap\n", - "# for clipping\n", - "import rioxarray" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "# path to observation datasets\n", - "path_data = \"/mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind\"" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "# alias of regions\n", - "regions_name_dict = {\n", - " \"nwe-3\": \"NW\",\n", - " \"swe-3\": \"SW\",\n", - " \"see-3\": \"SE\",\n", - " \"ceu-3\": \"C\",\n", - " \"cee-3\": \"CE\",\n", - " \"neu-3\": \"N\",\n", - " \"alp-3\": \"AL\",\n", - "}\n", - "\n", - "# define geometries for clipping by regions\n", - "regions = {\n", - " \"NW\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[-8.0, 40.4], [11.0, 40.4], [15.2, 58.6], [-12.5, 58.6], [-8.0, 40.4]]]\n", - " }\n", - " ],\n", - " \"SW\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[-10, 30], [7.4, 33], [5.7, 48.9], [-15, 45.4], [-10, 30]]]\n", - " }\n", - " ],\n", - " \"SE\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[12.5, 34.3], [28.5, 34.3], [29.4, 40.9], [11.5, 40.9], [12.5, 34.3]]]\n", - " }\n", - " ],\n", - " \"C\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[5.0, 44.5], [18.0, 45.5], [18.0, 56.0], [1.0, 53.0], [5.0, 44.5]]]\n", - " }\n", - " ],\n", - " \"CE\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[17.8, 41.5], [31.3, 41.5], [32.8, 51.6], [16.4, 51.6], [17.8, 41.5]]]\n", - " }\n", - " ],\n", - " \"N\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[1, 50.7], [26.7, 49.7], [44.1, 70.6], [-9.4, 72.6], [1, 50.7]]]\n", - " }\n", - " ],\n", - " \"AL\": [\n", - " {\n", - " 'type': 'Polygon',\n", - " 'coordinates': [[[1, 40], [17, 40], [17, 50], [1, 50], [1, 40]]]\n", - " }\n", - " ]\n", - "}" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "def diff_obs_model(infile, variable, season):\n", - " \"\"\"Compute the difference between observation and model outputs.\n", - " \"\"\"\n", - " # load the input data\n", - " model_data = xr.open_dataset(infile)\n", - " # get the correct observation data\n", - " if variable == \"pr\":\n", - " obs_data = xr.open_dataset(Path(path_data, \"OBS\", \"EOBS20_seasonal_cycle_pr_day_mean_native_grid_1980-2010_ANN.nc\"))\n", - " elif variable == \"tas\":\n", - " obs_data = xr.open_dataset(Path(path_data, \"OBS\", \"EOBS20_seasonal_cycle_tas_day_mean_native_grid_1980-2010_ANN.nc\"))\n", - " #############################################################\n", - " ### regridding from model native grid to observation grid ###\n", - " #############################################################\n", - " # mask input data and observation data\n", - " model_data['mask'] = xr.where(~np.isnan(model_data[f\"{variable}\"].sel(season=season)), 1, 0)\n", - " obs_data['mask'] = xr.where(~np.isnan(obs_data[f\"{variable}\"].sel(season=season)), 1, 0)\n", - " # create regridder\n", - " regridder = xe.Regridder(model_data, obs_data, \"bilinear\")\n", - " # use the regridder to regrid data\n", - " model_data_regrid = regridder(model_data[f\"{variable}\"])\n", - " ###############################################################\n", - " ### compute difference between model output and observation ###\n", - " ###############################################################\n", - " diff_data = model_data_regrid - obs_data[f\"{variable}\"]\n", - "\n", - " return diff_data" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "ncfile = \"/mnt/d/NLeSC/BETA/EUCP/Data_Catalogue/data_Petter_Lind/CPM/pr/alp-3_cclm_ec-earth_his_seasonal_cycle_pr_D_sum_mean_native_grid_1996-2005_ANN.nc\"\n", - "diff_data = diff_obs_model(ncfile, \"pr\", \"DJF\")" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - }, - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "diff_data.sel(season=\"DJF\").plot()" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
<xarray.DataArray (season: 4, lat: 465, lon: 705)>\n",
-       "array([[[nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        ...,\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan]],\n",
-       "\n",
-       "       [[nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        ...,\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan]],\n",
-       "\n",
-       "       [[nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        ...,\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan]],\n",
-       "\n",
-       "       [[nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        ...,\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan]]])\n",
-       "Coordinates:\n",
-       "  * season   (season) object 'DJF' 'MAM' 'JJA' 'SON'\n",
-       "  * lon      (lon) float64 -24.95 -24.85 -24.75 -24.65 ... 45.25 45.35 45.45\n",
-       "  * lat      (lat) float64 25.05 25.15 25.25 25.35 ... 71.15 71.25 71.35 71.45
" - ], - "text/plain": [ - "\n", - "array([[[nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " ...,\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan]],\n", - "\n", - " [[nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " ...,\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan]],\n", - "\n", - " [[nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " ...,\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan]],\n", - "\n", - " [[nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " ...,\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan]]])\n", - "Coordinates:\n", - " * season (season) object 'DJF' 'MAM' 'JJA' 'SON'\n", - " * lon (lon) float64 -24.95 -24.85 -24.75 -24.65 ... 45.25 45.35 45.45\n", - " * lat (lat) float64 25.05 25.15 25.25 25.35 ... 71.15 71.25 71.35 71.45" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "diff_data" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
<xarray.DataArray (season: 4, lat: 465, lon: 705)>\n",
-       "array([[[nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        ...,\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan]],\n",
-       "\n",
-       "       [[nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        ...,\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan]],\n",
-       "\n",
-       "       [[nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        ...,\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan]],\n",
-       "\n",
-       "       [[nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        ...,\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan],\n",
-       "        [nan, nan, nan, ..., nan, nan, nan]]])\n",
-       "Coordinates:\n",
-       "  * season       (season) object 'DJF' 'MAM' 'JJA' 'SON'\n",
-       "  * lon          (lon) float64 -24.95 -24.85 -24.75 -24.65 ... 45.25 45.35 45.45\n",
-       "  * lat          (lat) float64 25.05 25.15 25.25 25.35 ... 71.25 71.35 71.45\n",
-       "    spatial_ref  int64 0
" - ], - "text/plain": [ - "\n", - "array([[[nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " ...,\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan]],\n", - "\n", - " [[nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " ...,\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan]],\n", - "\n", - " [[nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " ...,\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan]],\n", - "\n", - " [[nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " ...,\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan],\n", - " [nan, nan, nan, ..., nan, nan, nan]]])\n", - "Coordinates:\n", - " * season (season) object 'DJF' 'MAM' 'JJA' 'SON'\n", - " * lon (lon) float64 -24.95 -24.85 -24.75 -24.65 ... 45.25 45.35 45.45\n", - " * lat (lat) float64 25.05 25.15 25.25 25.35 ... 71.25 71.35 71.45\n", - " spatial_ref int64 0" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "diff_data.rio.write_crs(\"EPSG:4326\", inplace=True)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "clipped_data = diff_data.rio.clip(regions[\"AL\"], \"EPSG:4326\", all_touched=True)" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - }, - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "clipped_data.sel(season=\"DJF\").plot()" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "(0.9998603869882405, 17.099860322580774, 39.99986010236326, 50.09985968329349)" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - }, - { - "data": { - "image/png": "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", - "text/plain": [ - "
" - ] - }, - "metadata": { - "needs_background": "light" - }, - "output_type": "display_data" - } - ], - "source": [ - "fig = plt.figure(dpi=120)\n", - "ax = fig.add_subplot(111, projection=crs.PlateCarree())\n", - "levels = np.arange(-10, 11, 1)\n", - "clipped_data.sel(season=\"JJA\").plot(ax=ax, levels=levels, cmap=\"BrBG\",\n", - " cbar_kwargs={'label': 'Precipitation difference (mm)',\n", - " 'extend': 'neither'})\n", - "ax.add_feature(cfeature.OCEAN, zorder=2)\n", - "ax.coastlines(zorder=3)\n", - "ax.axis('off')\n" - ] - } - ], - "metadata": { - "interpreter": { - "hash": "08d8a5f855c7a1e3d1e204794a733da246b168cd162c0e6afd9e496498bf62ad" - }, - "kernelspec": { - "display_name": "Python 3.8.12 ('eucp')", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.12" - }, - "orig_nbformat": 4 - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_cmcc_DJF.png b/static/cpm_analysis/future_change/AL/pr/cpm_cmcc_DJF.png new file mode 100644 index 00000000..0ee8efa9 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_cmcc_JJA.png b/static/cpm_analysis/future_change/AL/pr/cpm_cmcc_JJA.png new file mode 100644 index 00000000..29073d79 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_cnrm_DJF.png b/static/cpm_analysis/future_change/AL/pr/cpm_cnrm_DJF.png new file mode 100644 index 00000000..a49b45ea Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_cnrm_JJA.png b/static/cpm_analysis/future_change/AL/pr/cpm_cnrm_JJA.png new file mode 100644 index 00000000..01c741eb Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/AL/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..ceb1592d Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/AL/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..dc1495fe Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_gerics_DJF.png b/static/cpm_analysis/future_change/AL/pr/cpm_gerics_DJF.png new file mode 100644 index 00000000..4a5f0ebb Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_gerics_JJA.png b/static/cpm_analysis/future_change/AL/pr/cpm_gerics_JJA.png new file mode 100644 index 00000000..2949eaa8 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_ictp_DJF.png b/static/cpm_analysis/future_change/AL/pr/cpm_ictp_DJF.png new file mode 100644 index 00000000..21ba23ed Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_ictp_JJA.png b/static/cpm_analysis/future_change/AL/pr/cpm_ictp_JJA.png new file mode 100644 index 00000000..8ab2280a Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_ipsl_DJF.png b/static/cpm_analysis/future_change/AL/pr/cpm_ipsl_DJF.png new file mode 100644 index 00000000..66b6eb44 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_ipsl_JJA.png b/static/cpm_analysis/future_change/AL/pr/cpm_ipsl_JJA.png new file mode 100644 index 00000000..540cb27c Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_knmi_DJF.png b/static/cpm_analysis/future_change/AL/pr/cpm_knmi_DJF.png new file mode 100644 index 00000000..062e2f90 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_knmi_JJA.png b/static/cpm_analysis/future_change/AL/pr/cpm_knmi_JJA.png new file mode 100644 index 00000000..b10789dd Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_smhi_DJF.png b/static/cpm_analysis/future_change/AL/pr/cpm_smhi_DJF.png new file mode 100644 index 00000000..72eadcab Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_smhi_JJA.png b/static/cpm_analysis/future_change/AL/pr/cpm_smhi_JJA.png new file mode 100644 index 00000000..134df01b Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/AL/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..71b3dfb8 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/AL/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..53e8f46b Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/AL/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..0c9b70ce Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/AL/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..74626405 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/AL/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..753dae7f Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/AL/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..170486ce Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/AL/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..b2458730 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/AL/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..df3bf814 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/AL/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..9b5daec9 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/AL/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..22a81faf Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/AL/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..f07b58ad Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/AL/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..e338dcb7 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/AL/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..749163f9 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/AL/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..219fd84f Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/AL/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..987fd2b8 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/AL/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..825d8447 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/AL/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..484b397e Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/AL/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..88a4cbfe Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/AL/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..04ec8db8 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/AL/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..6ed1ef74 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/AL/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..c369ea92 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/AL/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..65536382 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/AL/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..393b23fa Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/AL/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..e6b9c95d Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/AL/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..0c495bf0 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/AL/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..9c5b1bf0 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/AL/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..34135e0b Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/AL/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..716da36e Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/AL/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..c828261f Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/AL/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..3057b4ba Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/AL/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..6902614e Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/AL/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..dba9ca33 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/AL/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..f43ace0c Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/AL/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..694a0d91 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/AL/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..0fc3126e Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/AL/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..e60e30e6 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/AL/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..ed442d92 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/AL/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..82c6b76f Binary files /dev/null and b/static/cpm_analysis/future_change/AL/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_cmcc_DJF.png b/static/cpm_analysis/future_change/AL/tas/cpm_cmcc_DJF.png new file mode 100644 index 00000000..dfa9b5fe Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_cmcc_JJA.png b/static/cpm_analysis/future_change/AL/tas/cpm_cmcc_JJA.png new file mode 100644 index 00000000..cc450a70 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_cnrm_DJF.png b/static/cpm_analysis/future_change/AL/tas/cpm_cnrm_DJF.png new file mode 100644 index 00000000..9d765a90 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_cnrm_JJA.png b/static/cpm_analysis/future_change/AL/tas/cpm_cnrm_JJA.png new file mode 100644 index 00000000..60495171 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/AL/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..0e799954 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/AL/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..bab6f27b Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_gerics_DJF.png b/static/cpm_analysis/future_change/AL/tas/cpm_gerics_DJF.png new file mode 100644 index 00000000..f7f457f2 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_gerics_JJA.png b/static/cpm_analysis/future_change/AL/tas/cpm_gerics_JJA.png new file mode 100644 index 00000000..2623a153 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_ictp_DJF.png b/static/cpm_analysis/future_change/AL/tas/cpm_ictp_DJF.png new file mode 100644 index 00000000..210733be Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_ictp_JJA.png b/static/cpm_analysis/future_change/AL/tas/cpm_ictp_JJA.png new file mode 100644 index 00000000..c510e46d Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_ipsl_DJF.png b/static/cpm_analysis/future_change/AL/tas/cpm_ipsl_DJF.png new file mode 100644 index 00000000..8d1be152 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_ipsl_JJA.png b/static/cpm_analysis/future_change/AL/tas/cpm_ipsl_JJA.png new file mode 100644 index 00000000..235e9b26 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_knmi_DJF.png b/static/cpm_analysis/future_change/AL/tas/cpm_knmi_DJF.png new file mode 100644 index 00000000..050facd8 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_knmi_JJA.png b/static/cpm_analysis/future_change/AL/tas/cpm_knmi_JJA.png new file mode 100644 index 00000000..aabb5404 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_smhi_DJF.png b/static/cpm_analysis/future_change/AL/tas/cpm_smhi_DJF.png new file mode 100644 index 00000000..488ffa1c Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_smhi_JJA.png b/static/cpm_analysis/future_change/AL/tas/cpm_smhi_JJA.png new file mode 100644 index 00000000..1e361af7 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/AL/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..1620f327 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/AL/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..9048fd57 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/AL/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..db3143b6 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/AL/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..21fe2da6 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/AL/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..7b11bbed Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/AL/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..3856c3bf Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/AL/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..a88af97e Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/AL/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..fa7c1588 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/AL/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..3c49a31d Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/AL/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..3ce5e66f Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/AL/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..865e872d Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/AL/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..8b1c46d3 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/AL/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..b103c331 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/AL/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..f988b8bb Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/AL/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..73a559cf Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/AL/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..886a1ce9 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/AL/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..7bae691c Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/AL/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..5ef182b7 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/AL/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..de9f97fb Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/AL/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..d69a1002 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/AL/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..36b41a54 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/AL/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..062d0f44 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/AL/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..47553354 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/AL/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..d59a08d4 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/AL/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..8fe23b96 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/AL/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..1e222610 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/AL/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..df3d916b Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/AL/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..aab5a2bf Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/AL/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..52c05a38 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/AL/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..f27c6ef1 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/AL/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..30972d47 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/AL/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..1baf18de Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/AL/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..0b6cbd30 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/AL/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..d1bccb4b Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/AL/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..1fd325c3 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/AL/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..74f1381e Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/AL/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..06468463 Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/AL/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/AL/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..5638ca0f Binary files /dev/null and b/static/cpm_analysis/future_change/AL/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/C/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..281ad6d1 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/C/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..2f3e983b Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/cpm_gerics_DJF.png b/static/cpm_analysis/future_change/C/pr/cpm_gerics_DJF.png new file mode 100644 index 00000000..f5224edf Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/cpm_gerics_JJA.png b/static/cpm_analysis/future_change/C/pr/cpm_gerics_JJA.png new file mode 100644 index 00000000..981ff7b4 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/C/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..cf331b1e Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/C/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..b889b52d Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/C/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..61ad884c Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/C/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..b2638005 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/C/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..258aaa0d Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/C/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..34b159c1 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/C/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..2b09edba Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/C/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..e502309a Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/C/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..ec9903a4 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/C/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..1c402d6e Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/C/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..8029b128 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/C/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..4b2b0afa Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/C/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..779a6661 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/C/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..ae2baeaf Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/C/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..904eeb7c Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/C/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..d3ec91c2 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/C/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..961f8dbe Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/C/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..675ba278 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/C/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..c97dbf05 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/C/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..80a900cf Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/C/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..451263c9 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/C/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..15ad36e0 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/C/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..f20c4741 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/C/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..9efdc2ad Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/C/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..a8440235 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/C/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..e916b69c Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/C/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..b013ac6f Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/C/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..f2eab6e5 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/C/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..c34a64eb Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/C/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..3f614ca0 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/C/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..3d5a5bed Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/C/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..02a644b9 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/C/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..49ce8f6b Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/C/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..86fd3d66 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/C/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..c44da4c5 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/C/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..05c9074b Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/C/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..8f718a76 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/C/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..4df1c674 Binary files /dev/null and b/static/cpm_analysis/future_change/C/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/C/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..7d47611a Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/C/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..988310e2 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/cpm_gerics_DJF.png b/static/cpm_analysis/future_change/C/tas/cpm_gerics_DJF.png new file mode 100644 index 00000000..72513170 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/cpm_gerics_JJA.png b/static/cpm_analysis/future_change/C/tas/cpm_gerics_JJA.png new file mode 100644 index 00000000..824cca11 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/C/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..58eac4aa Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/C/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..bd86361f Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/C/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..fe143ec6 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/C/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..97e63cae Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/C/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..77113246 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/C/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..feb89f9f Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/C/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..7071ba28 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/C/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..3f73c01d Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/C/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..831c3c68 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/C/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..97b6cdaa Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/C/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..95a22925 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/C/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..1b6000ac Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/C/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..4b8fd980 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/C/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..38e5386a Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/C/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..96904e28 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/C/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..758938b0 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/C/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..a9cce7c3 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/C/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..4bf8b31e Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/C/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..e2842b24 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/C/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..f7850c21 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/C/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..37337e4b Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/C/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..debc5bbd Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/C/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..158a5f7d Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/C/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..5580a6a1 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/C/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..bccc04f1 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/C/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..e152cd28 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/C/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..d7f7ac5f Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/C/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..f208c292 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/C/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..ec3ca983 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/C/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..7601cf9a Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/C/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..dde629f3 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/C/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..ecd906f4 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/C/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..4de3f4f6 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/C/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..e567c814 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/C/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..38571b83 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/C/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..f6929457 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/C/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..7aedf8fd Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/C/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/C/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..ff78a6b6 Binary files /dev/null and b/static/cpm_analysis/future_change/C/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/CE/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..42b2e170 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/CE/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..7d39045f Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/cpm_ictp_DJF.png b/static/cpm_analysis/future_change/CE/pr/cpm_ictp_DJF.png new file mode 100644 index 00000000..64778b93 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/cpm_ictp_JJA.png b/static/cpm_analysis/future_change/CE/pr/cpm_ictp_JJA.png new file mode 100644 index 00000000..18d26163 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/cpm_smhi_DJF.png b/static/cpm_analysis/future_change/CE/pr/cpm_smhi_DJF.png new file mode 100644 index 00000000..234ce4b9 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/cpm_smhi_JJA.png b/static/cpm_analysis/future_change/CE/pr/cpm_smhi_JJA.png new file mode 100644 index 00000000..a9a28425 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/CE/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..e1f89107 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/CE/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..6091b588 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/CE/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..f67d55e7 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/CE/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..41fa2e4f Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/CE/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..d756e20a Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/CE/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..8c7dccf1 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/CE/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..114e5efa Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/CE/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..f92f5b33 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/CE/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..d31bb259 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/CE/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..e7d839d7 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/CE/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..890f5ca0 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/CE/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..a527ddf4 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/CE/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..e35eacf0 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/CE/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..ef47e4de Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/CE/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..1eaa2861 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/CE/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..8dea8ef0 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/CE/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..dfbeb800 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/CE/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..cf3483eb Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/CE/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..7feabee6 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/CE/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..b008ef9b Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/CE/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..aa360243 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/CE/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..75bec26e Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/CE/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..e9f336d5 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/CE/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..243f0afd Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/CE/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..9b47a9ac Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/CE/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..e0b49769 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/CE/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..4cb7869e Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/CE/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..b4cc2530 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/CE/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..356bd9de Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/CE/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..c49ccad5 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/CE/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..43660499 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/CE/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..314369bf Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/CE/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..925e11d4 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/CE/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..22b14f01 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/CE/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..ca3fc8d7 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/CE/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..8e2d1b61 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/CE/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..5b46c341 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/CE/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..cb205cf7 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/CE/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..b2db7296 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/CE/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..d2c65f08 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/cpm_ictp_DJF.png b/static/cpm_analysis/future_change/CE/tas/cpm_ictp_DJF.png new file mode 100644 index 00000000..eaf67994 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/cpm_ictp_JJA.png b/static/cpm_analysis/future_change/CE/tas/cpm_ictp_JJA.png new file mode 100644 index 00000000..96910f97 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/cpm_smhi_DJF.png b/static/cpm_analysis/future_change/CE/tas/cpm_smhi_DJF.png new file mode 100644 index 00000000..661a8b2d Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/cpm_smhi_JJA.png b/static/cpm_analysis/future_change/CE/tas/cpm_smhi_JJA.png new file mode 100644 index 00000000..924c0340 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/CE/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..1c79af69 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/CE/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..659aa4b7 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/CE/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..5e0fd83a Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/CE/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..7fb86d84 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/CE/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..87ce3bef Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/CE/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..a5b9c329 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/CE/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..778b22fb Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/CE/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..4be4e318 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/CE/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..77bd69d3 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/CE/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..bdc91cbe Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/CE/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..bd6e3112 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/CE/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..96e2550b Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/CE/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..30469e39 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/CE/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..40173d2f Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/CE/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..34ae4f57 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/CE/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..3b1bf24c Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/CE/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..78206e57 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/CE/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..c75dab26 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/CE/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..1b600857 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/CE/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..025b5bca Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/CE/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..6fcf9d09 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/CE/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..349ae300 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/CE/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..a7ed9f4b Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/CE/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..3ec672b6 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/CE/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..ac66dac8 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/CE/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..a14f219e Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/CE/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..4fee39e6 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/CE/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..bd415cb2 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/CE/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..a56207d6 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/CE/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..c04cf4f1 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/CE/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..c8d60a08 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/CE/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..8944f6a8 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/CE/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..f167d13c Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/CE/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..e325d27c Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/CE/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..2dbaa9c8 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/CE/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..5f9fca29 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/CE/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..86508e09 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/CE/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/CE/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..9c0ddf62 Binary files /dev/null and b/static/cpm_analysis/future_change/CE/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/N/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..59806fb8 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/N/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..37684cbe Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/cpm_gerics_DJF.png b/static/cpm_analysis/future_change/N/pr/cpm_gerics_DJF.png new file mode 100644 index 00000000..5ac41003 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/cpm_gerics_JJA.png b/static/cpm_analysis/future_change/N/pr/cpm_gerics_JJA.png new file mode 100644 index 00000000..d9b46720 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/cpm_smhi_DJF.png b/static/cpm_analysis/future_change/N/pr/cpm_smhi_DJF.png new file mode 100644 index 00000000..34b5900f Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/cpm_smhi_JJA.png b/static/cpm_analysis/future_change/N/pr/cpm_smhi_JJA.png new file mode 100644 index 00000000..f3040e94 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/N/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..84a7acd7 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/N/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..087c91ba Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/N/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..db06e065 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/N/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..36397795 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/N/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..cc7a1658 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/N/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..1d3c1eb5 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/N/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..e69f4112 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/N/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..79aaac3a Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/N/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..8bd82460 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/N/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..bdd783a8 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/N/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..3c9088b1 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/N/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..44af6b3b Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/N/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..64667429 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/N/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..e64df555 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/N/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..20c3212d Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/N/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..b5e41e8b Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/N/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..d02359c2 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/N/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..91840dbc Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/N/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..a03bde85 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/N/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..be6be923 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/N/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..d908c6d4 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/N/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..ab56cc3b Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/N/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..56be74c5 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/N/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..59e641ba Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/N/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..88621ab2 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/N/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..3999cf91 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/N/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..af71a83b Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/N/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..46ffbc63 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/N/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..c6676286 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/N/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..91b2dca8 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/N/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..7eaf90e3 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/N/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..8ad9a4dd Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/N/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..8ce025ad Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/N/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..1a088394 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/N/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..3b592142 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/N/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..0fc471ee Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/N/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..bc58ae62 Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/N/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..fc6df86e Binary files /dev/null and b/static/cpm_analysis/future_change/N/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/N/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..66a3bf0c Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/N/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..13fd6440 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/cpm_gerics_DJF.png b/static/cpm_analysis/future_change/N/tas/cpm_gerics_DJF.png new file mode 100644 index 00000000..c091f656 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/cpm_gerics_JJA.png b/static/cpm_analysis/future_change/N/tas/cpm_gerics_JJA.png new file mode 100644 index 00000000..c3ff444c Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/cpm_smhi_DJF.png b/static/cpm_analysis/future_change/N/tas/cpm_smhi_DJF.png new file mode 100644 index 00000000..464b4a4a Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/cpm_smhi_JJA.png b/static/cpm_analysis/future_change/N/tas/cpm_smhi_JJA.png new file mode 100644 index 00000000..b89c1510 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/N/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..b3200809 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/N/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..e804137f Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/N/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..5354d603 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/N/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..2552118d Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/N/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..63480bb6 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/N/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..8a8e7732 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/N/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..5d26758f Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/N/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..8bba6d2e Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/N/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..d9a8f54c Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/N/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..eabfcf36 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/N/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..357db577 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/N/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..548a84e8 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/N/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..85cd5245 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/N/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..fb17320b Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/N/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..7f2700a1 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/N/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..0e8ed6d0 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/N/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..83930471 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/N/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..04c433f0 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/N/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..87a9aed7 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/N/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..737eae71 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/N/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..ea1ba463 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/N/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..9b854547 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/N/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..009ca2f5 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/N/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..4e56810d Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/N/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..cde90ced Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/N/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..cf7f8e0c Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/N/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..a29f55f3 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/N/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..f67675f4 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/N/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..cfd3ba2d Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/N/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..a1d7bacf Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/N/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..cc108a6e Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/N/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..e6f2148c Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/N/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..a9c32a62 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/N/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..621f5c47 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/N/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..e0640ff0 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/N/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..7db374c7 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/N/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..d8d178b0 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/N/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/N/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..015061b7 Binary files /dev/null and b/static/cpm_analysis/future_change/N/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_cnrm_DJF.png b/static/cpm_analysis/future_change/NW/pr/cpm_cnrm_DJF.png new file mode 100644 index 00000000..e61e4f16 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_cnrm_JJA.png b/static/cpm_analysis/future_change/NW/pr/cpm_cnrm_JJA.png new file mode 100644 index 00000000..00ad9e49 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/NW/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..4e3ee98f Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/NW/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..67c227a2 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_knmi_DJF.png b/static/cpm_analysis/future_change/NW/pr/cpm_knmi_DJF.png new file mode 100644 index 00000000..2248eca9 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_knmi_JJA.png b/static/cpm_analysis/future_change/NW/pr/cpm_knmi_JJA.png new file mode 100644 index 00000000..22e16544 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_smhi_DJF.png b/static/cpm_analysis/future_change/NW/pr/cpm_smhi_DJF.png new file mode 100644 index 00000000..d7101727 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_smhi_JJA.png b/static/cpm_analysis/future_change/NW/pr/cpm_smhi_JJA.png new file mode 100644 index 00000000..a7422c12 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/NW/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..b42aede9 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/NW/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..2eec055c Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/NW/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..720e774a Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/NW/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..8ee77dce Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/NW/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..174041bf Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/NW/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..08d05939 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/NW/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..32f57932 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/NW/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..a0e7f5f6 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/NW/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..c1437eb6 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/NW/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..f57a003d Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/NW/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..5bc40f03 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/NW/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..a8366ae3 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/NW/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..7957d926 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/NW/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..f6dbd686 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/NW/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..706c40db Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/NW/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..33650807 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/NW/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..20cd78d3 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/NW/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..39fb48cc Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/NW/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..302f12a4 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/NW/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..213c302a Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/NW/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..0fe0bd00 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/NW/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..4428efd8 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/NW/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..7f55fe50 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/NW/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..9af6bc93 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/NW/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..c622cb20 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/NW/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..16d57511 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/NW/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..496ceeb2 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/NW/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..da51c77a Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/NW/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..d7b8ab5c Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/NW/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..e05016d4 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/NW/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..7948b585 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/NW/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..80b71c79 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/NW/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..0628e495 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/NW/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..0b8e292f Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/NW/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..6577d05f Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/NW/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..41c59fa3 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/NW/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..ea765a9a Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/NW/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..758ca354 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_cnrm_DJF.png b/static/cpm_analysis/future_change/NW/tas/cpm_cnrm_DJF.png new file mode 100644 index 00000000..9d4747d6 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_cnrm_JJA.png b/static/cpm_analysis/future_change/NW/tas/cpm_cnrm_JJA.png new file mode 100644 index 00000000..8a0a39b7 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/NW/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..1dc9e5fb Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/NW/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..5b368450 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_knmi_DJF.png b/static/cpm_analysis/future_change/NW/tas/cpm_knmi_DJF.png new file mode 100644 index 00000000..6ebdc6cf Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_knmi_JJA.png b/static/cpm_analysis/future_change/NW/tas/cpm_knmi_JJA.png new file mode 100644 index 00000000..99cd74ea Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_smhi_DJF.png b/static/cpm_analysis/future_change/NW/tas/cpm_smhi_DJF.png new file mode 100644 index 00000000..a7f74bf0 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_smhi_JJA.png b/static/cpm_analysis/future_change/NW/tas/cpm_smhi_JJA.png new file mode 100644 index 00000000..53d1e8b1 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/NW/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..6393fbb3 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/NW/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..05b91780 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/NW/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..5c0707d8 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/NW/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..cca4c1aa Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/NW/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..93d17a03 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/NW/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..1a9e90d8 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/NW/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..68f14d64 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/NW/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..da109b31 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/NW/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..f92c69c7 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/NW/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..38248c9f Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/NW/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..d6de1f0f Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/NW/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..a84aa697 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/NW/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..dff82788 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/NW/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..9c418c45 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/NW/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..c1350e7c Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/NW/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..a6e58107 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/NW/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..893b2595 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/NW/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..b9d39e12 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/NW/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..03ad47aa Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/NW/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..1fc2adbc Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/NW/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..ee51ae53 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/NW/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..bbfb5d76 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/NW/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..7907a4f8 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/NW/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..b6cb6916 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/NW/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..426e81af Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/NW/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..032ebda8 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/NW/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..cb8fe5dc Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/NW/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..5e90fed5 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/NW/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..168b6038 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/NW/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..b9c3f2c0 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/NW/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..88a7be4b Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/NW/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..cdd559fb Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/NW/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..8c59730b Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/NW/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..b18b1da4 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/NW/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..20e27205 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/NW/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..ea68948e Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/NW/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..3f0bc36e Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/NW/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/NW/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..5c388779 Binary files /dev/null and b/static/cpm_analysis/future_change/NW/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/SE/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..dce7a56b Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/SE/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..7d6e5ff8 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/cpm_ictp_DJF.png b/static/cpm_analysis/future_change/SE/pr/cpm_ictp_DJF.png new file mode 100644 index 00000000..98adaa88 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/cpm_ictp_JJA.png b/static/cpm_analysis/future_change/SE/pr/cpm_ictp_JJA.png new file mode 100644 index 00000000..38e57ef2 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/SE/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..7d543ee7 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/SE/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..0e14e174 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/SE/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..d70e356e Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/SE/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..ffe6321a Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/SE/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..727447a5 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/SE/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..fd87f469 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/SE/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..4848b7da Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/SE/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..3dc5180d Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/SE/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..c72c8018 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/SE/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..c0eaff83 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/SE/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..5a5f3666 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/SE/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..a9df6444 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/SE/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..707f6558 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/SE/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..6876fb04 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/SE/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..a2a0c446 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/SE/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..17d7dca6 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/SE/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..bf5e30f6 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/SE/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..04d7c68b Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/SE/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..a6903dcd Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/SE/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..63837849 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/SE/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..df58339b Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/SE/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..ab2a0cf1 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/SE/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..ecb28e27 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/SE/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..2f3a4160 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/SE/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..38c3c276 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/SE/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..33c6dad1 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/SE/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..ad869455 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/SE/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..b9153125 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/SE/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..d0fcebf7 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/SE/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..ff710e86 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/SE/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..7ec2189b Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/SE/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..e21239d1 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/SE/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..72bd67c3 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/SE/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..28a07cc9 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/SE/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..23dfb380 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/SE/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..147600d7 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/SE/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..af3779a0 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/SE/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..728ff587 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/SE/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..4055defd Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/SE/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..ea2bbc7f Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/cpm_ictp_DJF.png b/static/cpm_analysis/future_change/SE/tas/cpm_ictp_DJF.png new file mode 100644 index 00000000..1c9258b6 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/cpm_ictp_JJA.png b/static/cpm_analysis/future_change/SE/tas/cpm_ictp_JJA.png new file mode 100644 index 00000000..b1b0724e Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/SE/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..4fbd9f47 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/SE/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..24362681 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/SE/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..157bac61 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/SE/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..ae0dd825 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/SE/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..f4835b44 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/SE/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..1433258e Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/SE/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..6df19553 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/SE/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..9b9449cd Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/SE/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..53aa5289 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/SE/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..a259e94d Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/SE/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..40612815 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/SE/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..0ef55c81 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/SE/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..7eff79c8 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/SE/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..4ff08a09 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/SE/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..28d6874f Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/SE/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..27455209 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/SE/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..26593cbc Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/SE/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..35620141 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/SE/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..6d453106 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/SE/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..34e21541 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/SE/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..9275e56d Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/SE/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..60ba9c6d Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/SE/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..a99943f9 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/SE/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..8ad8cdfb Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/SE/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..14ce22c7 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/SE/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..f6996df2 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/SE/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..e418bbfa Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/SE/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..93502195 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/SE/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..ba1e38aa Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/SE/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..ef42a171 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/SE/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..969cc86f Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/SE/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..8074d1c9 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/SE/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..1c48a60d Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/SE/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..6258c786 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/SE/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..dd1ca6e1 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/SE/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..44f0b9c2 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/SE/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..f82616a6 Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SE/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/SE/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..cbbf75ee Binary files /dev/null and b/static/cpm_analysis/future_change/SE/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/cpm_cmcc_DJF.png b/static/cpm_analysis/future_change/SW/pr/cpm_cmcc_DJF.png new file mode 100644 index 00000000..57368dea Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/cpm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/cpm_cmcc_JJA.png b/static/cpm_analysis/future_change/SW/pr/cpm_cmcc_JJA.png new file mode 100644 index 00000000..41d1e33f Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/cpm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/SW/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..63d1ff83 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/SW/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..47fbbc3a Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/cpm_ipsl_DJF.png b/static/cpm_analysis/future_change/SW/pr/cpm_ipsl_DJF.png new file mode 100644 index 00000000..33194a40 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/cpm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/cpm_ipsl_JJA.png b/static/cpm_analysis/future_change/SW/pr/cpm_ipsl_JJA.png new file mode 100644 index 00000000..b445dbd0 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/cpm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/SW/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..f2b2ecec Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/SW/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..4e2e0dc5 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/SW/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..da72de89 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/SW/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..cabdfb89 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/SW/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..8bb92c3c Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/SW/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..f2c265b4 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/SW/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..93bc6b5a Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/SW/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..d32171d6 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/SW/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..7df5df82 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/SW/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..52b2f221 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/SW/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..df968691 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/SW/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..a87e28a4 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/SW/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..95b6897e Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/SW/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..9f9559e0 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/SW/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..aeb66939 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/SW/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..f15b9dee Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/SW/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..6986ecf7 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/SW/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..7595c26b Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/SW/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..43088943 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/SW/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..f25496f3 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/SW/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..0a0676a8 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/SW/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..38515d08 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/SW/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..af62848d Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/SW/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..ad6c2a3f Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/SW/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..b2aad5bd Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/SW/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..7cbc82ee Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/SW/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..14f98823 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/SW/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..3ca77a1e Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/SW/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..8b6dd461 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/SW/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..f98a417c Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/SW/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..d2149f8b Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/SW/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..126c0f14 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/SW/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..7bbb2896 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/SW/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..de32f9a6 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/SW/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..dd49163f Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/SW/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..f2f239e3 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/SW/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..2d11bf6c Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/SW/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..7ace0110 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/cpm_cmcc_DJF.png b/static/cpm_analysis/future_change/SW/tas/cpm_cmcc_DJF.png new file mode 100644 index 00000000..cae455d6 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/cpm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/cpm_cmcc_JJA.png b/static/cpm_analysis/future_change/SW/tas/cpm_cmcc_JJA.png new file mode 100644 index 00000000..d1457c3f Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/cpm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/cpm_ethz_DJF.png b/static/cpm_analysis/future_change/SW/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..d13484b6 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/cpm_ethz_JJA.png b/static/cpm_analysis/future_change/SW/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..df767d31 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/cpm_ipsl_DJF.png b/static/cpm_analysis/future_change/SW/tas/cpm_ipsl_DJF.png new file mode 100644 index 00000000..06e36873 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/cpm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/cpm_ipsl_JJA.png b/static/cpm_analysis/future_change/SW/tas/cpm_ipsl_JJA.png new file mode 100644 index 00000000..301fd59f Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/cpm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/future_change/SW/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..776cf283 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/future_change/SW/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..56731d9c Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/future_change/SW/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..6ef5df29 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/future_change/SW/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..7f1633e4 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/future_change/SW/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..cc6cca78 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/future_change/SW/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..8e68cad0 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_ethz_DJF.png b/static/cpm_analysis/future_change/SW/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..099b7cc6 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_ethz_JJA.png b/static/cpm_analysis/future_change/SW/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..d326ae85 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_gerics_DJF.png b/static/cpm_analysis/future_change/SW/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..69235ed7 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_gerics_JJA.png b/static/cpm_analysis/future_change/SW/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..64f3efb1 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_ictp_DJF.png b/static/cpm_analysis/future_change/SW/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..0910a4cc Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_ictp_JJA.png b/static/cpm_analysis/future_change/SW/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..86f33eab Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/future_change/SW/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..34510962 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/future_change/SW/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..1c68fbf7 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_knmi_DJF.png b/static/cpm_analysis/future_change/SW/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..60a6900b Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_knmi_JJA.png b/static/cpm_analysis/future_change/SW/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..e3b7a07e Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_smhi_DJF.png b/static/cpm_analysis/future_change/SW/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..6994f11b Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_smhi_JJA.png b/static/cpm_analysis/future_change/SW/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..f00518b3 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/future_change/SW/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..7cca582e Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/future_change/SW/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..3f3b24c9 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/future_change/SW/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..cf97f4f9 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/future_change/SW/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..1948a2fb Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/future_change/SW/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..b75cb5d7 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/future_change/SW/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..df9e933b Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_ethz_DJF.png b/static/cpm_analysis/future_change/SW/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..e21f4800 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_ethz_JJA.png b/static/cpm_analysis/future_change/SW/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..a3e545ec Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_gerics_DJF.png b/static/cpm_analysis/future_change/SW/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..077a098f Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_gerics_JJA.png b/static/cpm_analysis/future_change/SW/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..8986dd7f Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_ictp_DJF.png b/static/cpm_analysis/future_change/SW/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..8c88f52a Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_ictp_JJA.png b/static/cpm_analysis/future_change/SW/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..a4f23bec Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/future_change/SW/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..f0a8543e Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/future_change/SW/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..c0397191 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_knmi_DJF.png b/static/cpm_analysis/future_change/SW/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..46064437 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_knmi_JJA.png b/static/cpm_analysis/future_change/SW/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..c5c8f45d Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_smhi_DJF.png b/static/cpm_analysis/future_change/SW/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..c766d33b Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_smhi_JJA.png b/static/cpm_analysis/future_change/SW/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..73876980 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/future_change/SW/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..bd301479 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/future_change/SW/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/future_change/SW/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..e90c8837 Binary files /dev/null and b/static/cpm_analysis/future_change/SW/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_cclm_ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_cclm_ec-earth_DJF.png deleted file mode 100644 index 5ae7eb88..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_cclm_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_cclm_ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_cclm_ec-earth_JJA.png deleted file mode 100644 index ed3698f9..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_cclm_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_cmcc_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_cmcc_DJF.png new file mode 100644 index 00000000..46a7df34 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_cmcc_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_cmcc_JJA.png new file mode 100644 index 00000000..fd287d9e Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm-arome_cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm-arome_cnrm-cm5_DJF.png deleted file mode 100644 index 543c0fa3..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm-arome_cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm-arome_cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm-arome_cnrm-cm5_JJA.png deleted file mode 100644 index bea2a3f5..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm-arome_cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm_DJF.png new file mode 100644 index 00000000..79ce854b Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm_JJA.png new file mode 100644 index 00000000..aa56515c Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index 6b72a016..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 3ff3a32d..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_mpi_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_mpi_DJF.png deleted file mode 100644 index 04b5a0d4..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_mpi_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_mpi_JJA.png deleted file mode 100644 index 597a401e..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz-cclm_mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..829d5461 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..c39c2f51 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_DJF.png new file mode 100644 index 00000000..1708b6e0 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_JJA.png new file mode 100644 index 00000000..b91e3984 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_mpi-esm-lr_DJF.png deleted file mode 100644 index b95fa34b..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_mpi-esm-lr_JJA.png deleted file mode 100644 index 2ce52e41..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_gerics_mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_hclim-knmi_ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_hclim-knmi_ec-earth_DJF.png deleted file mode 100644 index a7c169d2..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_hclim-knmi_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_hclim-knmi_ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_hclim-knmi_ec-earth_JJA.png deleted file mode 100644 index 2b167c49..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_hclim-knmi_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_hclim_ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_hclim_ec-earth_DJF.png deleted file mode 100644 index 68f06801..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_hclim_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_hclim_ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_hclim_ec-earth_JJA.png deleted file mode 100644 index a236530f..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_hclim_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ictp_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ictp_DJF.png new file mode 100644 index 00000000..f4115e7d Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ictp_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ictp_JJA.png new file mode 100644 index 00000000..3beceded Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl-wrf_ipsl-cm5-mr_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl-wrf_ipsl-cm5-mr_DJF.png deleted file mode 100644 index 7e66d705..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl-wrf_ipsl-cm5-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl-wrf_ipsl-cm5-mr_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl-wrf_ipsl-cm5-mr_JJA.png deleted file mode 100644 index b9c5512d..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl-wrf_ipsl-cm5-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl_DJF.png new file mode 100644 index 00000000..c8737da2 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl_JJA.png new file mode 100644 index 00000000..f139676c Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_knmi_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_knmi_DJF.png new file mode 100644 index 00000000..32bc22a9 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_knmi_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_knmi_JJA.png new file mode 100644 index 00000000..5c81dbb9 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index fd9b88ea..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index 655d87a4..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_regcm4_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_regcm4_hadgem2-es_DJF.png deleted file mode 100644 index 1615220e..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_regcm4_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_regcm4_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_regcm4_hadgem2-es_JJA.png deleted file mode 100644 index ceba1055..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/cpm_regcm4_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_smhi_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_smhi_DJF.png new file mode 100644 index 00000000..bd75172c Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_smhi_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_smhi_JJA.png new file mode 100644 index 00000000..201e261d Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..e907f645 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/AL/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..036900e6 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..20f9023e Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..426ff465 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 18bc6c39..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 89e186a3..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..d50a8d7b Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..9cbd2d6a Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index 3d7d1ea5..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index de78569c..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index ab98bd24..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index 07047500..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index 4bcfb1c1..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index bc04670c..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index 153e16ca..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index 12e1ae84..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..4fda8447 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..e844d5ad Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 725a707e..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 60fb432e..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..4f11c7c8 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..6d8e8a0b Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 564203a8..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 49e6016b..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_DJF.png deleted file mode 100644 index ce6ad09d..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_JJA.png deleted file mode 100644 index 84608d71..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..8c084f8e Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..02325083 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 4291c953..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index c1a60aac..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index aa26ec57..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index f24bd62a..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..c6f74b9f Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..fee68dca Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index ff6ed408..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index 962301cd..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index c108a89c..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index f2fcd80f..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..deafa07d Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..29d8f1dd Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..abf1b958 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..a886f7d4 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..2a32d985 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/AL/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..7a88d86d Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index e6b3ada9..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index baf3e773..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..7b8b0f4c Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..f5021be5 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 6bc64593..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index b036cfb1..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..374e4612 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..008e9926 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index 5d8973c0..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index 568c8083..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index ae9fe5f1..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index eeea8dbb..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..55d7fefb Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..390a4411 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 25c6fe53..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index e289d3cf..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..5da6aaee Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..d64891a2 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 16d1c847..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 391a5c8e..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..dd1c6421 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..48174666 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 3647fb56..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 452fb6f2..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..985272b7 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..d605e49f Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index d6800379..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index dae68548..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 49e4a076..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 5a3a6e1f..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..d4fa9efa Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..3393267f Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index f8d3a2a6..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 8eaa55a6..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index 7ba61ea9..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index 444fe9b8..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index c86355dc..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 40c86d45..00000000 Binary files a/static/cpm_analysis/past_performance/AL/pr/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..e3c90ea8 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..0e7a9c12 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..e6510d33 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/AL/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..44462a43 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_cclm_ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_cclm_ec-earth_DJF.png deleted file mode 100644 index 93cdd966..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_cclm_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_cclm_ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_cclm_ec-earth_JJA.png deleted file mode 100644 index 06aa1d14..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_cclm_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_cmcc_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_cmcc_DJF.png new file mode 100644 index 00000000..eb4390d5 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_cmcc_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_cmcc_JJA.png new file mode 100644 index 00000000..186e4aa3 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm-arome_cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm-arome_cnrm-cm5_DJF.png deleted file mode 100644 index 19636f7c..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm-arome_cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm-arome_cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm-arome_cnrm-cm5_JJA.png deleted file mode 100644 index c559b714..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm-arome_cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm_DJF.png new file mode 100644 index 00000000..1f1f19e0 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm_JJA.png new file mode 100644 index 00000000..a972d6a5 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index 19d297eb..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 1dbdabd5..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_mpi_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_mpi_DJF.png deleted file mode 100644 index af85140c..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_mpi_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_mpi_JJA.png deleted file mode 100644 index 330a8dd6..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz-cclm_mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..405119d6 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..0301f83b Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_DJF.png new file mode 100644 index 00000000..cbcb0374 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_JJA.png new file mode 100644 index 00000000..08d024cd Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_mpi-esm-lr_DJF.png deleted file mode 100644 index 2d51df57..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_mpi-esm-lr_JJA.png deleted file mode 100644 index 11983326..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_gerics_mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_hclim-knmi_ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_hclim-knmi_ec-earth_DJF.png deleted file mode 100644 index 62263fc4..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_hclim-knmi_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_hclim-knmi_ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_hclim-knmi_ec-earth_JJA.png deleted file mode 100644 index 654f6802..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_hclim-knmi_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_hclim_ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_hclim_ec-earth_DJF.png deleted file mode 100644 index dcc27926..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_hclim_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_hclim_ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_hclim_ec-earth_JJA.png deleted file mode 100644 index 54870441..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_hclim_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ictp_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ictp_DJF.png new file mode 100644 index 00000000..8eb0c462 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ictp_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ictp_JJA.png new file mode 100644 index 00000000..aa9cfd0d Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl-wrf_ipsl-cm5-mr_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl-wrf_ipsl-cm5-mr_DJF.png deleted file mode 100644 index 2a379286..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl-wrf_ipsl-cm5-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl-wrf_ipsl-cm5-mr_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl-wrf_ipsl-cm5-mr_JJA.png deleted file mode 100644 index c7e84cb6..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl-wrf_ipsl-cm5-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl_DJF.png new file mode 100644 index 00000000..db7f9744 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl_JJA.png new file mode 100644 index 00000000..793eb6c0 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_knmi_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_knmi_DJF.png new file mode 100644 index 00000000..6e74a2cd Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_knmi_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_knmi_JJA.png new file mode 100644 index 00000000..1f1b9cc8 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index d91f2905..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index 7fbcc7c5..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_regcm4_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_regcm4_hadgem2-es_DJF.png deleted file mode 100644 index 26f3a5bd..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_regcm4_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_regcm4_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_regcm4_hadgem2-es_JJA.png deleted file mode 100644 index 46a3861e..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/cpm_regcm4_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_smhi_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_smhi_DJF.png new file mode 100644 index 00000000..416770bf Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_smhi_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_smhi_JJA.png new file mode 100644 index 00000000..7ac32606 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..34c543d6 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/AL/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..0b9f51fd Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..fec95661 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..703b7dc3 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 5a8c109b..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 88b4fb7d..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..517852d8 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..a1f0e5fb Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index 79fb11c7..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index 9c9d9472..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index b124d0ab..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index 0c64d964..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index 24bc3056..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index c1b8a752..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index 5e30e57a..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index ab3019a6..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..f7ecb98e Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..7d591b23 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 2887db7d..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 19b0143c..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..57f09d7e Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..2a1ed213 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index f19da546..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 2f792b31..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 7a2e9f24..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_JJA.png deleted file mode 100644 index 53d2a5e5..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..175c3c03 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..8c5a145f Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 5713137d..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 4ce9d973..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index ab455a46..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index c26767b0..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..1b471dc5 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..d62425c0 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index 32b4275c..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index 9a55036d..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index ec198f75..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index 5e665d22..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..a5d4d8df Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..ecbb2f93 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..d4b9751f Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..e7c7c49a Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..cbd2a167 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/AL/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..0c41ff5b Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 4c89a0a4..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index 269cfb03..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..a225f35c Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..bc295a8c Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index bdf588a7..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index cff686f8..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..f813efac Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..9355e83d Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index 95cf5949..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index 31057c75..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index 0d84968a..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index 7f08418a..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..6091a0a7 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..a66534ec Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 499d92df..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index ed83cd9a..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..23188bdd Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..3fbd234a Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 8c682721..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 7c24c70c..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..0aca7443 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..59bfe75f Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 13804e06..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 438d9791..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..942d9122 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..fe1aaf5b Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index 16345aaf..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 2bbbbf20..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index bd0da1a3..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 005fc10a..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..355ecbd9 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..baa86155 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 02dcaa6b..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 444fe551..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index 3d51f7d4..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index 61f2d027..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index b90d0a50..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index f8b4d93b..00000000 Binary files a/static/cpm_analysis/past_performance/AL/tas/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..7b859864 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..e31ca2a7 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..4177ccbe Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/AL/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/AL/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..06417e19 Binary files /dev/null and b/static/cpm_analysis/past_performance/AL/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index 31794d24..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 4a0f7250..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/C/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..256f8a6e Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/C/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..babdbb3d Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_gerics_DJF.png b/static/cpm_analysis/past_performance/C/pr/cpm_gerics_DJF.png new file mode 100644 index 00000000..2ea0e17d Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_gerics_JJA.png b/static/cpm_analysis/past_performance/C/pr/cpm_gerics_JJA.png new file mode 100644 index 00000000..23b05b05 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_gerics_mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/C/pr/cpm_gerics_mpi-esm-lr_DJF.png deleted file mode 100644 index 14836b80..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/cpm_gerics_mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_gerics_mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/C/pr/cpm_gerics_mpi-esm-lr_JJA.png deleted file mode 100644 index 15c23d31..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/cpm_gerics_mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/C/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 4890f19e..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/C/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index d08341e3..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/C/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..8484f2b9 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/C/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..6103ab91 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..f6cb74a0 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..62d6bcef Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 135d2f4d..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 5bf4dac7..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..9a8411b9 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..3469ba04 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index dc535b0f..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index fc43eaf9..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index 76839eb0..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index ee262060..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index e3a74ac9..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index a3241c27..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index fd67975b..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index ffe26c4f..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..861f6b97 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..2e106999 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 86b290d4..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 3693d48e..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..abb24799 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..d1d78069 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index a74e7923..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 0fc7d8a4..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_DJF.png deleted file mode 100644 index b98f1720..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_JJA.png deleted file mode 100644 index d42a031d..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..39f60e8b Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..e88273c5 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 8669e823..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index e0f1d535..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 8ebed714..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index 7c3887ba..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..aa3c31b8 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..5f69a5b1 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index 9ad6108f..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index 09d0cdc3..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index 0c49d311..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index aa92f00f..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..f04e1977 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..619fdc90 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..12b01fe4 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..4906fd44 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/C/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..1a848bb1 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/C/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..9211ccdb Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 83d0466f..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index f6a93a88..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..c08fa94f Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..5f4c5f49 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 9a57c84b..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index eac7e7a7..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..e1d7eeb9 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..bee55a08 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index 4db6a978..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index 37011678..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index 9f6bae91..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index 61e39b97..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..39ad700f Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..554ba9b0 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 1b47e1e6..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 8ec033a4..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..f69338fd Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..95ad78b5 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 93cce9d1..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 1aa9f9c2..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..c726d3e5 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..48a05110 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 716f013a..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index a1461c85..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..0e40d0e7 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..b22002a0 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index f948396d..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 50bd5877..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index e34047c7..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 2109f196..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..108dc9ec Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..e3b4b558 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 14de711c..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index cfdac476..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index b0446817..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index b3479c3b..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index 361564d2..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 0abf9577..00000000 Binary files a/static/cpm_analysis/past_performance/C/pr/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..31f53592 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..61511f69 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/C/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..a2ef10d4 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/C/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..9ba8c47a Binary files /dev/null and b/static/cpm_analysis/past_performance/C/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index c2b187ed..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index e3f870a4..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/C/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..4bdb940f Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/C/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..c3b0757b Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_gerics_DJF.png b/static/cpm_analysis/past_performance/C/tas/cpm_gerics_DJF.png new file mode 100644 index 00000000..80e42de3 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_gerics_JJA.png b/static/cpm_analysis/past_performance/C/tas/cpm_gerics_JJA.png new file mode 100644 index 00000000..563d4fbe Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_gerics_mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/C/tas/cpm_gerics_mpi-esm-lr_DJF.png deleted file mode 100644 index e007903e..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/cpm_gerics_mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_gerics_mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/C/tas/cpm_gerics_mpi-esm-lr_JJA.png deleted file mode 100644 index 7c1a9e00..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/cpm_gerics_mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/C/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 09e32330..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/C/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index 8bfe793e..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/C/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..0844e37f Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/C/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..b91bd503 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..c31bb54b Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..58e445eb Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 11f69142..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 7414984f..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..405e311b Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..73f9bc6b Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index 57fb354b..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index 393b898c..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index 7a47b82c..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index 89527be6..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index f9dc6309..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index 9582ffd9..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index d3ec0334..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index ece17027..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..e52c2273 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..e0dfb323 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 545eb72d..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index e261111e..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..93e4a0d7 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..4d324e36 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 165e3ced..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 15f2b3c9..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 2d72c33a..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_JJA.png deleted file mode 100644 index 59b3d9b9..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..0c3c7a4f Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..b0b3bf7a Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 067c44f7..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 0059eaec..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index e7a7c413..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index f8d8ce90..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..dc123e92 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..126bf8a0 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index b550f4a5..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index b0343a21..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index 5b48d82a..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index 65ba7707..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..73c5d1e1 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..071034e8 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..d53cc124 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..0456a1b6 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/C/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..50e95d20 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/C/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..edf6600f Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 070c8a0c..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index 61ad046d..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..8f219578 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..91749792 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 3e922957..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index e3597e5a..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..321486a0 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..0dc4630c Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index ac5e14cc..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index e26a54af..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index f1826b9e..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index 4d15bddc..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..499324fa Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..8e56ab37 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index dce85763..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 16821195..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..04173e69 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..b08ec921 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 99adbac7..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 75ea693f..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..21d8faf1 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..0f5b6713 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 250b8013..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 3b929b14..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..12006d13 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..44138c41 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index 9a569341..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 34ee5ab9..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 259489f1..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index bb378b52..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..85d9d3a1 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..089dabc1 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index aa3fb8f8..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index f954997c..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index 07a380c8..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index 7a0065f3..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index 1a7cc2d8..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index b93ff6ab..00000000 Binary files a/static/cpm_analysis/past_performance/C/tas/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..db574e7f Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..bd9a9e37 Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/C/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..164d5ddc Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/C/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/C/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..5124da3e Binary files /dev/null and b/static/cpm_analysis/past_performance/C/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index ad4399e1..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index b36e51de..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/CE/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..592fa05d Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/CE/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..7cbaf3bf Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_hclim_ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/pr/cpm_hclim_ec-earth_DJF.png deleted file mode 100644 index 5ed37f83..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/cpm_hclim_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_hclim_ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/pr/cpm_hclim_ec-earth_JJA.png deleted file mode 100644 index 693a0bdb..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/cpm_hclim_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_ictp_DJF.png b/static/cpm_analysis/past_performance/CE/pr/cpm_ictp_DJF.png new file mode 100644 index 00000000..80a3d9c1 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_ictp_JJA.png b/static/cpm_analysis/past_performance/CE/pr/cpm_ictp_JJA.png new file mode 100644 index 00000000..4afe2cd3 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/CE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 48cc8dd7..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/CE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index e1cc0197..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_regcm4_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/CE/pr/cpm_regcm4_hadgem2-es_DJF.png deleted file mode 100644 index 6f4749bf..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/cpm_regcm4_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_regcm4_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/CE/pr/cpm_regcm4_hadgem2-es_JJA.png deleted file mode 100644 index af5dc25e..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/cpm_regcm4_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_smhi_DJF.png b/static/cpm_analysis/past_performance/CE/pr/cpm_smhi_DJF.png new file mode 100644 index 00000000..c6a36df0 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_smhi_JJA.png b/static/cpm_analysis/past_performance/CE/pr/cpm_smhi_JJA.png new file mode 100644 index 00000000..432e173f Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/CE/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..1400cc92 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/CE/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..2489b418 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..4a05d0ef Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..0b0c628d Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index c6275c79..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index d3562edb..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..0a374f06 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..2e18a589 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index af1a200d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index 5dd15cbc..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index be2fa9a8..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index 04ba62cc..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index eb6df420..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index 2e797cfa..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index fe1ba0d0..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index 69542432..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..fb132147 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..7ce83a9b Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index c9a02361..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 003c13a1..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..5b683a0b Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..10875e5f Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 1b84e235..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 4f205743..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_DJF.png deleted file mode 100644 index fa2058db..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_JJA.png deleted file mode 100644 index fd9b92f5..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..f6d4f5b2 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..391a6ab5 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 49dfd6f2..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 52f049ad..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 4a92222d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index 74eaa9a6..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..ecf7c8bb Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..d744b114 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index 3b0e6988..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index d15cdf7d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index 3f845679..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index 3c017193..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..9a42266c Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..dcb69cc8 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..2dd837b6 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..9d84d910 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..825f5ebd Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/CE/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..2fe5373a Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 286b4992..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index a47fa72c..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..795b44c8 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..caaae03f Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 903d5b5f..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 93002d9d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..32d5c489 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..954419be Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index ea71c740..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index 5875995b..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index 2c01d502..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index 7a0ec44b..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..013a8d40 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..89b54a78 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index a947e392..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 221f6af6..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..d56a59a2 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..7d54fba9 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 880ace3e..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 2f9f361d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..c23d630b Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..031d480f Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 00f9b75d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index ff7cf785..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..cce8dd88 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..be876f92 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index a9703680..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 24242c0a..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 72bba140..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 7ac9c093..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..b283ed65 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..c2db3145 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 7880ffdc..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index fd051669..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index ebb62917..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index f9e7d4e6..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index 03cc3013..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 4defbdcf..00000000 Binary files a/static/cpm_analysis/past_performance/CE/pr/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..60479947 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..c0aa4ff4 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..62a14e2e Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/CE/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..cee9ed24 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index 6dd9324b..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 0e86ca3b..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/CE/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..ec32e0b6 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/CE/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..de789e6d Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_hclim_ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/tas/cpm_hclim_ec-earth_DJF.png deleted file mode 100644 index 86f49da3..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/cpm_hclim_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_hclim_ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/tas/cpm_hclim_ec-earth_JJA.png deleted file mode 100644 index 5b4ade84..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/cpm_hclim_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_ictp_DJF.png b/static/cpm_analysis/past_performance/CE/tas/cpm_ictp_DJF.png new file mode 100644 index 00000000..5f5bd71f Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_ictp_JJA.png b/static/cpm_analysis/past_performance/CE/tas/cpm_ictp_JJA.png new file mode 100644 index 00000000..7509931c Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/CE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 71766bd6..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/CE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index 2927b1c2..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_regcm4_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/CE/tas/cpm_regcm4_hadgem2-es_DJF.png deleted file mode 100644 index c304bfa9..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/cpm_regcm4_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_regcm4_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/CE/tas/cpm_regcm4_hadgem2-es_JJA.png deleted file mode 100644 index cc316d1b..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/cpm_regcm4_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_smhi_DJF.png b/static/cpm_analysis/past_performance/CE/tas/cpm_smhi_DJF.png new file mode 100644 index 00000000..24f5c205 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_smhi_JJA.png b/static/cpm_analysis/past_performance/CE/tas/cpm_smhi_JJA.png new file mode 100644 index 00000000..a1bb9e70 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/CE/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..99471f71 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/CE/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..2785a899 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..f9b91c70 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..a6eae3ab Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 1bc049c3..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index b4c1f8ac..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..c2016f7e Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..bfc843a1 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index ed7ec4a8..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index f4521065..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index 9d519acf..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index 413a22d8..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index 28e62e56..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index ad26b42b..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index 202c6276..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index 35b90562..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..f2f64ca3 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..06e13c23 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 9d26c478..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index c558002f..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..cf231816 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..f2cdd14c Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 8b512e68..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index f3b9b2d0..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 0e031624..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_JJA.png deleted file mode 100644 index 469a3636..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..e6742a79 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..1c0010c6 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 0023925a..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 92034b66..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 62713da0..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index 0b14210b..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..14709249 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..443cbcfd Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index c4aa96d3..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index 4f66b955..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index 0fa526d6..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index f51abe2c..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..25a08a1c Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..3379dc22 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..6e4f5eb2 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..e5c4e625 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..ac40b3d8 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/CE/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..b3554f83 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index d3c70b45..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index 83d7dbd0..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..48024698 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..cdc6f786 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 275f7f04..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 3a1734c2..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..ef5cecf8 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..c9e6860c Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index 6d63644d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index d56d8f04..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index 19d36aec..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index ae2fb16d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..1d9cb7a7 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..7beab757 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 09b8ad61..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 9b02f0fd..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..3d0b41aa Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..af0f2cea Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 93166e39..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 66c18117..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..fb6cbc9a Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..fa021e6a Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 41a5243a..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index f8d2e68d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..ddc0df19 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..b5daa8e9 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index fe2be42c..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 3b997104..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 394ae9b2..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 30682c1d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..71aeedc8 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..9ef4e7e5 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 269055f5..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 528001f4..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index 28ec383d..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index 0e562b42..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index f9f50595..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 026507f3..00000000 Binary files a/static/cpm_analysis/past_performance/CE/tas/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..55d30364 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..de9d1ff6 Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..fa69c14f Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/CE/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/CE/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..a982174b Binary files /dev/null and b/static/cpm_analysis/past_performance/CE/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index b4bfa9d7..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 77963796..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/N/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..2a6aa220 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/N/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..5c87c2bd Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_gerics_DJF.png b/static/cpm_analysis/past_performance/N/pr/cpm_gerics_DJF.png new file mode 100644 index 00000000..4a91a3fb Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_gerics_JJA.png b/static/cpm_analysis/past_performance/N/pr/cpm_gerics_JJA.png new file mode 100644 index 00000000..b62cd26e Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_gerics_mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/N/pr/cpm_gerics_mpi-esm-lr_DJF.png deleted file mode 100644 index 021be1cc..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/cpm_gerics_mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_gerics_mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/N/pr/cpm_gerics_mpi-esm-lr_JJA.png deleted file mode 100644 index 64185b66..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/cpm_gerics_mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_hclim_ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/pr/cpm_hclim_ec-earth_DJF.png deleted file mode 100644 index 73e772b1..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/cpm_hclim_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_hclim_ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/pr/cpm_hclim_ec-earth_JJA.png deleted file mode 100644 index 3175cdc6..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/cpm_hclim_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/N/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 0290d845..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/N/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index 8ed36500..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_smhi_DJF.png b/static/cpm_analysis/past_performance/N/pr/cpm_smhi_DJF.png new file mode 100644 index 00000000..fb89e8e3 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_smhi_JJA.png b/static/cpm_analysis/past_performance/N/pr/cpm_smhi_JJA.png new file mode 100644 index 00000000..6996f7f6 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/N/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..a88cc57a Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/N/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..331a0c46 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..0c5db087 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..a1f49c5d Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 733cfb01..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index b52987bb..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..5b9556ae Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..af27cb52 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index 9e0b1e4d..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index 9fe69c1c..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index 64bfe9ca..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index e3ec7075..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index 84218e09..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index 98232a5f..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index 99e1695c..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index cded8b1d..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..af3600a8 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..8317f7cc Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 7d05d850..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 43d3318e..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..5c05bb8f Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..49f2f58d Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index fd77efae..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 2428c7e2..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 544b730a..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_JJA.png deleted file mode 100644 index 98b9a9ce..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..e74ca2c4 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..da3e37ba Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index b6fcfdda..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 8d16e26c..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 88f2762f..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index e044a101..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..5e0cf291 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..17aa72a5 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index 7fe1c040..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index 12ddaf4e..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index d0177f64..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index faccc6b0..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..5aef972b Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..8970bafb Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..f77cbdfd Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..358acb72 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/N/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..8e92c8da Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/N/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..ba97f934 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index a15f194a..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index 18102f18..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..1b42245b Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..d6162f46 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index e88e5cef..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index c62b5726..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..4ef55156 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..f61aa663 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index a5e1a7ce..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index 69ce4674..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index ad45bbab..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index 22b3e3f4..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..d45294a0 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..a49fd357 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index e95c2794..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 7e0974aa..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..bf09aea6 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..b5a0c48f Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 84881f09..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index a6c6b3b2..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..f487d7dc Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..aad9b572 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index f6c25ae6..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 96903945..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..722fc2ae Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..97e6d693 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index a0621116..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 463c6a7f..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 8d26fb8e..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 9418845f..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..88695077 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..40f70e08 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 1a6b2c1d..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 092de559..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index 3b7abb61..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index 61a633d6..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index c7ef278a..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 9921f1d7..00000000 Binary files a/static/cpm_analysis/past_performance/N/pr/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..054a559f Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..ad66c963 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/N/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..2555b8f5 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/N/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..1f326b59 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index 1c9e9558..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 415584ba..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/N/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..b77ce8b2 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/N/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..85a486c0 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_gerics_DJF.png b/static/cpm_analysis/past_performance/N/tas/cpm_gerics_DJF.png new file mode 100644 index 00000000..1c7f68b5 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/cpm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_gerics_JJA.png b/static/cpm_analysis/past_performance/N/tas/cpm_gerics_JJA.png new file mode 100644 index 00000000..c05c9b82 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/cpm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_gerics_mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/N/tas/cpm_gerics_mpi-esm-lr_DJF.png deleted file mode 100644 index def23e8b..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/cpm_gerics_mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_gerics_mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/N/tas/cpm_gerics_mpi-esm-lr_JJA.png deleted file mode 100644 index cdf1fbf3..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/cpm_gerics_mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_hclim_ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/tas/cpm_hclim_ec-earth_DJF.png deleted file mode 100644 index 25a9f393..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/cpm_hclim_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_hclim_ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/tas/cpm_hclim_ec-earth_JJA.png deleted file mode 100644 index d3d48db2..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/cpm_hclim_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/N/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 15cddfd7..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/N/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index ee8424c8..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_smhi_DJF.png b/static/cpm_analysis/past_performance/N/tas/cpm_smhi_DJF.png new file mode 100644 index 00000000..e05e2348 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_smhi_JJA.png b/static/cpm_analysis/past_performance/N/tas/cpm_smhi_JJA.png new file mode 100644 index 00000000..fdb0ef5a Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/N/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..5b026c16 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/N/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..5c6fe6d9 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..7c14924e Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..e11583b9 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index b4fb0321..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 890ed2a0..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..6653d882 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..9683017d Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index 1ae6833a..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index ff37ac10..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index 3bd5c77c..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index 400b9431..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index e8f6679d..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index d18b7ffd..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index be0320c6..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index 4d99315f..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..4d32b16c Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..973481d8 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index bf911907..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 280ba221..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..1d65f379 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..78e1f06d Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 67cdb356..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 2df8dc52..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 7af87516..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_JJA.png deleted file mode 100644 index 2af050a5..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..8123a879 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..a1948319 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 1942a5d5..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index ec1fd22a..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 8b1f6ed5..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index dead5df1..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..f6a024df Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..3e0f5aca Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index fe9f83ae..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index 079abbd3..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index f9227805..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index 83a36f89..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..7a1f6b72 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..63994844 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..e3925e17 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..ef4f4f69 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/N/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..d68dbe09 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/N/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..1373662a Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 01e7f543..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index d2d71a98..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..90b479ab Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..4ecd5215 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index aa524b20..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 767ccbe9..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..8604de3c Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..04bd584f Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index 40ad6d1f..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index ff8981b0..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index b36fd34b..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index 23628eea..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..6b8bf0af Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..5c87a5ae Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index e3610a2b..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 20e21d93..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..a70ce3b1 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..cae671ff Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index e215b1b5..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 93917aa0..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..9225bf11 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..fa784429 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index be204eda..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 971a5133..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..593a7b41 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..15d2813b Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index 358f6542..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 8bee9954..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 6ac3a7b1..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index b4db51aa..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..14a29962 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..add96473 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 82fc8563..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 2bbe89eb..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index fb94c1aa..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index 2e87a9a8..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index 659d8379..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index e87319a8..00000000 Binary files a/static/cpm_analysis/past_performance/N/tas/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..d96de827 Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..1e8a825b Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/N/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..6482ed2e Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/N/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/N/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..e289aaae Binary files /dev/null and b/static/cpm_analysis/past_performance/N/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm-arome_cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm-arome_cnrm-cm5_DJF.png deleted file mode 100644 index d1ee200b..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm-arome_cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm-arome_cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm-arome_cnrm-cm5_JJA.png deleted file mode 100644 index 44430021..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm-arome_cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm_DJF.png b/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm_DJF.png new file mode 100644 index 00000000..c673fe10 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm_JJA.png b/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm_JJA.png new file mode 100644 index 00000000..3adc3e2a Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index f9e7c4ad..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 781a7428..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/NW/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..93a3d0bd Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/NW/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..c44abac6 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_hclim_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/pr/cpm_hclim_ecmwf-erai_DJF.png deleted file mode 100644 index d7edae6c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/cpm_hclim_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_hclim_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/pr/cpm_hclim_ecmwf-erai_JJA.png deleted file mode 100644 index 0896b1dd..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/cpm_hclim_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_knmi_DJF.png b/static/cpm_analysis/past_performance/NW/pr/cpm_knmi_DJF.png new file mode 100644 index 00000000..67be8b1f Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_knmi_JJA.png b/static/cpm_analysis/past_performance/NW/pr/cpm_knmi_JJA.png new file mode 100644 index 00000000..fe3a3812 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/NW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 62539af2..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/NW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index a17f3e5c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_smhi_DJF.png b/static/cpm_analysis/past_performance/NW/pr/cpm_smhi_DJF.png new file mode 100644 index 00000000..4ed81118 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_smhi_JJA.png b/static/cpm_analysis/past_performance/NW/pr/cpm_smhi_JJA.png new file mode 100644 index 00000000..d9dec621 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/NW/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..607acaed Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/NW/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..cfb031e8 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..aedc597a Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..a79949d5 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 17e4cfd1..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index ea071658..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..5249bf7a Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..a5e9a32c Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index 4b00d4cb..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index eaefdd17..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index b1e2bece..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index e7bf1c8e..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index 36962018..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index 32b79087..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index 37fdeeaf..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index b254a243..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..30fe7c37 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..8c6a313c Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 9190eb4c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 3064037f..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..84b24946 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..5b06fe11 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index dd94d20f..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index fef1132c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 33dcb712..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_JJA.png deleted file mode 100644 index 5c08745a..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..0f38931e Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..74f0e983 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index d4eb63bd..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index bf470813..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index ccd1b32b..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index e107405c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..cd5e3a0a Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..ba1e14ba Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index 177a556c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index b6bbd7a2..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index 9e242a5b..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index 204d024f..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..8e530d19 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..90a3bc66 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..4cf13c92 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..b1450ca3 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..32f61458 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/NW/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..aaa44f12 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 9c861c2f..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index ba5c5eaf..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..8bc7872e Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..80eedec3 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index fd835d4c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 989bbdd4..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..112936a3 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..b3d98268 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index e4b96b75..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index 37a58630..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index d5f46e0a..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index d98430e9..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..7fcb897e Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..7aa7fbd8 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index c722f8bc..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 4c2654e7..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..637292e2 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..86e65b82 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 0578133b..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 8cb03b3d..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..d53d871a Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..becb7692 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index ad5bedf7..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index a9d5d60b..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..8c99a8cf Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..4416e15c Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index c533705c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 534c2a2c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index d222d4cb..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 30884835..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..ff92e6e3 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..1e62c7ac Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 97ec16f2..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 87aa264b..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index b51295a1..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index 09a00b02..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index 747843c6..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 1c733ccf..00000000 Binary files a/static/cpm_analysis/past_performance/NW/pr/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..f761d07b Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..ac7bca89 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..d30f329f Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/NW/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..97a2041e Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm-arome_cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm-arome_cnrm-cm5_DJF.png deleted file mode 100644 index 233b163e..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm-arome_cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm-arome_cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm-arome_cnrm-cm5_JJA.png deleted file mode 100644 index 57b5ec23..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm-arome_cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm_DJF.png b/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm_DJF.png new file mode 100644 index 00000000..25d745db Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm_JJA.png b/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm_JJA.png new file mode 100644 index 00000000..932aae2e Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index 8a0a85b8..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index dac95e7f..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/NW/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..4b895943 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/NW/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..1623b9dd Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_hclim_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/tas/cpm_hclim_ecmwf-erai_DJF.png deleted file mode 100644 index a12da89f..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/cpm_hclim_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_hclim_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/tas/cpm_hclim_ecmwf-erai_JJA.png deleted file mode 100644 index 55442dfc..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/cpm_hclim_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_knmi_DJF.png b/static/cpm_analysis/past_performance/NW/tas/cpm_knmi_DJF.png new file mode 100644 index 00000000..67e49ab1 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_knmi_JJA.png b/static/cpm_analysis/past_performance/NW/tas/cpm_knmi_JJA.png new file mode 100644 index 00000000..24f834a9 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/NW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index ef80fae0..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/NW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index 3d0fee52..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_smhi_DJF.png b/static/cpm_analysis/past_performance/NW/tas/cpm_smhi_DJF.png new file mode 100644 index 00000000..a7734828 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_smhi_JJA.png b/static/cpm_analysis/past_performance/NW/tas/cpm_smhi_JJA.png new file mode 100644 index 00000000..fe13918d Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/NW/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..5bdc013a Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/NW/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..f95411bb Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..b1af84cf Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..86d78337 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 33e3d061..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 3e303891..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..6c9857e3 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..2a81d63e Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index bcfa81b8..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index 8e43d5a2..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index 20766942..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index 305eafeb..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index 8b2e92f9..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index 7c41f78d..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index ec88afe7..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index 0bc17a0f..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..6d3b99bc Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..0c080984 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index beabafe5..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index c9683ac2..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..1a9a7684 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..e74b69c5 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index ecce640f..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 14522566..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 608bb88b..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_JJA.png deleted file mode 100644 index 47d1cd56..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..87121840 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..e6d18180 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 253854c5..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 3a343722..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 03e9e106..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index 0bea0276..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..acd10309 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..ddf63c3e Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index a6de8cb6..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index 63a097bf..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index 02608787..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index 5befb27c..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..cad49a90 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..4f9a90ae Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..326b8466 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..a9cc86c5 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..44104aca Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/NW/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..4b7e82de Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 7f646989..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index 2b00d06f..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..31c39a62 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..a5591044 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 696b2de2..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index f0c16bcb..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..09df87d5 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..3c1b81ae Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index 26c30871..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index c4ce0cfb..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index 6bfba749..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index df758195..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..b9e09eef Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..fd7f0492 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 124ea390..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index cbf81098..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..381a9030 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..040ef05c Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index ec02e566..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index d776d654..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..f9fed1a1 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..9f1ffd18 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 554a7453..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index fde3091d..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..b1121e09 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..4e81b63d Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index 310f456e..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 0d6dd1da..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 643b08ef..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index d1a427cd..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..b7c15ebb Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..065602a1 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 93158eb9..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index b7c92169..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index 3a6e00bb..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index 69e282c4..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index 15898e1e..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 7d11d292..00000000 Binary files a/static/cpm_analysis/past_performance/NW/tas/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..a3537df2 Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..bebad04c Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..b003ebee Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/NW/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/NW/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..5212474c Binary files /dev/null and b/static/cpm_analysis/past_performance/NW/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index 6becafc5..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index b7f7a97d..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/SE/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..540e05cb Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/SE/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..aba7f056 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_ictp_DJF.png b/static/cpm_analysis/past_performance/SE/pr/cpm_ictp_DJF.png new file mode 100644 index 00000000..403347a2 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_ictp_JJA.png b/static/cpm_analysis/past_performance/SE/pr/cpm_ictp_JJA.png new file mode 100644 index 00000000..b0b532d7 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 27ce9aea..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index 44871491..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_regcm4_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SE/pr/cpm_regcm4_hadgem2-es_DJF.png deleted file mode 100644 index 578adb5e..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/cpm_regcm4_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_regcm4_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SE/pr/cpm_regcm4_hadgem2-es_JJA.png deleted file mode 100644 index 65ae732e..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/cpm_regcm4_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SE/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..33d22338 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SE/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..935f5e6b Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..d7862267 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..da5e0f11 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 58fb55de..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index acadf2c8..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..12f95446 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..b447b73b Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index b53d76d7..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index 5bdfcaa7..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index 4a3ee01d..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index 0da58459..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index 3fc8caae..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index e6d0143d..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index bad7687f..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index 9c457b2d..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..0b49f5ed Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..faa76457 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index cb677e41..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 5a892059..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..96d7e38c Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..404c343c Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 33871efe..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 26a0851e..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 0c489771..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_JJA.png deleted file mode 100644 index 04840f09..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..634966fd Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..698d6c7b Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 4664b1e5..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 5b767883..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 362a0493..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index d6065782..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..dc74a2fa Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..ac4f94d8 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index 032eab8b..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index 05d28d94..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index f9d6f2d7..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index ddf405ae..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..961c9e6f Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..c08bdbbb Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..1d0fc824 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..b5f837a9 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..783bf159 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SE/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..8b135449 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 8b1d2904..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index af138fa1..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..314cbcb0 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..8c8d6857 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 400d0538..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 6ba93c0b..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..4364e168 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..745e146b Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index e4f2e0a1..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index 73266cdb..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index b0586ebc..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index 11605dbd..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..a7d48958 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..53fdd046 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index f4a313d2..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 76e46c31..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..a1297ef3 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..939d7938 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 9ebf562a..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 3b64d115..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..3a839790 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..a5214369 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 75004c2a..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index cb70191d..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..cf12024f Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..706e80f4 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index 0394e8de..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 5daa0003..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 15967de2..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 66fd9ab9..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..2fc5e4cb Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..331586fd Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 89b1d16f..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 897db210..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index ebec76b6..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index 61a77a60..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index a6ecef65..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index d0c2dd97..00000000 Binary files a/static/cpm_analysis/past_performance/SE/pr/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..b45c3ffc Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..b3da329c Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..3d730cd1 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SE/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..ebee6bce Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index f7ca2d2e..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 3864b387..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/SE/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..32003c9d Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/SE/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..8ddb1bc3 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_ictp_DJF.png b/static/cpm_analysis/past_performance/SE/tas/cpm_ictp_DJF.png new file mode 100644 index 00000000..fd02d8be Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/cpm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_ictp_JJA.png b/static/cpm_analysis/past_performance/SE/tas/cpm_ictp_JJA.png new file mode 100644 index 00000000..d0645649 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/cpm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 3de940e8..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index 7eeb6778..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_regcm4_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SE/tas/cpm_regcm4_hadgem2-es_DJF.png deleted file mode 100644 index b9c0b729..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/cpm_regcm4_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_regcm4_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SE/tas/cpm_regcm4_hadgem2-es_JJA.png deleted file mode 100644 index 2971b4d9..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/cpm_regcm4_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SE/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..7d3eed28 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SE/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..5e22d4f0 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..868dbf5f Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..5608b7a9 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 47853ee0..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index ac215cd6..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..803773b3 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..7a1252d3 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index 6b1774ec..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index 4cb9aee8..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index 0ce30e20..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index f8250fe5..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index b7a90dcb..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index 414d7f26..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index 769a2fc0..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index f7d1dea9..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..7cb53d6c Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..59cfd8e7 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index b59f1620..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 3486f366..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..769eadc4 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..1a3b1e99 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 37c53a7c..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 9a24ad7a..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 8185b1df..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_JJA.png deleted file mode 100644 index e2aa6aed..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..6ea4c3ce Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..e96f2b42 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 69892a0a..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 8ac454f4..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 75251529..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index 857506c0..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..c535aa73 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..7542fea9 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index e66f4bd2..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index c579765a..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index 0304d197..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index 135c2348..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..edc33dcc Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..d90bea2f Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..313bc484 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..700682a4 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..8f30de46 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SE/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..12a5d3e0 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 26e490e3..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index 65067eb5..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..3e547ee0 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..6067b41a Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 66163a8f..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 61fc28dc..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..33534767 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..ce95eda8 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index f4823724..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index 9fa85533..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index 9520d2aa..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index 97574369..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..3df98db2 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..7a40c2ed Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 35f3a978..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index bc2f3e52..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..23ac7c7b Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..ade98eaa Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 0d04f5fa..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 3db1605f..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..bdb6fa3c Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..aedd5166 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index cd6b1ee2..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 3ab8cd14..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..0bd13a14 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..d5dd1835 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index 8e56dc67..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index 417fcab8..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 4ad3a499..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 1e3b3ea4..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..438f3798 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..940379ec Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index ef9543a7..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 6cb597f5..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index 3af4570d..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index eac0adba..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index 4126d47d..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 6cc93867..00000000 Binary files a/static/cpm_analysis/past_performance/SE/tas/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..73697446 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..0d12c166 Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..6a6e571d Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SE/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SE/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..a978e6aa Binary files /dev/null and b/static/cpm_analysis/past_performance/SE/tas/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_cclm_ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/pr/cpm_cclm_ec-earth_DJF.png deleted file mode 100644 index b2c6906b..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/cpm_cclm_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_cclm_ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/pr/cpm_cclm_ec-earth_JJA.png deleted file mode 100644 index 1858ed75..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/cpm_cclm_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SW/pr/cpm_cmcc_DJF.png new file mode 100644 index 00000000..1bfa23f1 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/cpm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SW/pr/cpm_cmcc_JJA.png new file mode 100644 index 00000000..9af6f4e2 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/cpm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index 367e2545..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 1d29fa63..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ethz_DJF.png new file mode 100644 index 00000000..2a9cc683 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ethz_JJA.png new file mode 100644 index 00000000..090db409 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl-wrf_ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl-wrf_ipsl-cm6_DJF.png deleted file mode 100644 index 58c4fd0d..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl-wrf_ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl-wrf_ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl-wrf_ipsl-cm6_JJA.png deleted file mode 100644 index c1f22d2d..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl-wrf_ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl_DJF.png new file mode 100644 index 00000000..71990819 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl_JJA.png new file mode 100644 index 00000000..5750cfe2 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/cpm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 2a1d8139..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index 12bfe1e1..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ukmo_DJF.png new file mode 100644 index 00000000..dc0aa9f4 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SW/pr/cpm_ukmo_JJA.png new file mode 100644 index 00000000..222646aa Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_cmcc_DJF.png new file mode 100644 index 00000000..3a4b1b47 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_cmcc_JJA.png new file mode 100644 index 00000000..a92b833c Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index d5f1eb9f..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index ff6383e9..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm_DJF.png new file mode 100644 index 00000000..a6ecc066 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm_JJA.png new file mode 100644 index 00000000..f35a7eb1 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index 519a71e5..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index 5286929f..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index 2305605c..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index 52e1ce63..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index d6402d2a..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index 996ce5e8..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index d3546201..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index e5d3a86b..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ethz_DJF.png new file mode 100644 index 00000000..aaad614f Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ethz_JJA.png new file mode 100644 index 00000000..901115d8 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 3b06cecf..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 9b7b4c5b..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_gerics_DJF.png new file mode 100644 index 00000000..ab0ec02e Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_gerics_JJA.png new file mode 100644 index 00000000..c63a2643 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 4c888c71..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 7e2427de..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 33573811..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_JJA.png deleted file mode 100644 index f3bd4d96..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ictp_DJF.png new file mode 100644 index 00000000..87d7c8cb Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ictp_JJA.png new file mode 100644 index 00000000..826921a6 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index fba6726c..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 0473950e..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 9776374a..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index fe22476c..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl_DJF.png new file mode 100644 index 00000000..d38c5b53 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl_JJA.png new file mode 100644 index 00000000..d83c94a5 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index 1e6f417d..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index c6b8e52d..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index 7f5da75d..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index 4dd45381..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_knmi_DJF.png new file mode 100644 index 00000000..4cd0c064 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_knmi_JJA.png new file mode 100644 index 00000000..515052f4 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_smhi_DJF.png new file mode 100644 index 00000000..349f7239 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_smhi_JJA.png new file mode 100644 index 00000000..e058e4d2 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ukmo_DJF.png new file mode 100644 index 00000000..3f6297fb Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SW/pr/gcm_ukmo_JJA.png new file mode 100644 index 00000000..ca02113a Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index 7a763df1..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index ac261325..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_cmcc_DJF.png new file mode 100644 index 00000000..00f2f8a0 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_cmcc_JJA.png new file mode 100644 index 00000000..81b6bb07 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 9f410928..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 35842cb0..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm_DJF.png new file mode 100644 index 00000000..d7295235 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm_JJA.png new file mode 100644 index 00000000..72415244 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index 7c9b38c0..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index db7e7e45..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index 94124e1c..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index df39b9e4..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ethz_DJF.png new file mode 100644 index 00000000..121eb8d4 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ethz_JJA.png new file mode 100644 index 00000000..777f3c4b Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 5cf57408..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index 9da7b7ef..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_gerics_DJF.png new file mode 100644 index 00000000..05056eb7 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_gerics_JJA.png new file mode 100644 index 00000000..9625d2a6 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 83bb472a..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index fa077c23..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ictp_DJF.png new file mode 100644 index 00000000..d882b7df Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ictp_JJA.png new file mode 100644 index 00000000..f0b4056c Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 2ced8966..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index b05f8a66..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl_DJF.png new file mode 100644 index 00000000..557949b4 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl_JJA.png new file mode 100644 index 00000000..78688fdc Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index ce0f7842..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index cd6d30e8..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index 347664eb..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index af5b6469..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_knmi_DJF.png new file mode 100644 index 00000000..8172da09 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_knmi_JJA.png new file mode 100644 index 00000000..fb7d20b1 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index eeedf380..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 64c39d11..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index fb5f99df..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index ae0480ee..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index 79eb6a6c..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 40fc7217..00000000 Binary files a/static/cpm_analysis/past_performance/SW/pr/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_smhi_DJF.png new file mode 100644 index 00000000..f1e7702b Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_smhi_JJA.png new file mode 100644 index 00000000..780b6c39 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ukmo_DJF.png new file mode 100644 index 00000000..e3455de6 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/pr/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SW/pr/rcm_ukmo_JJA.png new file mode 100644 index 00000000..9e16c3e8 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/pr/rcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_cclm_ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/tas/cpm_cclm_ec-earth_DJF.png deleted file mode 100644 index ea9b7a12..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/cpm_cclm_ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_cclm_ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/tas/cpm_cclm_ec-earth_JJA.png deleted file mode 100644 index 4bf93de6..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/cpm_cclm_ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SW/tas/cpm_cmcc_DJF.png new file mode 100644 index 00000000..1f40ed87 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/cpm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SW/tas/cpm_cmcc_JJA.png new file mode 100644 index 00000000..1b471385 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/cpm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png deleted file mode 100644 index fcad9e63..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/cpm_ethz-cclm_ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png deleted file mode 100644 index 59d66a43..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/cpm_ethz-cclm_ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ethz_DJF.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ethz_DJF.png new file mode 100644 index 00000000..50b0550b Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/cpm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ethz_JJA.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ethz_JJA.png new file mode 100644 index 00000000..4a7a81fe Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/cpm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl-wrf_ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl-wrf_ipsl-cm6_DJF.png deleted file mode 100644 index 73d41186..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl-wrf_ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl-wrf_ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl-wrf_ipsl-cm6_JJA.png deleted file mode 100644 index 3bf78fae..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl-wrf_ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl_DJF.png new file mode 100644 index 00000000..3f8fcad5 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl_JJA.png new file mode 100644 index 00000000..cc71b4c6 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/cpm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png deleted file mode 100644 index 4cc0df14..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png deleted file mode 100644 index c06e3768..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/cpm_mohc-um10.1_hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ukmo_DJF.png new file mode 100644 index 00000000..4397c766 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/cpm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/cpm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SW/tas/cpm_ukmo_JJA.png new file mode 100644 index 00000000..39436636 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/cpm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_cmcc_DJF.png new file mode 100644 index 00000000..11e98c01 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_cmcc_JJA.png new file mode 100644 index 00000000..9050d24c Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 162194a1..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 0168763b..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm_DJF.png new file mode 100644 index 00000000..66ac4802 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm_JJA.png new file mode 100644 index 00000000..0626e93f Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-cclm_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-cclm_DJF.png deleted file mode 100644 index b9d8b68a..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-cclm_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-cclm_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-cclm_JJA.png deleted file mode 100644 index b1e83385..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-cclm_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-smhi_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-smhi_DJF.png deleted file mode 100644 index c8a6b0ba..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-smhi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-smhi_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-smhi_JJA.png deleted file mode 100644 index ed2adc00..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ec-earth-smhi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-ecmwf-erai_DJF.png deleted file mode 100644 index 77f049b0..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-ecmwf-erai_JJA.png deleted file mode 100644 index ba5cdd94..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-mpi-esm-lr_DJF.png deleted file mode 100644 index 453b195b..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-mpi-esm-lr_JJA.png deleted file mode 100644 index 285040fe..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ethz_DJF.png new file mode 100644 index 00000000..c47b3ef5 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ethz_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ethz_JJA.png new file mode 100644 index 00000000..43b1d3b6 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index 22d0943a..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index b5dec333..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_gerics_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_gerics_DJF.png new file mode 100644 index 00000000..fd613b3e Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_gerics_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_gerics_JJA.png new file mode 100644 index 00000000..98c5f4fc Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 6be10c1c..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 83cf7cf7..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_glob-25-mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_DJF.png deleted file mode 100644 index 5c081e39..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_JJA.png deleted file mode 100644 index d1e1a3b1..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ictp_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ictp_DJF.png new file mode 100644 index 00000000..b43dfc5a Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ictp_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ictp_JJA.png new file mode 100644 index 00000000..a28c43b3 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm5a-mr_DJF.png deleted file mode 100644 index 60f0afe0..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 131eb8ee..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm6a-lr_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm6a-lr_DJF.png deleted file mode 100644 index 1797ed7f..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm6a-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm6a-lr_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm6a-lr_JJA.png deleted file mode 100644 index 8713e4c0..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl-cm6a-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl_DJF.png new file mode 100644 index 00000000..85ce3478 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl_JJA.png new file mode 100644 index 00000000..0666a98d Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ec-earth_DJF.png deleted file mode 100644 index 6b549d77..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ec-earth_JJA.png deleted file mode 100644 index 6acd953a..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ecmwf-erai_DJF.png deleted file mode 100644 index c75ccc65..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ecmwf-erai_JJA.png deleted file mode 100644 index 5dc086d0..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_knmi_DJF.png new file mode 100644 index 00000000..8e22ca45 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_knmi_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_knmi_JJA.png new file mode 100644 index 00000000..e8721291 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_smhi_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_smhi_DJF.png new file mode 100644 index 00000000..40ff5ba3 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_smhi_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_smhi_JJA.png new file mode 100644 index 00000000..19790d25 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ukmo_DJF.png new file mode 100644 index 00000000..29d0baa7 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/gcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SW/tas/gcm_ukmo_JJA.png new file mode 100644 index 00000000..3b029a6a Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/gcm_ukmo_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_cclm-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_cclm-ec-earth_DJF.png deleted file mode 100644 index ede72dab..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_cclm-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_cclm-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_cclm-ec-earth_JJA.png deleted file mode 100644 index 5f4305f4..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_cclm-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_cmcc_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_cmcc_DJF.png new file mode 100644 index 00000000..47aaa83d Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_cmcc_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_cmcc_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_cmcc_JJA.png new file mode 100644 index 00000000..837f5888 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_cmcc_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm-cnrm-cm5_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm-cnrm-cm5_DJF.png deleted file mode 100644 index 14523d69..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm-cnrm-cm5_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm-cnrm-cm5_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm-cnrm-cm5_JJA.png deleted file mode 100644 index 7d405cbb..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm-cnrm-cm5_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm_DJF.png new file mode 100644 index 00000000..55e646ef Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm_JJA.png new file mode 100644 index 00000000..6813d3d1 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_cnrm_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png deleted file mode 100644 index 137fc10c..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png deleted file mode 100644 index e5f6ede2..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-mpi_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-mpi_DJF.png deleted file mode 100644 index 2a73319f..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-mpi_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-mpi_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-mpi_JJA.png deleted file mode 100644 index 0e766869..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz-cclm-mpi_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ethz_DJF.png new file mode 100644 index 00000000..b829422a Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_ethz_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ethz_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ethz_JJA.png new file mode 100644 index 00000000..474cd557 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_ethz_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_gerics-mpi-esm-lr_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_gerics-mpi-esm-lr_DJF.png deleted file mode 100644 index f1aa1541..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_gerics-mpi-esm-lr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_gerics-mpi-esm-lr_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_gerics-mpi-esm-lr_JJA.png deleted file mode 100644 index a680356e..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_gerics-mpi-esm-lr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_gerics_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_gerics_DJF.png new file mode 100644 index 00000000..7060fab1 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_gerics_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_gerics_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_gerics_JJA.png new file mode 100644 index 00000000..17fa0ae7 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_gerics_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_hclim-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_hclim-ec-earth_DJF.png deleted file mode 100644 index 40bdb6db..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_hclim-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_hclim-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_hclim-ec-earth_JJA.png deleted file mode 100644 index 37517b25..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_hclim-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ictp_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ictp_DJF.png new file mode 100644 index 00000000..a521e937 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_ictp_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ictp_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ictp_JJA.png new file mode 100644 index 00000000..6bb17555 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_ictp_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png deleted file mode 100644 index fd9cf9c2..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png deleted file mode 100644 index 6554edeb..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl-wrf-ipsl-cm5a-mr_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl_DJF.png new file mode 100644 index 00000000..78062ee5 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl_JJA.png new file mode 100644 index 00000000..254aaabf Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_ipsl_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ec-earth_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ec-earth_DJF.png deleted file mode 100644 index a9e74b3b..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ec-earth_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ec-earth_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ec-earth_JJA.png deleted file mode 100644 index fc17690e..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ec-earth_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png deleted file mode 100644 index a12d3584..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ecmwf-erai_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png deleted file mode 100644 index 5819c003..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi-racmo-ecmwf-erai_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_knmi_DJF.png new file mode 100644 index 00000000..9d96f5cd Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_knmi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_knmi_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_knmi_JJA.png new file mode 100644 index 00000000..a7d9cd0a Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_knmi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_mohc-hadgem3-gc3.1_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_mohc-hadgem3-gc3.1_DJF.png deleted file mode 100644 index 473814af..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_mohc-hadgem3-gc3.1_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_mohc-hadgem3-gc3.1_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_mohc-hadgem3-gc3.1_JJA.png deleted file mode 100644 index 13c5a624..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_mohc-hadgem3-gc3.1_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_regcm4-hadgem2-es_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_regcm4-hadgem2-es_DJF.png deleted file mode 100644 index ad3015b5..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_regcm4-hadgem2-es_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_regcm4-hadgem2-es_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_regcm4-hadgem2-es_JJA.png deleted file mode 100644 index a6500f90..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_regcm4-hadgem2-es_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_regipslv1-ipsl-cm6_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_regipslv1-ipsl-cm6_DJF.png deleted file mode 100644 index 465155fb..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_regipslv1-ipsl-cm6_DJF.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_regipslv1-ipsl-cm6_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_regipslv1-ipsl-cm6_JJA.png deleted file mode 100644 index 8b2ef594..00000000 Binary files a/static/cpm_analysis/past_performance/SW/tas/rcm_regipslv1-ipsl-cm6_JJA.png and /dev/null differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_smhi_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_smhi_DJF.png new file mode 100644 index 00000000..1dcc1234 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_smhi_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_smhi_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_smhi_JJA.png new file mode 100644 index 00000000..81902236 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_smhi_JJA.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ukmo_DJF.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ukmo_DJF.png new file mode 100644 index 00000000..a634584e Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_ukmo_DJF.png differ diff --git a/static/cpm_analysis/past_performance/SW/tas/rcm_ukmo_JJA.png b/static/cpm_analysis/past_performance/SW/tas/rcm_ukmo_JJA.png new file mode 100644 index 00000000..bf4a1e49 Binary files /dev/null and b/static/cpm_analysis/past_performance/SW/tas/rcm_ukmo_JJA.png differ