st_is | R Documentation |
test equality between the geometry type and a class or set of classes
st_is(x, type)
x |
object of class |
type |
character; class, or set of classes, to test against |
st_is(st_point(0:1), "POINT")
sfc = st_sfc(st_point(0:1), st_linestring(matrix(1:6,,2)))
st_is(sfc, "POINT")
st_is(sfc, "POLYGON")
st_is(sfc, "LINESTRING")
st_is(st_sf(a = 1:2, sfc), "LINESTRING")
st_is(sfc, c("POINT", "LINESTRING"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.