slope_rast"

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

only for yearly rast

library(rtrend)
library(terra)

f = system.file("rast/MOD15A2_LAI_China_G050_2001-2020.tif", package = "rtrend")
r = rast(f)
r
time(r)

slp <- slope_rast(r, period = c(2001, 2020),
  outfile = "LAI_trend.tif", overwrite = TRUE,
  fun = rtrend::slope_mk, .progress = "none"
)
slp
plot(slp)
file.remove("LAI_trend.tif")


Try the rtrend package in your browser

Any scripts or data that you put into this service are public.

rtrend documentation built on Nov. 10, 2022, 6:14 p.m.