Skip to contents

A dataset with all names of countries, continents, as included in the Geofabrik database. They are used to download files with ll_osm_download()

Usage

ll_osm_countries

Format

A tibble

continent

Name of the continent

country

Name of the country

link

Link to shapefiles in a tibble

Details

Links to shapefiles are stored as tibbles. Unnest to see them, e.g. ll_osm_countries %>% tidyr::unnest(link) or for a single country: ll_osm_countries %>% dplyr::filter(country == "italy") %>% tidyr::unnest(link)