The dataset is originally from the Brazilian Institute of Environment and Renewable Natural Resources (Ibama), documenting environmental embargoes and fines at the individual level from 2005 to the present day.
load_ibama
downloads and compiles data on environmental fines at the municipality level considering the Amazon region.
The function returns either the raw data or a data frame with aggregates considering, for each time-location period, counts for total the number of infractions, infractions that already went to trial, and number of unique perpetrators of infractions.
library(datazoom.amazonia)
# Download treated data (raw_data = FALSE) from the entire country
# (legal_amazon_only = FALSE) in english (language = "eng")
<- load_ibama(dataset = "areas_embargadas", raw_data = FALSE,
data language = "eng", legal_amazon_only = FALSE)
# Download raw data (raw_data = TRUE) from Legal Amazon region
# (legal_amazon_only = TRUE)
<- load_ibama(dataset = "areas_embargadas", raw_data = TRUE,
data legal_amazon_only = TRUE)