plotHuff {SpatialPosition} | R Documentation |
Plot a Huff Raster
Description
This function plots the raster produced by the
rasterHuff
function.
Usage
plotHuff(x, add = FALSE)
Arguments
x |
raster; output of the |
add |
logical; if TRUE the raster is added to the current plot, if FALSE the raster is displayed in a new plot. |
Value
Display the raster nicely.
See Also
Examples
data(hospital)
# Compute Huff catchment areas from known points (hospital) on a
# grid defined by its resolution
myhuff <- huff(knownpts = hospital, varname = "capacity",
typefct = "exponential", span = 750, beta = 2,
resolution = 100, mask = paris, returnclass = "sf")
# Create a raster of huff values
myhuffraster <- rasterHuff(x = myhuff, mask = paris)
plotHuff(myhuffraster)
[Package SpatialPosition version 2.1.2 Index]