Skip to content
Snippets Groups Projects
Commit 45ce6195 authored by lukas leufen's avatar lukas leufen
Browse files

PlotAvailability is now part of the plot list functionality

parent 33433be3
Branches
Tags
3 merge requests!90WIP: new release update,!89Resolve "release branch / CI on gpu",!88added summary and combined Gantt plot
Pipeline #34285 passed
......@@ -21,7 +21,8 @@ DEFAULT_VAR_ALL_DICT = {'o3': 'dma8eu', 'relhum': 'average_values', 'temp': 'max
'pblheight': 'maximum'}
DEFAULT_TRANSFORMATION = {"scope": "data", "method": "standardise", "mean": "estimate"}
DEFAULT_PLOT_LIST = ["PlotMonthlySummary", "PlotStationMap", "PlotClimatologicalSkillScore", "PlotTimeSeries",
"PlotCompetitiveSkillScore", "PlotBootstrapSkillScore", "plot_conditional_quantiles"]
"PlotCompetitiveSkillScore", "PlotBootstrapSkillScore", "plot_conditional_quantiles",
"PlotAvailability"]
class ExperimentSetup(RunEnvironment):
......
......@@ -214,6 +214,7 @@ class PostProcessing(RunEnvironment):
if "PlotTimeSeries" in plot_list:
PlotTimeSeries(self.test_data.stations, path, r"forecasts_%s_test.nc", plot_folder=self.plot_path,
sampling=self._sampling)
if "PlotAvailability" in plot_list:
avail_data = {"train": self.train_data, "val": self.val_data, "test": self.test_data}
PlotAvailability(avail_data, plot_folder=self.plot_path)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment