From d65b8b783b5a51dadbadca22a5f4684815841ef6 Mon Sep 17 00:00:00 2001 From: lukas leufen <l.leufen@fz-juelich.de> Date: Wed, 5 Feb 2020 11:22:37 +0100 Subject: [PATCH] change map resolution to accelerate map plot --- src/plotting/postprocessing_plotting.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plotting/postprocessing_plotting.py b/src/plotting/postprocessing_plotting.py index cd49ddd5..97d326bc 100644 --- a/src/plotting/postprocessing_plotting.py +++ b/src/plotting/postprocessing_plotting.py @@ -141,11 +141,11 @@ class PlotStationMap(RunEnvironment): """ Draw coastline, lakes, ocean, rivers and country borders as background on the map. """ - self._ax.add_feature(cfeature.COASTLINE.with_scale("10m"), edgecolor='black') + self._ax.add_feature(cfeature.COASTLINE.with_scale("50m"), edgecolor='black') self._ax.add_feature(cfeature.LAKES.with_scale("50m")) self._ax.add_feature(cfeature.OCEAN.with_scale("50m")) - self._ax.add_feature(cfeature.RIVERS.with_scale("10m")) - self._ax.add_feature(cfeature.BORDERS.with_scale("10m"), facecolor='none', edgecolor='black') + self._ax.add_feature(cfeature.RIVERS.with_scale("50m")) + self._ax.add_feature(cfeature.BORDERS.with_scale("50m"), facecolor='none', edgecolor='black') def _plot_stations(self, generators): """ -- GitLab