fd_forest_extent_glad {forestdata} | R Documentation |
Download the Forest Extent raster from the Global Land Analysis & Discovery by using a vectorial object or a pair of coordinates (latitude, longitude).
fd_forest_extent_glad(
x = NULL,
lon = NULL,
lat = NULL,
year = 2020,
crop = FALSE,
...
)
x |
An |
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 |
year |
Year of the forest extent data. One of 2000, 2020 or 'all' |
crop |
When |
... |
additional arguments passed to the 'terra::crop()' function |
The Forest Extent Map is a product offered by the Global Land Analysis & Discovery organization. The spatial resolution of the product is 0.00025º (approximately 30 meters at the Equator), and it's distributed in tiles of 10ºx10º. Pixels with forest height > 5 meters are classified as the forest class.
Note that each tile is stored as a raster file of 1.5 GB, so for big extensions the function might take some time to retrieve the data.
SpatRaster
object
P. Potapov, X. Li, A. Hernandez-Serna, A. Tyukavina, M.C. Hansen, A. Kommareddy, A. Pickens, S. Turubanova, H. Tang, C.E. Silva, J. Armston, R. Dubayah, J. B. Blair, M. Hofton (2020) Mapping and monitoring global forest canopy height through integration of GEDI and Landsat data. Remote Sensing of Environment, 112165. https://doi.org/10.1016/j.rse.2020.112165
# Get tile for Galicia (Spain)
galicia_forest_extent <- fd_forest_extent_glad(lon = -7.8, lat = 42.7, year = 2020)