Skip to content
Snippets Groups Projects
Commit 54b7e5a5 authored by Daniel Scheffler's avatar Daniel Scheffler
Browse files

Suppress warnings if mode_ac is 'land'.


Signed-off-by: default avatarDaniel Scheffler <danschef@gfz-potsdam.de>
parent 7c408687
No related branches found
No related tags found
1 merge request!83Bugfix/fix unexpected warnings
......@@ -288,7 +288,8 @@ class EnMAPL2Product_MapGeo(_EnMAP_Image):
attr_gA.save(outpath, **kwargs_save)
outpaths[attrName] = outpath
else:
if attrName.startswith('polymer_') and not self.cfg.polymer_additional_results:
if attrName.startswith('polymer_') and \
(not self.cfg.polymer_additional_results or self.cfg.mode_ac == 'land'):
# Do not show a warning if a Polymer product was intentionally not produced and cannot be saved.
pass
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment