Skip to content

Commit

Permalink
ndvi equation
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldorman committed Aug 9, 2023
1 parent dbafd91 commit b59530a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 04-spatial-operations.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -747,9 +747,9 @@ axes[0].set_title('Original')
axes[1].set_title('Reclassified');
```

The calculation of the normalized difference vegetation index (NDVI) is a well-known local (pixel-by-pixel) raster operation. It returns a raster with values between -1 and 1; positive values indicate the presence of living plants (mostly > 0.2). NDVI is calculated from red and near-infrared (NIR) bands of remotely sensed imagery, typically from satellite systems such as Landsat or Sentinel. Vegetation absorbs light heavily in the visible light spectrum, and especially in the red channel, while reflecting NIR light, explaining the NVDI formula:
The calculation of the normalized difference vegetation index (NDVI) is a well-known local (pixel-by-pixel) raster operation. It returns a raster with values between -1 and 1; positive values indicate the presence of living plants (mostly > 0.2). NDVI is calculated from red and near-infrared (NIR) bands of remotely sensed imagery, typically from satellite systems such as Landsat or Sentinel. Vegetation absorbs light heavily in the visible light spectrum, and especially in the red channel, while reflecting NIR light, explaining the NVDI formula (@eq-ndvi):

$$NDVI=\frac{NIR-Red} {NIR+Red}$$
$$NDVI=\frac{NIR-Red} {NIR+Red}$${#eq-ndvi}

Let's calculate NDVI for the multispectral satellite file of the Zion National Park.

Expand Down

0 comments on commit b59530a

Please sign in to comment.