Skip to content

Commit

Permalink
Feat/rca improvements (#79)
Browse files Browse the repository at this point in the history
* update RCA algo and set RELOAD in docker-compose to --reload

* fix nbands in rca

---------

Co-authored-by: janf <[email protected]>
  • Loading branch information
iferencik and janf authored Apr 3, 2024
1 parent 88e735d commit 96fb045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cogserver/algorithms/rca.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ class RapidChangeAssessment(BaseAlgorithm):


# metadata
input_nbands: int = 2
input_description: str = "The bands that will be used to detect changes"
input_bands: List = [
{'title': 'Start date image', 'description': 'The image before the event', 'required':True},
Expand All @@ -59,6 +58,7 @@ class RapidChangeAssessment(BaseAlgorithm):
{'title': 'End date cloud mask', 'description': 'The cloud mask of the image after the event',
'required': True},
]
input_nbands: int = len(input_bands)

# input_second_image_title: str = 'Second image'
# input_second_image_description: str = 'The image after the event'
Expand Down

0 comments on commit 96fb045

Please sign in to comment.