Learn R Programming

redlistr (version 1.0.1)

getArea: Calculates the Area of a Raster.

Description

getArea reports the area of a RasterLayer object using the pixel counting method, or the area of a SpatialPolygons object using rgeos::gArea

Usage

getArea(x, value.to.count)

Arguments

x

Either a RasterLayer or SpatialPolygons object. For a RasterLayer, no data value should be NA

value.to.count

Optional. Value of the cells in a RasterLayer to be counted

Value

The total area of the cells of interest in km2

See Also

Other Change functions: getAreaLoss, getDeclineStats

Examples

Run this code
# NOT RUN {
crs.UTM55S <- '+proj=utm +zone=55 +south +ellps=WGS84 +datum=WGS84 +units=m +no_defs'
r1 <- raster(ifelse((volcano<130), NA, 1), crs = crs.UTM55S)
extent(r1) <- extent(0, 6100, 0, 8700)
a.r1 <- getArea(r1) # area of all non-NA cells in r1
# }

Run the code above in your browser using DataLab