nearest_dbox: Calculates nearest drop box or polling location

Description Usage Arguments Value Author(s) References Examples

View source: R/RcppExports.R

Description

Given a set of lat-long coordinates for each voter, and a set of coordinates for all drop boxes or polling locations, nearest_dbox() calculates the nearest drop box or polling location for each voter, in haversines. The function ports to C++, which greatly expedites speed.

Usage

1
nearest_dbox(lat1d_vec, lon1d_vec, lat2d_vec, lon2d_vec)

Arguments

lat1d_vec

Numeric vector, latitude coordinate of voter

lon1d_vec

Numeric vector, longitude coordinate of voter

lat2d_vec

Numeric vector, latitude coordinate of drop box, polling location

lon2d_vec

Numeric vector, longitude coordinate of drop box, polling location

Value

A numeric vector of minimum distances for each voter to their nearest drop box or polling location

Author(s)

Loren Collingwood <loren.collingwood@ucr.edu>

References

Haversine: CC Robusto, 1957

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
data(king_dbox)
# Haversine distance between voter and drop boxes, King County
hav_calc <- nearest_dbox (king_geo$Residence_Addresses_Latitude, 
king_geo$Residence_Addresses_Longitude, 
dbox$lat, dbox$long)

summary(hav_calc)

data(meck_ev)
# Voter and early vote location, Mecklenburg County
hav_meck <- nearest_dbox (voter_meck$lat, voter_meck$long,
				early_meck$lat, early_meck$long)
summary(hav_meck)

Rvoterdistance documentation built on May 2, 2019, 2:08 p.m.