R语言 如何循环遍历文件夹中的多个栅格并使用点shapefile提取值

kx1ctssn  于 2023-03-15  发布在  其他
关注(0)|答案(1)|浏览(202)

如何循环遍历文件夹中的所有栅格(TIFF),并使用具有多个坐标的点shapefile提取值,然后将输出作为 Dataframe ?

jmo0nnb3

jmo0nnb31#

library(raster)
library(rgdal)

files <- list.files(path=".", pattern="tif$", full.names=TRUE) # select all the tiff files in the directory
s <- stack(files) # stack all of them using r raster library
shp <- shapefile("points.shp") # read the point shape file
ext <- extract(s, shp) # extract the values from raster stack.

相关问题