Skip to content

Commit

Permalink
Deleted plot styles all together
Browse files Browse the repository at this point in the history
  • Loading branch information
dalmijn committed Oct 4, 2023
1 parent 1685558 commit c6635be
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions examples/plot_wflow_forcing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@
"metadata": {},
"outputs": [],
"source": [
"plt.style.use(\"seaborn\") # set nice style\n",
"\n",
"n = len(ds_forcing.data_vars)\n",
"kwargs0 = dict(sharex=True, figsize=(6, n * 3))\n",
"\n",
Expand Down
1 change: 0 additions & 1 deletion examples/plot_wflow_staticmaps.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@
"metadata": {},
"outputs": [],
"source": [
"plt.style.use(\"seaborn-whitegrid\") # set nice style\n",
"# we assume the model maps are in the geographic CRS EPSG:4326\n",
"proj = ccrs.PlateCarree()\n",
"# adjust zoomlevel and figure size to your basis size & aspect\n",
Expand Down
2 changes: 0 additions & 2 deletions examples/prepare_ldd.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@
"metadata": {},
"outputs": [],
"source": [
"# Common plot settings\n",
"plt.style.use(\"seaborn-whitegrid\") # set nice style\n",
"# we assume the model maps are in the geographic CRS EPSG:4326\n",
"proj = ccrs.PlateCarree()\n",
"\n",
Expand Down
1 change: 0 additions & 1 deletion examples/update_model_forcing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@
"outputs": [],
"source": [
"# plot precipitation\n",
"plt.style.use(\"seaborn\") # set nice style\n",
"fig, axes = plt.subplots(1, 1, figsize=(6, 3))\n",
"df0 = ds_forcing0[\"precip\"].squeeze().to_series()\n",
"df1 = ds_forcing1[\"precip\"].squeeze().to_series()\n",
Expand Down
1 change: 0 additions & 1 deletion examples/update_model_gauges.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@
"outputs": [],
"source": [
"# Plot\n",
"plt.style.use(\"seaborn-whitegrid\") # set nice style\n",
"# we assume the model maps are in the geographic CRS EPSG:4326\n",
"proj = ccrs.PlateCarree()\n",
"# adjust zoomlevel and figure size to your basis size & aspect\n",
Expand Down

0 comments on commit c6635be

Please sign in to comment.