gpt4 book ai didi

r - 计算多边形列表的整个重心/几何中心

转载 作者:行者123 更新时间:2023-12-01 20:16:51 25 4
gpt4 key购买 nike

我正在寻找一种方法来计算列表空间多边形中每个多边形的重心:

我以为用了一个循环,但他给了我第一个多边形,我不知道怎么走,我是 R 新手,有人可以帮助我吗代码:

for ( i in 1:length(polys1_T)) { 
xx=mean(coordinates(polys1_T[[i]])[,1])
yy=mean(coordinates(polys1_T[[i]])[,2])
aa<-as.data.frame(cbind(xx,yy))
}

编辑:

代码:

 inter1 <- read.table("c:/inter1.csv", header=TRUE)

# add a category (required for later rasterizing/polygonizing)
inter1 <- cbind(inter1,
cat
= rep(1L, nrow(inter1)), stringsAsFactors = FALSE)

# convert to spatial points
coordinates(inter1) <- ~long + lat

# gridify your set of points
gridded(inter1) <- TRUE

# convert to raster
r <- raster(inter1)

# convert raster to polygons
sp <- rasterToPolygons(r, dissolve = T)
plot(sp)
# addition transformation to distinguish well the set of polygons
polys <- slot(sp@polygons[[1]], "Polygons")
# plot
plot(sp, border = "gray", lwd = 2) # polygonize result

inter1.csv结果:

enter image description here

Polys 是 9 个多边形的列表:是否可以计算每个多边形的重心?

最佳答案

rgeos::gCentroid看看。您可以通过多种方式应用它。如果您有一个 SpatialPolygons 对象,例如通过调用 readOGR,您可以执行以下操作:

map <- readOGR(dsn, layer)
centers <- data.frame(gCentroid(map, byid=TRUE))

从中获取所有质心。

顺便说一句:虽然准确,但更常见的术语是“几何中心”/“质心”与“重心”

编辑

对于普通的多边形(“困难”方式,但稍微更准确):

library(rgdal)
library(sp)
library(PBSmapping)
library(maptools)

do.call("rbind", lapply(polys, function(x) {
calcCentroid(SpatialPolygons2PolySet(SpatialPolygons(list(Polygons(list(x), ID=1)))))
}))[,3:4]

## X Y
## 1 5.8108434 20.16466
## 2 -3.2619048 29.38095
## 3 5.5600000 34.72000
## 4 3.8000000 32.57037
## 5 6.3608108 32.49189
## 6 -2.2500000 31.60000
## 7 -8.1733333 27.61333
## 8 0.3082011 27.44444
## 9 8.6685714 26.78286

并且,使用几乎等效的手动方法:

do.call("rbind", lapply(polys, function(x) {
data.frame(mean(coordinates(x)[,1]), mean(coordinates(x)[,2]))
}))

## mean.coordinates.x....1.. mean.coordinates.x....2..
## 1 5.819892 20.15484
## 2 -3.242593 29.37778
## 3 5.539474 34.71579
## 4 3.815517 32.56552
## 5 6.323034 32.47191
## 6 -2.230952 31.60000
## 7 -8.140476 27.61905
## 8 0.350000 27.40885
## 9 8.746825 26.92063

每种方法都会为您提供每个列表元素的质心(在您提供的示例中,有 9 个(而不是 5 个))。

如果您有一个庞大的列表,请考虑使用 data.table 包中的 rbindlist(速度更快+内存效率更高)。

关于r - 计算多边形列表的整个重心/几何中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26539533/

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