geos_combine | R Documentation |
sftime
objects)Combine or union feature geometries (including sftime
objects)
## S3 method for class 'sftime'
st_union(x, y, ..., by_feature = FALSE, is_coverage = FALSE)
x |
An object of class |
y |
An object of class |
... |
See |
by_feature |
See |
is_coverage |
See |
See geos_combine
.
If y
is missing, st_union(x)
returns a single geometry
with resolved boundaries, else the geometries for all unioned pairs of
x[i]
and y[j]
.
# union simple features in an sftime object
g <- st_sfc(st_point(c(1, 2)), st_point(c(1, 3)), st_point(c(2, 3)),
st_point(c(2, 1)), st_point(c(3, 1)))
tc <- Sys.time() + 1:5
x <- st_sftime(a = 1:5, g, time = tc)
# only x provided (no y)
plot(st_union(st_buffer(x, dist = 1)))
# with arguments x and y provided
plot(st_union(st_buffer(x, dist = 1), st_buffer(x, dist = 0.5)), "a")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.