Skip to content
Snippets Groups Projects
Commit 04b28e2b authored by leufen1's avatar leufen1
Browse files

debug plot statement is now a comment

parent cc7be2a8
No related branches found
No related tags found
3 merge requests!192include Develop,!191Resolve "release v1.1.0",!177Resolve "KZ Filter creating additional dimension"
Pipeline #50656 passed
...@@ -42,10 +42,11 @@ class DataHandlerKzFilterSingleStation(DataHandlerSingleStation): ...@@ -42,10 +42,11 @@ class DataHandlerKzFilterSingleStation(DataHandlerSingleStation):
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
# self.original_data = self.data # ToDo: implement here something to store unfiltered data # self.original_data = self.data # ToDo: implement here something to store unfiltered data
self.apply_kz_filter() self.apply_kz_filter()
self.data.sel(filter="74d", variables="temp", Stations="DEBW107").plot() # self.data.sel(filter="74d", variables="temp", Stations="DEBW107").plot()
# self.data.sel(variables="temp", Stations="DEBW107").plot.line(hue="filter")
if self.transformation is not None: if self.transformation is not None:
self.call_transform() self.call_transform()
self.make_samples() # ToDo: target samples are still comming from filtered data self.make_samples() # ToDo: target samples are still coming from filtered data
@TimeTrackingWrapper @TimeTrackingWrapper
def apply_kz_filter(self): def apply_kz_filter(self):
......
...@@ -230,6 +230,3 @@ class PreProcessing(RunEnvironment): ...@@ -230,6 +230,3 @@ class PreProcessing(RunEnvironment):
transformation_dict = data_handler.transformation(stations, **kwargs) transformation_dict = data_handler.transformation(stations, **kwargs)
if transformation_dict is not None: if transformation_dict is not None:
self.data_store.set("transformation", transformation_dict) self.data_store.set("transformation", transformation_dict)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment