raster (version 2.1-41)

drawExtent: Create an Extent object by drawing on a map

Description

Click on two points of a plot (map) to obtain an object of class Extent ('bounding box')

Usage

drawExtent(show=TRUE, col="red")

Arguments

show
Logical. If TRUE, the extent will be drawn on the map
col
Sets the color of the lines of the extent

Value

  • an object of class Extent

Examples

Run this code
r1 <- raster(nrow=10, ncol=10)
r1[] <- runif(ncell(r1))
plot(r1)
e <- drawExtent()
# now click on the map twice
mean(values(crop(r1, drawExtent())))
# now click on the map twice

Run the code above in your browser using DataLab