Calculate Potential Net Primary Production (NPP)
Source:R/npp_functions.R
calculate_potential_npp.RdCalculates potential NPP using various models including Miami, NCEAS, and Rosenzweig. This function estimates ecosystem productivity based on temperature and precipitation.
Examples
if (FALSE) { # \dontrun{
climate_data <- data.frame(TMP = 15, WaterInput_mm = 800, AET_mm = 700)
npp_results <- calculate_potential_npp(climate_data)
} # }