Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 6.1 KB

README.md

File metadata and controls

53 lines (33 loc) · 6.1 KB

Normalized Difference Moisture Index (NDMI)

Show script or download{:target="_blank"} it.

{% highlight javascript %} {% include_relative script.js %} {% endhighlight %}

Evaluate and visualize

General description of the script

The NDMI is a normalized difference moisture index, that uses NIR and SWIR bands to display moisture. The SWIR band reflects changes in both the vegetation water content and the spongy mesophyll structure in vegetation canopies, while the NIR reflectance is affected by leaf internal structure and leaf dry matter content but not by water content. The combination of the NIR with the SWIR removes variations induced by leaf internal structure and leaf dry matter content, improving the accuracy in retrieving the vegetation water content. The amount of water available in the internal leaf structure largely controls the spectral reflectance in the SWIR interval of the electromagnetic spectrum. SWIR reflectance is therefore negatively related to leaf water content. In short, NDMI is used to monitor changes in water content of leaves, and was proposed by Gao.{:target="_blank"} NDWI is computed using the near infrared (NIR) and the short wave infrared (SWIR) reflectance’s:

Sentinel-2 NDMI = (B08 - B11) / (B08 + B11)

Landsat 4-5 TM NDMI = (B04 - B05) / (B04 + B05)

Landsat 7 ETM+ NDMI = (B04 - B05) / (B04 + B05)

Landsat 8 NDMI = (B05 - B06) / (B05 + B06)

MODIS NDMI = (B02 - B06) / (B02 + B06)

Note: NDWI index is often used synonymously with the NDMI index, often using NIR-SWIR combination as one of the two options. Gao, referenced above, also called the index NDWI. NDMI seems to be consistently described using NIR-SWIR combination. As the indices with these two combinations work very differently, with NIR-SWIR highlighting differences in water content of leaves, and GREEN-NIR highlighting differences in water content of water bodies, we have decided to separate the indices on our repository as NDMI using NIR-SWIR, and NDWI using GREEN-NIR.

Description of representative images

The NDMI of Rome, Italy. Acquired on 08.10.2017, processed by Sentinel Hub.

NDWI

The NDMI of Betsiboka river, Madagascar. Acquired on 2020-08-01, processed by Sentinel Hub.

NDWI

References