Skip to content

Commit

Permalink
remove skipna
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Mar 14, 2024
1 parent bc8d152 commit 070a8f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/wp4/extreme_temperature_indices_future.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -484,10 +484,10 @@
"# Mask\n",
"lsm = download.download_and_transform(*request_lsm)[\"lsm\"].squeeze(drop=True)\n",
"ds_interpolated = ds_interpolated.where(\n",
" diagnostics.regrid(lsm, ds_interpolated, method=\"bilinear\", skipna=True)\n",
" diagnostics.regrid(lsm, ds_interpolated, method=\"bilinear\")\n",
")\n",
"model_datasets = {\n",
" model: ds.where(diagnostics.regrid(lsm, ds, method=\"bilinear\", skipna=True))\n",
" model: ds.where(diagnostics.regrid(lsm, ds, method=\"bilinear\"))\n",
" for model, ds in model_datasets.items()\n",
"}\n",
"\n",
Expand Down

0 comments on commit 070a8f4

Please sign in to comment.