Learn R Programming

forestdata (version 0.3.0)

fd_allometry_tallo: TALLO database

Description

Downloads the TALLO database, a global tree allometry and crown architecture database. Over 500,000 data points of individual trees with several measurements

Usage

fd_allometry_tallo(
  country = NULL,
  spatial = FALSE,
  metadata_path = NULL,
  quiet = FALSE
)

Value

a tibble or a sf object

Arguments

country

a character vector with either ISO2 codes, ISO3 codes or full country names (not mixed) to filter out the data

spatial

logical. Whether to retrieve a tibble or a sf object

metadata_path

a character string of length 1 with the path to store the metadata and bibliography. The default path_metadata = NULL does not download the metadata

quiet

if TRUE, suppress any message or progress bar

References

Tallo: A global tree allometry and crown architecture database. tools:::Rd_expr_doi("10.1111/gcb.16302")

Examples

Run this code
# \donttest{
## Download full database as tibble
tallo_tbl <- fd_allometry_tallo()

## Download full database as sf
tallo_sf <- fd_allometry_tallo(spatial = TRUE)

## Download data as sf for Czechia and Germany
tallo_cz_ge_sf <- fd_allometry_tallo(country = c("Czechia", "Germany"))
# }

Run the code above in your browser using DataLab