From 31c842c5b7e6b25badc7022c6baaf2b4415a1946 Mon Sep 17 00:00:00 2001
From: Felix Kleinert <f.kleinert@fz-juelich.de>
Date: Wed, 29 Apr 2020 15:17:44 +0200
Subject: [PATCH] remove hdfml from catropy plots

---
 src/run_modules/post_processing.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/run_modules/post_processing.py b/src/run_modules/post_processing.py
index b0bce5e6..9e6bbe39 100644
--- a/src/run_modules/post_processing.py
+++ b/src/run_modules/post_processing.py
@@ -199,7 +199,8 @@ class PostProcessing(RunEnvironment):
         if "PlotConditionalQuantiles" in plot_list:
             PlotConditionalQuantiles(self.test_data.stations, data_pred_path=path, plot_folder=self.plot_path)
         if "PlotStationMap" in plot_list:
-            if self.data_store.get("hostname")[:2] in self.data_store.get("hpc_hosts"):
+            if self.data_store.get("hostname")[:2] in self.data_store.get("hpc_hosts") or self.data_store.get(
+                    "hostname")[:5] in self.data_store.get("hpc_hosts"):
                 logging.warning(
                     f"Skip 'PlotStationMap` because running on a hpc node: {self.data_store.get('hostname')}")
             else:
-- 
GitLab