From 36a0c40222dd1405c7a7009ef02e559eb4e3a51f Mon Sep 17 00:00:00 2001 From: Gerrit Holl Date: Wed, 18 Mar 2026 15:21:47 +0100 Subject: [PATCH 1/2] Pass track_coords to Scene.resample Add support for the `track_coords` resample keyword argument, so that the mean time tracking introduced in https://github.com/pytroll/satpy/pull/3168 can be used with trollflow2. --- trollflow2/plugins/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/trollflow2/plugins/__init__.py b/trollflow2/plugins/__init__.py index 86f1a99..0692ca4 100644 --- a/trollflow2/plugins/__init__.py +++ b/trollflow2/plugins/__init__.py @@ -153,6 +153,7 @@ def aggregate(job): "cache_dir": None, "mask_area": False, "epsilon": 0.0, + "track_coords": False, } From f8038d620f1a80e6f2efb660362e42445147c90d Mon Sep 17 00:00:00 2001 From: Gerrit Holl Date: Wed, 18 Mar 2026 16:51:05 +0100 Subject: [PATCH 2/2] resample_coords not track_coords --- trollflow2/plugins/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trollflow2/plugins/__init__.py b/trollflow2/plugins/__init__.py index 0692ca4..fc20d4c 100644 --- a/trollflow2/plugins/__init__.py +++ b/trollflow2/plugins/__init__.py @@ -153,7 +153,7 @@ def aggregate(job): "cache_dir": None, "mask_area": False, "epsilon": 0.0, - "track_coords": False, + "resample_coords": False, }