PRODES.Rmd
The PRODES project uses satellites to monitor deforestation in Brazil’s Legal Amazon. The raw data reports total and incremental (year-by-year) low-cut deforested area at the municipality level.
The data made available in this package goes back to the year 2000, with ongoing updates. In line with INPE’s API, requesting data for an unavailable year does not yield an error, but rather a best effort response (columns regarding observation data are filled with default values).
Data is collected based on the PRODES-year, which starts at August 1st and ends on July 31st. Accordingly, 2018 deforestation data covers the period from 01/08/2017 to 31/07/2018.
Options:
dataset: "prodes"
raw_data: there are two options:
TRUE
: if you want the data as it is originally.FALSE
: if you want the treated version of the
data.time_period: picks the years for which the data will be downloaded
language: you can choose between Portuguese
("pt")
and English ("eng")
Examples:
# Download treated data (raw_data = FALSE) from 2010 (time_period = 2010)
# in portuguese (language = 'pt').
data <- load_prodes(raw_data = FALSE,
time_period = 2010,
language = 'pt')