R/aus_any_dataset.R
aus_any_dataset.RdDownloads data from any Austin Open Data Socrata JSON endpoint and returns the result as a tibble. This function is useful for datasets that are not included in the curated catalog returned by [aus_list_datasets()].
aus_any_dataset(
json_link,
limit = 10000,
timeout_sec = 30,
clean_names = TRUE,
coerce_types = TRUE
)A single Socrata dataset JSON endpoint URL, such as `"https://data.austintexas.gov/resource/9t4d-g238.json"`.
Number of rows to retrieve. Defaults to 10,000.
Request timeout in seconds. Defaults to 30.
Logical. If `TRUE`, column names are converted to snake_case using [janitor::clean_names()]. Defaults to `TRUE`.
Logical. If `TRUE`, the package attempts lightweight, heuristic-based type coercion after downloading the data. Columns are converted only when at least 95 percent of non-missing values can be parsed as the target type. This helps avoid unsafe conversions when source data are inconsistent.
A tibble containing rows from the requested Austin Open Data endpoint.
Austin Open Data datasets have Socrata JSON endpoints that usually follow this pattern:
`https://data.austintexas.gov/resource//<dataset_uid>.json`
For example, a dataset with the Socrata UID `"9t4d-g238"` would have the JSON endpoint:
`https://data.austintexas.gov/resource/9t4d-g238.json`
Users can find a dataset's UID from the Austin Open Data Portal URL, the API documentation page for the dataset, or the output of [aus_list_datasets()].
`aus_any_dataset()` bypasses the package catalog and sends a request directly to the supplied JSON endpoint. Unlike [aus_pull_dataset()], it does not look up defaults such as catalog keys, date fields, or default ordering.
This function is intended for direct endpoint access. For catalog-based workflows using readable keys or Socrata UIDs, use [aus_pull_dataset()].
# Examples that hit the live Austin Open Data API are guarded so CRAN
# checks do not fail when the network is unavailable or slow.
if (interactive() && curl::has_internet()) {
# Build a JSON endpoint from a Socrata UID
uid <- "abcd-1234"
endpoint <- paste0("https://data.austintexas.gov/resource", uid, ".json")
out <- try(aus_any_dataset(endpoint, limit = 3), silent = TRUE)
if (!inherits(out, "try-error")) {
head(out)
}
}