Receiver characteristics
rcv_chr.Rd
Receiver characteristics
Value
a data frame object with summary statistics that provide insight into the locations of the receivers in the network receiver array
Examples
# Apply rcv_chr to list of grid resolutions
library(sporeg)
library(dplyr)
library(sf)
library(data.table)
load(system.file("extdata", "res.Rda", package = "sporeg"))
rcv_chars <- lapply(res, rcv_chr) %>%
data.table::rbindlist(., idcol = 'resolution') %>%
left_join(tibble(resolution = 1:4,
res_name = c("100km", "50km", "25km", "10km")),
by = "resolution") %>%
dplyr::mutate(res_name = ordered(res_name,
levels = c("100km", "50km", "25km", "10km")))