Example bowerbird data source: Microsoft US Buildings
Source:R/example_sources.R
bb_source_us_buildings.Rd
This function constructs a data source definition for the Microsoft US Buildings data set. This data set contains 124,885,597 computer generated building footprints in all 50 US states. NOTE: currently, the downloaded zip files will not be unzipped automatically. Work in progress.
Value
a tibble with columns as specified by bb_source
Examples
if (FALSE) { # \dontrun{
## define a configuration and add this buildings data source to it
## only including data for the District of Columbia and Hawaii
cf <- bb_config(tempdir()) %>%
bb_add(bb_source_us_buildings(states = c("District of Columbia", "Hawaii")))
## synchronize (download) the data
bb_sync(cf)
} # }