gpt4 book ai didi

r - 在r中的栅格层上绘制空间点

转载 作者:行者123 更新时间:2023-12-04 10:50:01 26 4
gpt4 key购买 nike

我希望在将矩阵 (temp_matrix) 转换为光栅对象 (tempMap) 后绘制它。此外,我希望在同一个绘图窗口中添加一些经纬度位置可供我使用的点。我尝试了几种方法,但似乎都没有用,因为可用点是纬度/经度的特定位置,而我得到的栅格对象具有不同的范围。请帮我解决这个问题。下面给出了该问题的示例数据。

library(raster)
temp_matrix<-array(NA,c(11,11))
temp_matrix[1,]<-c(NA,NA,NA,NA,NA,NA,NA,0,0,-6,-6)
temp_matrix[2,]<-c(0,0,0,0,NA,NA,1,0,0,0,0)
temp_matrix[3,]<-c(1,0,0,-1,-1,0,0,0,1,0,0)
temp_matrix[4,]<-c(1,1,0,0,0,0,-1,-1,0,0,0)
temp_matrix[5,]<-c(1,NA,NA,NA,NA,-1,-1,-1,0,-1,-1)
temp_matrix[6,]<-c(NA,NA,NA,NA,NA,NA,-1,-1,-1,0,0)
temp_matrix[7,]<-c(NA,NA,NA,NA,NA,NA,NA,0,-1,0,0)
temp_matrix[8,]<-c( NA,NA,NA,NA,NA,NA,NA,0,0,0,-1)
temp_matrix[9,]<-c(NA,NA,NA,NA,NA,NA,NA,-1,0,0,0)
temp_matrix[10,]<-c(NA,NA,NA,NA,NA,NA,NA,NA,-1,-1,-2)
temp_matrix[11,]<-c(NA,NA,NA,NA,NA,NA,NA,NA,-2,-3,-2)
plot(raster(temp_matrix),axes = FALSE,legend=FALSE)
tempMap <- raster(temp_matrix)

# plot the points over this raster layer
point_1<-c(10,10) # should appear on 2nd row from top i.e. over temp_matrix[2,10]
point_2<-c(9,10) # should appear on 3rd row from top i.e. over temp_matrix[3,10]
point_3<-c(1,10) # should appear on lowermost row i.e.over temp_matrix[11,10]

最佳答案

您需要设置所需的范围,而不是依赖于默认值。

作为光栅状态的帮助

## S4 method for signature 'matrix'
raster(x, xmn=0, xmx=1, ymn=0, ymx=1, crs=NA, template=NULL)

  • xmn :: minimum x coordinate (left border)

  • xmx :: maximum x coordinate (right border)

  • ymn :: minimum y coordinate (bottom border)

  • ymx :: maximum y coordinate (top border)

您可以将 xmnxmxymnymx 设置为您想要的值 (1, 11 , 1, 11) 在这种情况下)

tempMap <- raster(temp_matrix, xmn = 1, xmx = 11, ymn = 1, ymx=11)
plot(tempMap,axes = FALSE,legend=FALSE)
points(c(10,9,1), c(10,10,10))

关于r - 在r中的栅格层上绘制空间点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14718915/

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