diff --git a/app/cocal_methods.py b/app/cocal_methods.py index 7e09377d41aa84169f8ab0b01fa53995c71bb775..11c755c2dda44fd9b477dbe73b83cbc000dd1eea 100644 --- a/app/cocal_methods.py +++ b/app/cocal_methods.py @@ -499,6 +499,16 @@ class CocalMethods: fig.savefig(self.result_image_path) # plt.show() + def generate_spectral_domain_visualization_dummy(self): + + # visualize result + fig, ax = plt.subplots(nrows=1, ncols=1, sharex=True, squeeze=False, figsize=(8,5)) + fig.suptitle("DUMMY PLOT") + + fig.tight_layout() + fig.savefig(self.result_image_path) + # plt.show() + def perform_dummy_computations(self): self.start_date = datetime.date.today().isoformat()