Skip to contents

Calculate Moorland Fire Danger Index

Usage

calc_MFDI(Rain, Temp, RH, Wind, Age, Time, Daily = FALSE)

Arguments

Rain

Rainfall amount (mm)

Temp

Temperature (degrees C)

RH

Relative humidity (RH)

Wind

Wind speed

Age

Age of fuel (time since fire)

Time

Vector of time values in minutes or days

Daily

If time data is daily set to TRUE, otherwise if it is in minutes set to FALSE

Value

Moorland FDI

Examples

calc_MFDI(Rain=c(0,20,10,4),
Temp=c(12,13,8,9),
RH=c(55,87,90,67),
Wind=c(5,8,9,9),
Age=c(25,25,25,25),
Time=c(1,2,3,4),
Daily=TRUE)
#> [1] 2.0108218 0.3181124 0.3468034 0.5548097