#' @title Calculates the distance matrix
#'
#' @description Calculates the distance between all populated areas in the spatial dataset.
#'
#' @param spatial_data The spatial dataset to use to calculate the distance matrix.
#'
#' @details This function calculates the distance matrix once to avoid doing it for every generation during an
#' epidemic simulation. This is essential to later speed up the epidemic simulation. The matrix returned
#' only contains distance between cells with non-NA values (i.e. cells with people in them). Note that this
#' function assumes that the distances are in meters in the dataset! If that is not the case, you might want
#' to either convert these, or adjust the output of this function.
#'
#' @return Returns one matrix object containing the distances between all populated areas.
#'
#' @examples
#'
#' #Create a spatial dataset:
#' test_data = raster::raster(nrow=10, ncol=10, xmn=1, xmx=100000, ymn=1, ymx=100000)
#' values(test_data) = runif(100, 1, 1000)
#'
#' dist_mat = calc_dist_mat(test_data)
#'
#' @export
calc_dist_mat = function(spatial_data){
if(class(spatial_data) == "RasterLayer"){
#identify which cells have non-NA values:
populated_areas = which(!is.na(spatial_data@data@values))
num_areas = length(populated_areas)
#extract values once:
x = raster::xFromCell(spatial_data, populated_areas)
y = raster::yFromCell(spatial_data, populated_areas)
} else if(class(spatial_data) == "SpatialPolygonsDataFrame"){
num_areas = length(spatial_data)
#extract values once:
x = sp::coordinates(spatial_data)[,1]
y = sp::coordinates(spatial_data)[,2]
} else{
stop("Incorrect spatial dataset! The dataset must be either a RasterLayer or a SpatialPolygonsDataFrame.")
}
#creates empty distance matrix:
dist_mat = matrix(0, nrow=num_areas, ncol=num_areas)
#loops intelligently, only one calculation per (i,j) pair, and only calculates for non-NA cells:
for (i in 1:(num_areas-1)) {
for (j in (i+1):num_areas) {
x1 = x[i]
y1 = y[i]
x2 = x[j]
y2 = y[j]
dist = sqrt((x1-x2)^2+(y1-y2)^2)
dist_mat[i,j] = dist_mat[j,i] = dist
}
}
#assumes distances are in meters, returns values as kilometers for consistency with calc_dist_kernel function:
dist_mat = dist_mat/1000
return(dist_mat)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.