View source: R/nlcd_polygon_functions.R
get_nlcd_data_point_buffer | R Documentation |
get NLCD data for specified buffer radius around point data
get_nlcd_data_point_buffer(point_data, buffer_m)
point_data |
data.frame with columns 'lat' and 'lon' |
buffer_m |
desired buffer radius in meters |
a data.frame identical to the input data.frame but with appended percentage NLCD values (and in long format) all available products and years will be returned.
if (FALSE) { point_data <- data.frame( id = c('1a', '2b', '3c'), lat = c(39.19674, 39.19674, 39.28765), lon = c(-84.582601, -84.582601, -84.510173) ) get_nlcd_data_polygons(point_data, buffer_m = 400) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.