Description:
Implement Step 9: Create the main algorithm loop that repeats the STAC query, data loading, NDSI calculation, and neighbor expansion until no additional candidate cells are found.
Tasks:
Acceptance Criteria:
- Algorithm iterates until convergence (no new candidates)
- All glacier-connected cells are identified
- No cells are processed twice
- Progress is logged at each iteration
- Final output covers all ice/snow regions in Iceland
- Performance metrics are collected (time, data volume)
Description:
Implement Step 9: Create the main algorithm loop that repeats the STAC query, data loading, NDSI calculation, and neighbor expansion until no additional candidate cells are found.
Tasks:
while candidates_to_process > 0Acceptance Criteria: