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]