From 9794e3ed4d5f9c48c9cf3ecffaeb26f78f860db2 Mon Sep 17 00:00:00 2001 From: Zan Pecovnik Date: Fri, 17 Nov 2023 09:58:48 +0100 Subject: [PATCH] add check for different SH deployments for process requests also --- rest/processing/process.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rest/processing/process.py b/rest/processing/process.py index c80ef226..db680707 100644 --- a/rest/processing/process.py +++ b/rest/processing/process.py @@ -547,6 +547,8 @@ def execute_sync(self): if self.width == 0 or self.height == 0: raise ImageDimensionInvalid(self.width, self.height) + self.check_if_data_fusion_possible() + return self.sentinel_hub.create_processing_request( bbox=self.bbox, epsg_code=self.epsg_code,