coords: Coordinates of the Extent of a Raster object

Extreme coordinatesR Documentation

Coordinates of the Extent of a Raster object

Description

These functions return or set the extreme coordinates of a Raster* object; and return them for Spatial* objects.

Usage

xmin(x)
xmax(x)
ymin(x)
ymax(x)

xmin(x, ...) <- value
xmax(x, ...) <- value
ymin(x, ...) <- value
ymax(x, ...) <- value

Arguments

x

Raster* or Extent object

value

numeric. x or y coordinate

...

additional arguments. None implemented

Value

numeric

See Also

extent, dimensions

Examples


r <- raster(xmn=-0.5, xmx = 9.5, ncols=10)
xmin(r)
xmax(r)
ymin(r)
ymax(r)
xmin(r) <- -180
xmax(r) <- 180

raster documentation built on Oct. 14, 2023, 5:07 p.m.