View source: R/canopy-height.R
fd_canopy_height | R Documentation |
Download the ETH Global Sentinel-2 10m Canopy Height (2020) or the Meta High Resolution 1m Global Canopy Height Map
fd_canopy_height(
x = NULL,
lon = NULL,
lat = NULL,
model = "eth",
layer = "chm",
crop = FALSE,
mask = FALSE,
merge = FALSE,
quiet = FALSE
)
x |
a |
lon |
a number specifying the longitude of the area where we want the tile |
lat |
a number specifying the latitude of the area where we want the tile |
model |
a string specifying the model to download. One of " |
layer |
a string for the layer to download (valid only for eth). The default " |
crop |
when |
mask |
when |
merge |
if |
quiet |
if |
There are currently two global canopy height models available within this function.
eth: the ETH Global Sentinel-2 10m Canopy Height from the year 2020. Visit https://www.research-collection.ethz.ch/handle/20.500.11850/609802 for more information
meta: the Meta High Resolution 1m Global Canopy Height. Visit \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1016/j.rse.2023.113888")} for more information
Data may be freely used for research, study, or teaching, but be cited appropriately (see references below).
A SpatRaster
or SpatRasterCollection
Lang, Nico, Walter Jetz, Konrad Schindler, and Jan Dirk Wegner. "A high-resolution canopy height model of the Earth." arXiv preprint arXiv:2204.08322 (2022).
Tolan, J., Yang, H.I., Nosarzewski, B., Couairon, G., Vo, H.V., Brandt, J., Spore, J., Majumdar, S., Haziza, D., Vamaraju, J. and Moutakanni, T., 2024. Very high resolution canopy height maps from RGB imagery using self-supervised vision transformer and convolutional decoder trained on aerial lidar. Remote Sensing of Environment, 300, p.113888.
## Not run:
## Get 10m resolution CHM
eth_model <- fd_canopy_height(lon = -7.27, lat = 42.43)
## Get 1m resolution CHM
meta_model <- fd_canopy_height(lon = -7.27, lat = 42.43, model = "meta")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.