(self)
| 39 | """ |
| 40 | |
| 41 | def __init__(self): |
| 42 | self.baseline_ndvi = {} # Historical baseline by grove |
| 43 | self.sentinel2_bands = { |
| 44 | 'red': 4, |
| 45 | 'nir': 8, # Near-infrared |
| 46 | 'swir': 11 # Shortwave infrared |
| 47 | } |
| 48 | |
| 49 | def calculate_ndvi( |
| 50 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected