gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-05 03:11:55 28 4
gpt4 key购买 nike

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

最佳答案

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.

关于r - 如何循环遍历文件夹中的多个栅格并使用点 shapefile 提取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35733177/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com