Skip to content
Snippets Groups Projects
Commit 7ce6cc81 authored by leufen1's avatar leufen1
Browse files

update for DataHandlerMixedSamplingWithFilter and DataHandlerSeparationOfScales

parent 9f35efe5
Branches
Tags
3 merge requests!226Develop,!225Resolve "release v1.2.0",!197Resolve "REFAC: mixed sampling data handler loads to much data"
Pipeline #53923 passed
...@@ -112,7 +112,10 @@ class DataHandlerMixedSamplingWithFilterSingleStation(DataHandlerMixedSamplingSi ...@@ -112,7 +112,10 @@ class DataHandlerMixedSamplingWithFilterSingleStation(DataHandlerMixedSamplingSi
else: # target else: # target
start, end = self.start, self.end start, end = self.start, self.end
data, self.meta = self.load_data(self.path[ind], self.station, self.statistics_per_var, self.sampling[ind], vars = [self.variables, self.target_var]
stats_per_var = helpers.select_from_dict(self.statistics_per_var, vars[ind])
data, self.meta = self.load_data(self.path[ind], self.station, stats_per_var, self.sampling[ind],
self.station_type, self.network, self.store_data_locally, self.data_origin, self.station_type, self.network, self.store_data_locally, self.data_origin,
start, end) start, end)
data = self.interpolate(data, dim=self.time_dim, method=self.interpolation_method, data = self.interpolate(data, dim=self.time_dim, method=self.interpolation_method,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment