Query$to_sf_tibble

Query$to_sf_tibble(max_results=NULL, variables=NULL, geography_variable=NULL) → SF tibble

Returns a Simple Features tibble representing the results of a query with a geography variable.

Parameters:

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.

Returns:

sf tibble

Last updated