Skip to content

Commit

Permalink
Merge pull request #1057 from PCMDI/lee1043-patch-1
Browse files Browse the repository at this point in the history
to mute the warning message
  • Loading branch information
lee1043 committed Feb 12, 2024
2 parents 419e6a4 + ebe6bdc commit 09140cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/jupyter/Demo/Demo_9b_seaIce_data_explore.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@
"\n",
"p = ds['siconc'].sel(time = ds.time.dt.year.isin(years_to_show)).plot(x='lon', y='lat', \n",
" transform=ccrs.PlateCarree(),\n",
" aspect=ds.dims[\"lon\"] / ds.dims[\"lat\"], # for a sensible figsize\n",
" aspect=ds.sizes[\"lon\"] / ds.sizes[\"lat\"], # for a sensible figsize\n",
" subplot_kws={\"projection\": proj_plot},\n",
" col='time', col_wrap=6, robust=True, cmap='Blues_r', zorder=3)\n",
"\n",
Expand Down Expand Up @@ -1783,7 +1783,7 @@
"\n",
"p = ds['siconc'].sel(time = ds.time.dt.year.isin(years_to_show)).plot(x='lon', y='lat', \n",
" transform=ccrs.PlateCarree(),\n",
" aspect=ds.dims[\"lon\"] / ds.dims[\"lat\"], # for a sensible figsize\n",
" aspect=ds.sizes[\"lon\"] / ds.sizes[\"lat\"], # for a sensible figsize\n",
" subplot_kws={\"projection\": proj_plot},\n",
" col='time', col_wrap=6, robust=True, cmap='Blues_r', zorder=3)\n",
"\n",
Expand Down

0 comments on commit 09140cf

Please sign in to comment.