You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add NDWI and MNDWI water indices (#948)
Add ndwi() and mndwi() to the multispectral module for mapping
surface water bodies. Both reuse the existing normalized-ratio
backend functions, so all four backends (NumPy, Dask, CuPy,
Dask+CuPy) work out of the box. Includes DataArray/Dataset
accessor methods and tests against reference values.
* Add docs, README entry, and user guide for NDWI/MNDWI (#948)
- Add API reference entries in multispectral.rst
- Add two rows to the README feature matrix
- Add notebook 17_Water_Indices.ipynb with synthetic data demo
* Rename water indices notebook to 18 (#948)
Number 17 is taken by another in-flight branch.
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -207,6 +207,8 @@ In the GIS world, rasters are used for representing continuous phenomena (e.g. e
207
207
|[Normalized Burn Ratio (NBR)](xrspatial/multispectral.py)| Measures burn severity using NIR and SWIR band difference | ✅️ |✅️ | ✅️ |✅️ |
208
208
|[Normalized Burn Ratio 2 (NBR2)](xrspatial/multispectral.py)| Refines burn severity mapping using two SWIR bands | ✅️ |✅️ | ✅️ |✅️ |
209
209
|[Normalized Difference Moisture Index (NDMI)](xrspatial/multispectral.py)| Detects vegetation moisture stress from NIR and SWIR reflectance | ✅️ |✅️ | ✅️ |✅️ |
210
+
|[Normalized Difference Water Index (NDWI)](xrspatial/multispectral.py)| Maps open water bodies using green and NIR band difference | ✅️ |✅️ | ✅️ |✅️ |
211
+
|[Modified Normalized Difference Water Index (MNDWI)](xrspatial/multispectral.py)| Detects water in urban areas using green and SWIR bands | ✅️ |✅️ | ✅️ |✅️ |
210
212
|[Normalized Difference Vegetation Index (NDVI)](xrspatial/multispectral.py)| Quantifies vegetation density from red and NIR band difference | ✅️ |✅️ | ✅️ |✅️ |
211
213
|[Soil Adjusted Vegetation Index (SAVI)](xrspatial/multispectral.py)| Vegetation index with soil brightness correction factor | ✅️ |✅️ | ✅️ |✅️ |
212
214
|[Structure Insensitive Pigment Index (SIPI)](xrspatial/multispectral.py)| Estimates carotenoid-to-chlorophyll ratio for plant stress detection | ✅️ |✅️ | ✅️ |✅️ |
0 commit comments