Gets combined Earth Engine and STAC properties.

gd_band_properties(x)

Arguments

x

a geedim.image.ImageAccessor (for geedim >= 2.0.0) or geedim.download.BaseImage (for geedim < 2.0.0) object, such as from gd_image_from_id(). See \link{geedim-versions} for more details.

Value

list. Each element is a list that corresponds to a layer in x, each with one or more elements for properties of that layer.

Examples

# \donttest{
if (gd_is_initialized())
  gd_band_properties(gd_image_from_id("USGS/SRTMGL1_003"))
#> $elevation
#> $elevation$description
#> [1] "Elevation"
#> 
#> $elevation$`gee:units`
#> [1] "m"
#> 
#> $elevation$gsd
#> [1] 30
#> 
#> $elevation$name
#> [1] "elevation"
#> 
#> 
# }