README.md

hexagon crossfire

crossfire

crossfire is a package created to give easier access to the datasets of the project Fogo Cruzado, which is a digital collaboration platform to register gun shootings in the metropolitan areas of Rio de Janeiro and Recife.

The package facilitates data extraction from the project open-data API, developed by Volt Data Lab.

Please note that as of Nov. 2020, due to changes in Fogo Cruzado's API, user's should update crossfire to its' 0.2.0 version. The get_fogocruzado() function from the 0.1.0 version returns errors and cannot be used.

Installing and loading the package

Currently, the crossfire package can be installed directly from its GitHub repository:

if (!require("devtools")) install.packages("devtools")
devtools::install_github("voltdatalab/crossfire")

library(crossfire)

Functions

crossfire has 3 functions: fogocruzado_signin, get_fogocruzado and get_cities.

# Extract data for all registered shootings
fogocruzado_all <- get_fogocruzado()

# Extract data for shootings in the cities of Rio de Janeiro and Recife in 2018
fogocruzado_rj_recife <- get_fogocruzado(city = c("Rio de Janeiro", "Recife"),
                                         initial_date = "2018-07-01", final_date = "2018-12-31")

# Extract data from occurents reported by the police and in which security agents were present
fogocruzado_security <- get_fogocruzado(security_agent = 1, source = 2)

More information

For more information on how the package works and for a complete list of functions, see the vignettes (in English and Portuguese).

Authors

Lucas Gelape, for Volt Data Lab.

Contributors

Sérgio Spagnuolo and Denisson Silva.



voltdatalab/crossfire documentation built on Oct. 30, 2023, 7:11 p.m.