gpt4 book ai didi

r - 在 R : Error extent does not overlap 中使用多边形裁剪栅格

转载 作者:行者123 更新时间:2023-12-04 02:00:03 25 4
gpt4 key购买 nike

我想使用我在 ArcGIS 中制作的多边形 shapefile 裁剪栅格堆栈,但是我得到了范围不重叠的错误。

首先我创建光栅堆栈:

test1 < stack("C:/mydir/test1.tif")

定义投影
myCRS <- test1@crs

然后读取shapefile
myExtent <- readShapePoly("C:/mydir/loc1.shp", verbose=TRUE, proj4string=myCRS)

庄稼
myCrop <- crop(test1, myExtent)
Error in .local(x, y, ...) : extents do not overlap

我已经寻找了一个解决方案,但我只发现投影可能是问题所在,但是它们肯定都在同一个 CRS 中:
> test1$test1.1
class : RasterLayer
band : 1 (of 4 bands)
dimensions : 10980, 10980, 120560400 (nrow, ncol, ncell)
resolution : 10, 10 (x, y)
extent : 6e+05, 709800, 5690220, 5800020 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=utm +zone=31 +datum=WGS84 +units=m +no_defs +ellps=WGS84
+towgs84=0,0,0
data source : C:\mydir\test1.tif
names : test1.1
values : 0, 65535 (min, max)

> myExtent
class : SpatialPolygonsDataFrame
features : 1
extent : 499386.6, 517068.2, 6840730, 6857271 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=utm +zone=31 +datum=WGS84 +units=m +no_defs +ellps=WGS84
+towgs84=0,0,0
variables : 2
names : Shape_Leng, Shape_Area
min values : 67444.6461177, 283926851.657
max values : 67444.6461177, 283926851.657

最佳答案

该消息是不言自明的。你的范围不重叠......这里如何检查它:

library(raster)
ext.ras <- extent(6e+05, 709800, 5690220, 5800020)
ext.pol <- extent(499386.6, 517068.2, 6840730, 6857271)


plot(ext.ras, xlim = c( 499386.6,709800), ylim= c(5690220,6857271), col="red")
plot(ext.pol, add=T, col="blue")

我已经根据您问题中的数据创建了范围对象。您会在左上角看到一个范围,而在右下角看到另一个范围。你有没有试过在 QGIS 中阅读这两个文件,你可能很容易看到它。

enter image description here

如果它们真的应该重叠,那么我会怀疑您阅读 shapefile 的方式。代替
myExtent <- readShapePoly("C:/mydir/loc1.shp", verbose=TRUE, proj4string=myCRS)

用 :
library(rgdal)
myExtent <- readOGR("C:/mydir","loc1.shp")
myExtent <- spTRansform(myExtent, CRS(proj4string(test1)))

关于r - 在 R : Error extent does not overlap 中使用多边形裁剪栅格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47885065/

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