在 R terra 提取物中使用 xy=TRUE

时间:2021-07-19 20:39:34

标签: r terra

我正在尝试提取像素的质心坐标,我的点落在该像素的范围内。这是一个可重现的例子

library(terra)
filename <- system.file("ex/elev.tif", package="terra")
r <- rast(filename)

#Create random points in raster
points<-spatSample(r, 10, as.points=TRUE)
crds<-crds(points)
#Extract the coordinates of the random points
crds
            x        y
 [1,] 5.904167 49.97083
 [2,] 6.262500 50.12917
 [3,] 6.512500 49.63750
 [4,] 6.462500 50.03750
 [5,] 6.137500 49.90417
 [6,] 6.520833 49.96250
 [7,] 5.904167 49.52083
 [8,] 6.187500 49.68750
 [9,] 6.212500 49.68750
[10,] 5.962500 49.86250

#Extract pixel values and centroids of pixels
values<-extract(r, points, xy=TRUE)
values

ID  elevation          x         y
1 373.000000   6.462500  49.52083
2   5.904167  50.037500 367.00000
3  49.970833 368.000000   6.18750
4        NaN   6.137500  49.68750
5   6.262500  49.904167 392.00000
6  50.129167        NaN   6.21250
7        NaN   6.520833  49.68750
8   6.512500  49.962500 431.00000
9  49.637500 305.000000   5.96250
10        NaN   5.904167  49.86250

我希望提取的 x y 坐标与原始坐标仅略有不同,但这些值似乎都混淆了。我是在代码中犯了错误还是有其他方法可以获取这些值?

2 个答案:

答案 0 :(得分:0)

正如@Tung 所指出的,这是目前一个未解决的问题,似乎已在开发版本中解决。

install.packages('terra', repos='https://rspatial.r-universe.dev')

不幸的是,开发版本在我的电脑上出现了一些问题。由于时间不够,这里使用我的可重现示例进行了一个不太漂亮的工作。

filename <- system.file("ex/elev.tif", package="terra")
r <- rast(filename)

#Create random points in raster
points<-spatSample(r, 10, as.points=TRUE)
crds<-crds(points)

cell<-cellFromXY(r, crds)
xy<-xyFromCell(r, cell)
xyvect<-vect(as.data.frame(xy), type="points",geom= c("x", "y"),crs(r))
#points now contains my initial coordinates and xyvect contains 
#the pixel centroid, which is this case are the same, but I tested it
#with an actual dataset and it works.

答案 1 :(得分:0)

这适用于当前的 CRAN 版本 (1.3-4):

library(terra)
terra version 1.3.4
filename <- system.file("ex/elev.tif", package="terra")
r <- rast(filename)
 
set.seed(7222021)
points <- spatSample(r, 5, as.points=TRUE)
crds(points)
#            x        y
#[1,] 5.929167 49.67083
#[2,] 6.279167 49.94583
#[3,] 6.487500 49.84583
#[4,] 6.004167 49.49583
#[5,] 6.379167 49.62083
 
extract(r, points, xy=TRUE)
#  ID elevation        x        y
#1  1       323 5.929167 49.67083
#2  2       NaN 6.279167 49.94583
#3  3       NaN 6.487500 49.84583
#4  4       358 6.004167 49.49583
#5  5       283 6.379167 49.62083

要更新 terra,您可以运行 update.packages()。或者,如果您只想更新 terra,您应该先更新 Rcpp

install.packages(c('Rcpp', 'terra'))