From 855a0cdb6da95160504ec22f76b8e7338c3ec3ac Mon Sep 17 00:00:00 2001 From: Raffaele Gaetano <raffaele.gaetano@cirad.fr> Date: Fri, 28 Jul 2023 17:06:29 +0200 Subject: [PATCH] ENH: add superimpose prior to stitching RTC scenes --- Workflows/operations.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Workflows/operations.py b/Workflows/operations.py index e2aeb4c..7c82d13 100644 --- a/Workflows/operations.py +++ b/Workflows/operations.py @@ -75,6 +75,8 @@ def preprocess_s1(in_fld, roi, out_fld, dem_fld=None, geoid=None, direction=None assert(os.path.exists(dem_fld) and os.path.exists(geoid)) s1.calibrate() s1.orthorectify(dem_fld, geoid) + elif provider == 'planetary': + s1.superimpose() s1.stitch() if not skip_despeckle: s1.multitemp_speckle_filter() -- GitLab