Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix nbands in rca #80

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/cogserver/algorithms/rca.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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]
Expand Down