作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找一种方法来计算列表空间多边形中每个多边形的重心:
我以为用了一个循环,但他给了我第一个多边形,我不知道怎么走,我是 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结果:
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/
我正在使用 Jetpack Compose 创建一个布局,并且有一列。我想在此列中居中项目: Column(modifier = ExpandedWidth) { Text(text
我是一名优秀的程序员,十分优秀!