Pv: Proportion of vegetation or fractional vegetation cover

Description Usage Arguments Value Examples

View source: R/LST.R

Description

Calculation of the proportion of vegetation or fractional vegetation cover from NDVI

Usage

1
Pv(NDVI, minNDVI, maxNDVI)

Arguments

NDVI

Raster* object, NDVI calculated from remote sensing imagery

minNDVI

= 0.2 (Ref. Sobrino et al. 2004)

maxNDVI

= 0.5 (Ref. Sobrino et al. 2004)

Value

RasterLayer

Examples

1
2
3
4
NDVI <- raster::raster(ncol=100, nrow=100)
set.seed(2)
raster::values(NDVI) = runif(10000, min=0.02, max=0.8)
Pv(NDVI = NDVI, minNDVI = 0.2, maxNDVI = 0.5)

LST documentation built on May 17, 2021, 9:09 a.m.

Related to Pv in LST...