diff --git a/notebooks/wp5/satellite_esacci_gmpe_timeseries.ipynb b/notebooks/wp5/satellite_esacci_gmpe_timeseries.ipynb index be1c4e9..08ac165 100644 --- a/notebooks/wp5/satellite_esacci_gmpe_timeseries.ipynb +++ b/notebooks/wp5/satellite_esacci_gmpe_timeseries.ipynb @@ -54,7 +54,7 @@ "# Time\n", "# Note: Time period from December year_start-1 to November year_stop\n", "year_start = 1982\n", - "year_stop = 2011\n", + "year_stop = 2016\n", "\n", "# Regions\n", "regions = {\n", diff --git a/notebooks/wp5/satellite_esacci_gmpe_variability.ipynb b/notebooks/wp5/satellite_esacci_gmpe_variability.ipynb index af11408..1cdcc9f 100644 --- a/notebooks/wp5/satellite_esacci_gmpe_variability.ipynb +++ b/notebooks/wp5/satellite_esacci_gmpe_variability.ipynb @@ -274,7 +274,7 @@ " **kwargs,\n", " requests=annual_requests,\n", " transform_func=compute_time_reductions,\n", - " transform_func_kwargs={\"func\": func, \"weights\": False},\n", + " transform_func_kwargs={\"func\": func, \"weights\": False, \"skipna\": False},\n", " )\n", " tmp_ds_list.append(rechunk(ds).expand_dims(reduction=[reduction]))\n", " annual_ds_list.append(\n", @@ -308,7 +308,7 @@ " **kwargs,\n", " requests=season_requests,\n", " transform_func=compute_time_reductions,\n", - " transform_func_kwargs={\"func\": func, \"weights\": False},\n", + " transform_func_kwargs={\"func\": func, \"weights\": False, \"skipna\": False},\n", " )\n", " tmp_ds_list.append(rechunk(ds).expand_dims(reduction=[reduction]))\n", " seasonal_ds_list.append(xr.concat(tmp_ds_list, \"reduction\"))\n",