Преглед изворни кода

i.vi

explain what the two versions of NDWI are good for
Markus Metz пре 5 година
родитељ
комит
ca3813af24
1 измењених фајлова са 15 додато и 2 уклоњено
  1. 15 2
      imagery/i.vi/i.vi.html

+ 15 - 2
imagery/i.vi/i.vi.html

@@ -217,9 +217,10 @@ NDVI = (NIR - Red) / (NIR + Red)
 </pre></div>
 
 <p>
-<b>NDWI: Normalized Difference Water Index</b>
+<b>NDWI: Normalized Difference Water Index</b> (after McFeeters, 1996)
 
-(after McFeeters, 1996)
+<p>
+This index is suitable to detect water bodies.
 
 <div class="code"><pre>
 ndwi( greenchan, nirchan )
@@ -228,6 +229,18 @@ NDWI = (green - NIR) / (green + NIR)
 </pre></div>
 
 <p>
+The water content of leaves can be estimated with another NDWI (after 
+Gao, 1996):
+
+<div class="code"><pre>
+ndwi( greenchan, nirchan )
+
+NDWI = (NIR - SWIR) / (NIR + SWIR)
+</pre></div>
+
+This index is important for monitoring vegetation health (not implemented).
+
+<p>
 <b>PVI: Perpendicular Vegetation Index</b>
 
 <div class="code"><pre>