Mappings by Plataforma CIPÓ on environmental crimes. Each dataset available is a spreadsheet pertaining to a different aspect of environmental crimes, namely: the Brazilian institutions and organization involved in their prevention (the "brazilian_actors"
dataset); the international agreements, treaties and conventions related to the subject (the "international_cooperation"
dataset); and the arrangements regarding forest governance (the "forest_governance"
dataset).
Using the function is easy enough:
library(datazoom.amazonia)
# Download the full mapping on the Brazilian actors
<- load_cipo(dataset = "brazilian_actors")
brazilian_actors
# Now the International cooperation mapping
<- load_cipo(dataset = "international_cooperation")
cooperation
## Now taking advantage of the search parameter
# searching only for entries containing IBAMA
<- load_cipo(dataset = "brazilian_actors",
actors_ibama search = "ibama")
# entries containing IBAMA or FUNAI
<- load_cipo(dataset = "brazilian_actors",
actors_ibama search = "ibama|funai")