accessibility_greenspace: Generate Accessibility Map for Green Spaces

View source: R/accessibility_greenspace.R

accessibility_greenspaceR Documentation

Generate Accessibility Map for Green Spaces

Description

This function generates a leaflet map that shows green spaces accessible within a specified walking time from a given location. The location is specified by its latitude and longitude coordinates.

Usage

accessibility_greenspace(
  green_area_data,
  location_lat,
  location_lon,
  max_walk_time = 15,
  green_color = "green",
  location_color = "blue",
  isochrone_color = "viridis"
)

Arguments

green_area_data

A list containing green area data, usually obtained from the get_osm_data function.

location_lat

Numeric latitude of the specified location.

location_lon

Numeric longitude of the specified location.

max_walk_time

Maximum walking time in minutes. Default is 15.

green_color

Color for the green areas on the map. Default is "green".

location_color

Color for the specified location on the map. Default is "blue".

isochrone_color

Color palette for the isochrone lines. Default is "viridis".

Value

A leaflet map object.

Examples

## Not run: 
  green_area_data <- data$green_areas
  accessibility_greenspace(data, 47.56, 7.59)

## End(Not run)

greenR documentation built on June 29, 2024, 9:07 a.m.