load_mapbiomas {datazoom.amazonia}R Documentation

MAPBIOMAS - The Annual Land Cover and Use Mapping Project in Brazil

Description

Loads information about land cover and use

Usage

load_mapbiomas(
  dataset = NULL,
  raw_data = NULL,
  geo_level = "municipality",
  time_period = "all",
  language = "eng",
  time_id = "year",
  cover_level = 1
)

Arguments

dataset

A dataset name ("mapbiomas_cover", "mapbiomas_transition", "mapbiomas_irrigation", "mapbiomas_deforestation_regeneration", "mapbiomas_grazing_quality")

raw_data

A boolean setting the return of raw or processed data

geo_level

A string that defines the geographic level of the data. Can be only "municipality".

time_period

A numeric indicating what years will the data be loaded. Can be only "all".

language

A string that indicates in which language the data will be returned. Currently, only Portuguese ("pt") and English ("eng") are supported.

time_id

A string that indicates the time criteria for the data loaded. Can be "year" or "month". Defaults to year.

cover_level

A numeric that indicates the cover aggregation level. Can be "0", "1", "2", "3" or "4".

Value

A tibble with the selected data.

Examples

## Not run: 
# download treated data from mapbiomas_grazing_quality
treated_mapbiomas_grazing <- load_mapbiomas(
  dataset = "mapbiomas_grazing_quality",
  raw_data = FALSE, geo_level = "municipality",
  time_period = "all", language = "pt"
)

## End(Not run)


[Package datazoom.amazonia version 0.3.0 Index]