raster (version 2.1-41)

distanceFromPoints: Distance from points

Description

The function calculates the distance from a set of points to all cells of a RasterLayer. The distance unit is in meters if the RasterLayer is not projected (+proj=longlat) and in map units (typically meters) when it is projected.

Usage

distanceFromPoints(object, xy, filename='', ...)

Arguments

object
RasterLayer object
xy
Matrix of x and y coordinates, or a SpatialPoints* object.
filename
Filename for the output RasterLayer
...
Additional arguments as for writeRaster

Value

  • RasterLayer object

See Also

distance, gridDistance, pointDistance

Examples

Run this code
r <- raster(ncol=36,nrow=18)
xy = c(0,0)
dist <- distanceFromPoints(r, xy) 
#plot(dist)

Run the code above in your browser using DataLab