Description:
Implement Step 6: Calculate the Normalized Difference Snow Index using the formula NDSI = (B03 - B11) / (B03 + B11) for the median composite.
Tasks:
Acceptance Criteria:
- NDSI is correctly calculated for all pixels
- No NaN or Inf values from division issues
- NDSI values are within valid range [-1, 1]
- High NDSI values (>0.42) correspond to seed locations
Description:
Implement Step 6: Calculate the Normalized Difference Snow Index using the formula NDSI = (B03 - B11) / (B03 + B11) for the median composite.
Tasks:
(B03 - B11) / (B03 + B11)Acceptance Criteria: