View source: R/calculate_green_index.R
calculate_green_index | R Documentation |
This function calculates the green index for a given set of OpenStreetMap (OSM) data using DuckDB and Duckplyr. The green index is calculated based on the proximity of highways to green areas and trees.
calculate_green_index(osm_data, crs_code, D = 100, buffer_distance = 120)
osm_data |
List containing OSM data (highways, green_areas, trees). |
crs_code |
Coordinate reference system code for transformations. |
D |
Distance decay parameter (default = 100). |
buffer_distance |
Buffer distance for spatial joins (default = 120). |
A spatial data frame with calculated green index.
osm_data <- get_osm_data("Basel, Switzerland")
green_index <- calculate_green_index(osm_data, 2056)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.