From 69459b3ed6a7d9cd3a2bc1993eb548cc1e65087c Mon Sep 17 00:00:00 2001 From: Felix Kleinert <f.kleinert@fz-juelich.de> Date: Sun, 18 Apr 2021 11:23:35 +0200 Subject: [PATCH] remove bbox_inches='tight' for map plot --- mlair/plotting/postprocessing_plotting.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mlair/plotting/postprocessing_plotting.py b/mlair/plotting/postprocessing_plotting.py index 1cb6181a..b7ebad81 100644 --- a/mlair/plotting/postprocessing_plotting.py +++ b/mlair/plotting/postprocessing_plotting.py @@ -255,7 +255,8 @@ class PlotStationMap(AbstractPlotClass): self._ax = None self._gl = None self._plot(generators) - self._save(bbox_inches="tight") + # self._save(bbox_inches="tight") + self._save() def _draw_background(self): """Draw coastline, lakes, ocean, rivers and country borders as background on the map.""" -- GitLab