knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.width = 5,
  fig.height = 5
)

In the following, the most important steps of the processing workflow of {mapme.vegetation} are described; the figure guides the reader through these descriptions. The overall goal here is to download the matching Sentinel-2 tiles a spatio-temporal extent of interest and process the downloaded data to derive a dense time series of surface reflectance bands and vegetation indices. On the other end of this process, there are optional additional analysis steps such as the calculation of pixel-wise trends or the extraction of zonal statistics.

library(DiagrammeR)

mermaid("
  graph TB

    classDef default fill:#c2dddd,stroke-width:2px,stroke:#034858;

    A(Query & Download)
    B(Apply Cloud Mask)
    C(Calculate VIs and SR)
    D(Dense Time Series)
    E(Trends)
    F(Zonal Statistics)
    G(Pixel Extraction)
    A-->B
    B-->C
    C-->D
    D-->E
    D-->F
    D-->G

")


mapme-initiative/mapme.vegetation documentation built on Feb. 10, 2023, 10:51 p.m.