From 03ce4b7d48e912d5c36fb9ffb08d871ce83e8800 Mon Sep 17 00:00:00 2001 From: Aurore Dupuis <aurore.dupuis@cnes.fr> Date: Sat, 26 Feb 2022 00:42:13 +0100 Subject: [PATCH] Fix synthesis name --- python/s2snow/snow_synthesis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/s2snow/snow_synthesis.py b/python/s2snow/snow_synthesis.py index a271a125..4eb7fa91 100644 --- a/python/s2snow/snow_synthesis.py +++ b/python/s2snow/snow_synthesis.py @@ -84,7 +84,7 @@ def compute_snow_synthesis(config, output_dir, h2_chain_version=None, product_co config.densification_products_list, tmp_dir, product_dict, config.ram) synthesis_name = "LIS_S2L8-SNOW-{}_" + synthesis_name + ".tif" else: - synthesis_name = "LIS_S2-SNOW-SNT-{}_" + synthesis_name + ".tif" + synthesis_name = "LIS_S2-SNOW-{}_" + synthesis_name + ".tif" # ---------------------------------------------------------------------------------------- # Sort products by acquisition date, retrieve input and output dates -- GitLab