Query$to_sf_tibble
Last updated
Was this helpful?
Last updated
Was this helpful?
Returns a representing the results of a query with a geography variable.
max_results
: int, default NULL
The max number of records to load into the tibble. If not specified, the entire query results will be loaded.
variables
: list(str) | character vector
The specific variables to return, e.g., variables = c("name", "date")
. If not specified, all variables in the query results will be returned.
geography_variable
: str, default NULL
The variable to use as the sf geometry column. If unset, the first geography variable in the tibble will be used.
max_parallelization
: int, default parallely::availableCores()
The maximum parallelization when loading the table. Uses the future::multicore
strategy when supported, falling back to future::multisession
if not.