st_res {stars} | R Documentation |
obtain (spatial) resolution of a stars object
Description
obtain resolution(s) of a stars object: by default only the (absolute) x/y raster dimensions, optionally all delta
dimension parameters
Usage
st_res(x, all = FALSE, absolute = !all)
Arguments
x |
an object of class |
all |
logical; if FALSE return a vector with the x/y raster resolution |
absolute |
logical; only works when |
Value
if all = FALSE
a vector with x/y raster resolutions, otherwise a list with delta values
Examples
st_res(L7_ETMs)
st_res(L7_ETMs, absolute = FALSE)
st_res(L7_ETMs, all = TRUE)
if (require(starsdata)) {
paste0("netcdf/", c("avhrr-only-v2.19810901.nc",
"avhrr-only-v2.19810902.nc",
"avhrr-only-v2.19810903.nc",
"avhrr-only-v2.19810904.nc")) |>
system.file(package = "starsdata") |>
read_stars(quiet = TRUE) -> x
st_res(x) |> print()
st_res(x, all = TRUE) |> print()
}
[Package stars version 0.6-6 Index]