Given a pair of coordinates (latitude and longitude), finds any nearby bathrooms, subject to other parameters.
rfg_location(
lat,
lng,
accessible = FALSE,
unisex = FALSE,
verbose = TRUE,
tidy = FALSE
)Location latitude
Location longitude
If TRUE, only returns restrooms that meet the
Americans with Disability Act standards for accessibility.
Defaults to FALSE.
If TRUE, only returns unisex restrooms.
Defaults to FALSE.
If TRUE, prints query progress.
Defaults to TRUE.
If TRUE, makes USA state names more consistent. The internal
function focuses on correcting known errors and mistakes, if incorrect state
data is supplied that cannot be corrected. Defaults to FALSE.
A tibble with details of any and all nearby refuge bathrooms.
if (FALSE) {
c <- rfg_location(lat = 39, lng = -75)
}