Skip to content
Snippets Groups Projects
Commit 70b84554 authored by Michael Langguth's avatar Michael Langguth
Browse files

Corrected handling of data arrays before creation of conditional quantile plot...

Corrected handling of data arrays before creation of conditional quantile plot in main_visualize_postprocess.py.
parent 11fb8c6a
No related branches found
No related tags found
No related merge requests found
Pipeline #68846 passed
...@@ -782,11 +782,10 @@ class Postprocess(TrainModel): ...@@ -782,11 +782,10 @@ class Postprocess(TrainModel):
var_fcst = "{0}_{1}_fcst".format(self.vars_in[self.channel], self.model) var_fcst = "{0}_{1}_fcst".format(self.vars_in[self.channel], self.model)
var_ref = "{0}_ref".format(self.vars_in[self.channel]) var_ref = "{0}_ref".format(self.vars_in[self.channel])
get_era5_varatts(self.cond_quantiple_ds[var_fcst], self.cond_quantiple_ds[var_fcst].name) data_fcst = get_era5_varatts(self.cond_quantiple_ds[var_fcst], self.cond_quantiple_ds[var_fcst].name)
get_era5_varatts(self.cond_quantiple_ds[var_fcst], self.cond_quantiple_ds[var_fcst].name) data_ref = get_era5_varatts(self.cond_quantiple_ds[var_ref], self.cond_quantiple_ds[var_ref].name)
# create plots # create plots
data_fcst, data_ref = self.cond_quantiple_ds[var_fcst], self.cond_quantiple_ds[var_ref]
fhhs = data_fcst.coords["fcst_hour"] fhhs = data_fcst.coords["fcst_hour"]
for hh in fhhs: for hh in fhhs:
# calibration refinement factorization # calibration refinement factorization
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment