BigQuery mirror of the Chicago crime feed
Source:R/ingest_chicago.R
morie_ingest_chicago_crime_bigquery.RdConvenience wrapper around
morie_ingest_bigquery_table that pulls
bigquery-public-data.chicago_crime.crime - the Google
BigQuery public-data mirror of the Socrata feed served by
morie_ingest_chicago_crime. Use this path when you
want SQL-side filtering or the full historical depth of the dataset
without paging through SoQL.
Usage
morie_ingest_chicago_crime_bigquery(
where = NULL,
year = NULL,
limit = NULL,
select = "*",
billing_project = NULL,
page_size = 10000L,
max_rows = Inf,
quiet = TRUE
)Arguments
- where
Optional raw SQL
WHEREclause (no leadingWHERE).- year
Convenience shortcut: when
whereisNULLandyearis set, appliesyear = <year>.- limit
Optional
LIMIT.- select
Projection list (default
"*").- billing_project, page_size, max_rows, quiet
Forwarded to
morie_ingest_bigquery_table.