Learn R Programming

geometr (version 0.2.10)

setWindow: Set the reference window of a spatial object.

Description

Set the reference window of a spatial object.

Usage

setWindow(x, to, ...)

# S4 method for ANY setWindow(x)

# S4 method for geom setWindow(x, to = NULL)

Arguments

x

the object for which to set a new reference window.

to

any suitable data-structure that contains the minimum and maximum values in x and y-dimension to which the reference window shall be set, see Details.

...

other arguments.

Value

The object x with an update reference window.

Details

Possible data-structures are

  • an object of class Extent,

  • an object of class bbox,

  • a table with two columns (named x and y) containing the minimum and maximum values for each dimension.

See Also

Other setters: setCRS(), setFeatures(), setGroups(), setHistory()

Examples

Run this code
# NOT RUN {
# create a polygon programmatically
coords <- data.frame(x = c(40, 70, 70, 50),
                     y = c(40, 40, 60, 70))
(aGeom <- gs_polygon(anchor = coords))
visualise(aGeom)

window <- data.frame(x = c(0, 80),
                     y = c(0, 80))
(aGeom <- setWindow(x = aGeom, to = window))

visualise(aGeom)
# }

Run the code above in your browser using DataLab