Description Usage Arguments Value See Also Examples
Get the history of a spatial object.
1 2 3 4 5 6 7 8 9 10 | getHistory(x, ...)
## S4 method for signature 'ANY'
getHistory(x)
## S4 method for signature 'geom'
getHistory(x)
## S4 method for signature 'Raster'
getHistory(x)
|
x |
the object from which to derive the history. |
... |
other arguments. |
A list of the events that lead to x
.
Other getters:
getCRS()
,
getCols()
,
getExtent()
,
getFeatures()
,
getGroups()
,
getLayers()
,
getNames()
,
getPoints()
,
getRes()
,
getRows()
,
getType()
,
getWindow()
1 2 3 4 5 6 7 8 9 10 | library(tibble)
library(magrittr)
geom <- tibble(x = c(40, 70, 70, 50),
y = c(40, 40, 60, 70)) %>%
gs_polygon() %>%
gt_reflect(angle = 45)
getHistory(x = geom)
getHistory(x = gtRasters)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.