Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Apr 3, 2024
1 parent ecf009e commit 7aabd74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notebooks/wp4/cmip6_sea_ice_thickness_bias_maps.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"metadata": {},
"outputs": [],
"source": [
"import calendar\n",
"import warnings\n",
"\n",
"import calendar\n",
"import cartopy.crs as ccrs\n",
"import matplotlib.pyplot as plt\n",
"import pandas as pd\n",
Expand Down Expand Up @@ -240,9 +240,9 @@
"da = da.where(da.sel(product=\"satellite\").notnull())\n",
"for dim in ds.dims:\n",
" da = da.dropna(dim, how=\"all\")\n",
"for month, da_month in da.groupby(\"month\"):\n",
"for month in da[\"month\"].values:\n",
" facet = plot.projected_map(\n",
" da_month,\n",
" da.sel(month=month),\n",
" col=\"product\",\n",
" row=\"satellite\",\n",
" vmin=0,\n",
Expand Down

0 comments on commit 7aabd74

Please sign in to comment.