get_osm_data | R Documentation |
This function downloads OpenStreetMap (OSM) data for a specified location or bounding box. The OSM data includes information about highways, green areas, and trees in the specified location. It requires an internet connection. If using RStudio Cloud, or if you need to use a private Nominatim server, you can specify an alternative server URL and credentials (username and password).
get_osm_data(
bbox,
server_url = "https://nominatim.openstreetmap.org/search",
username = NULL,
password = NULL
)
bbox |
A string representing the bounding box area or the location (e.g., "Lausanne, Switzerland"). |
server_url |
Optional string representing an alternative Nominatim server URL. |
username |
Optional string for username if authentication is required for the server. |
password |
Optional string for password if authentication is required for the server. |
A list containing:
highways |
An sf object with the OSM data about highways in the specified location. |
green_areas |
An sf object with the OSM data about green areas, such as parks, forests, gardens, and nature reserves, in the specified location. |
trees |
An sf object with the OSM data about trees in the specified location. |
osm_data <- get_osm_data("Lausanne, Switzerland")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.