Requests all records on bathrooms created or updated on or after a given date.
rfg_date(
date = NULL,
accessible = FALSE,
unisex = FALSE,
updated = FALSE,
verbose = TRUE,
tidy = FALSE
)A date in "yyyy-mm-dd" format, or any format that can be
coerced to a date with as.Date().
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, returns all bathrooms updated or added
since the given date. Defaults to FALSE, which only returns bathrooms
added since the given date.
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 all bathrooms recorded or updated on or after the given date.
if (FALSE) {
q <- rfg_date("2017-11-04")
}