From 79b8d8a56b5a5979517b36476ad5d1f442e3f67d Mon Sep 17 00:00:00 2001 From: iferencik <92793531+iferencik@users.noreply.github.com> Date: Wed, 3 Apr 2024 23:43:15 +0200 Subject: [PATCH] fix nbands in rca (#80) Co-authored-by: janf --- src/cogserver/algorithms/rca.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/cogserver/algorithms/rca.py b/src/cogserver/algorithms/rca.py index b1fd39b..7b39229 100644 --- a/src/cogserver/algorithms/rca.py +++ b/src/cogserver/algorithms/rca.py @@ -45,9 +45,6 @@ class RapidChangeAssessment(BaseAlgorithm): description="Inclusive cloud threshold. Specifying a value results in considering all lower values", options_descriptions = ['No clouds', 'Almost no clouds', 'Very few clouds', 'Partially cloudy', 'Cloudy', 'Very cloudy' ] ) - - - # metadata input_description: str = "The bands that will be used to detect changes" input_bands: List = [ @@ -60,9 +57,6 @@ class RapidChangeAssessment(BaseAlgorithm): ] input_nbands: int = len(input_bands) - # input_second_image_title: str = 'Second image' - # input_second_image_description: str = 'The image after the event' - output_nbands: int = 1 output_dtype: int = "int8" output_min: Sequence[int] = [-100]