Test what geographic entities will be detected in your data without actually performing the geocoding. Useful for debugging and verification.
Examples
if (FALSE) { # \dontrun{
# Check what will be detected
my_data <- data.frame(
HUC_8 = c("04100009", "04100012"),
State = c("Ohio", "PA"),
value = c(100, 200)
)
preview_geocoding(my_data)
} # }
