Description:
Implement Step 8: If more than 30% of pixels within a candidate cell are classified as snow/ice, mark all 4-neighboring cells (N, S, E, W) that haven't been processed yet as new candidate cells.
Tasks:
Acceptance Criteria:
- Neighbor cells are correctly identified based on grid structure
- Only unprocessed neighbors are added as candidates
- No duplicate processing of cells
- Expansion logic is correctly triggered at 30% threshold
- Grid visualization updates to show new candidates
Description:
Implement Step 8: If more than 30% of pixels within a candidate cell are classified as snow/ice, mark all 4-neighboring cells (N, S, E, W) that haven't been processed yet as new candidate cells.
Tasks:
is_candidatestatus in grid GeoDataFrameAcceptance Criteria: