st_cells {stars} | R Documentation |
return the cell index corresponding to the location of a set of points
Description
If the object has been cropped without normalization, then the indices return
are relative to the original uncropped extent. See st_crop
Usage
st_cells(x, sf)
Arguments
x |
object of class |
sf |
object of class |
Examples
set.seed(1345)
st_bbox(L7_ETMs) |>
st_as_sfc() |>
st_sample(10) -> pts
(x <- st_cells(L7_ETMs, pts))
# get the pixel values (first band only):
st_as_stars(L7_ETMs)[[1]][x]
# get pixel values for all bands:
st_as_stars(L7_ETMs) |> split() |> sapply(`[`, x)
# compare with st_extract():
st_as_stars(L7_ETMs) |> split() |> st_extract(pts)
[Package stars version 0.6-6 Index]