Learn R Programming

chronosphere (version 0.4.1)

crop,RasterArray-method: Crop a RasterArray object

Description

The method is inherited from the RasterStack class.

Usage

# S4 method for RasterArray
crop(x, y, ...)

Value

A cropped RasterArray class object.

Arguments

x

a RasterArray class object.

y

an xtent object, or any object from which an Extent object can be extracted (see Details)

...

arguments passed to the crop function.

Examples

Run this code
data(dems)
# crop to Australia
ext <- extent(c(                
  xmin = 106.58,
  xmax = 157.82,
  ymin = -45.23,
  ymax = 1.14 
)) 
# cropping all DEMS (Australia drifted in)
au<- crop(dems, ext)

Run the code above in your browser using DataLab