Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

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 signature 'ANY'
setWindow(x)

## S4 method for signature '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.

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.

Value

The object x with an update reference window.

See Also

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

Examples

# 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)

geometr

Generate and Modify Interoperable Geometric Shapes

v0.2.10
GPL-3
Authors
Steffen Ehrmann [aut, cre] (<https://orcid.org/0000-0002-2958-0796>), Dan Sunday [cph] (fast point-in-polygon algorithm.)
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.