gpt4 book ai didi

r - 将 POLYGON 聚合为 MULTIPOLYGON 并保留 data.frame

转载 作者:行者123 更新时间:2023-12-04 18:59:04 27 4
gpt4 key购买 nike

我有一个 sf POLYGON 几何类型的对象。我想使用分组属性 (group_attr) 将这些多边形聚合到 MULTIPOLYGON 中,并将新的 MULTIPOLYGON 对象与属性表连接起来。所以,结果,我会有一个 sf具有两行三列的对象(group_attr、second_attr、geometry)。我已经尝试使用 st_cast - 它适用于 sfc对象,但不在 sf 上对象。是否可以使用 sf 来做到这一点?包裹?

p1 <- rbind(c(0,0), c(1,0), c(3,2), c(2,4), c(1,4), c(0,0))
pol1 <-st_polygon(list(p1))
p2 <- rbind(c(3,0), c(4,0), c(4,1), c(3,1), c(3,0))
pol2 <-st_polygon(list(p2))
p3 <- rbind(c(4,0), c(4,1), c(5,1), c(5,0),c(4,0))
pol3 <-st_polygon(list(p3))
p4 <- rbind(c(3,3), c(4,2), c(4,3), c(3,3))
pol4 <-st_polygon(list(p4))

d <- data.frame(group_attr = c(1, 1, 2, 2),
second_attr = c('forest', 'forest', 'lake', 'lake'))
d$geometry <- st_sfc(pol1, pol2, pol3, pol4)
df<- st_as_sf(d)
plot(df)
df

Simple feature collection with 4 features and 2 fields
geometry type: POLYGON
dimension: XY
bbox: xmin: 0 ymin: 0 xmax: 5 ymax: 4
epsg (SRID): NA
proj4string: NA
group_attr second_attr geometry
1 1 forest POLYGON((0 0, 1 0, 3 2, 2 4...
2 1 forest POLYGON((3 0, 4 0, 4 1, 3 1...
3 2 lake POLYGON((4 0, 4 1, 5 1, 5 0...
4 2 lake POLYGON((3 3, 4 2, 4 3, 3 3))

enter image description here

最佳答案

一种基于 https://github.com/r-spatial/sf/issues/634#issuecomment-365151794 的新方法:

library(dplyr)

df_new <- df %>%
group_by(group_attr) %>%
summarise_all(first)
df_new

Simple feature collection with 2 features and 2 fields
geometry type: MULTIPOLYGON
dimension: XY
bbox: xmin: 0 ymin: 0 xmax: 5 ymax: 4
epsg (SRID): NA
proj4string: NA
# A tibble: 2 x 3
group_attr second_attr geometry
<dbl> <fct> <MULTIPOLYGON>
1 1.00 forest (((3 0, 3 1, 4 1, 4 0, 3 0)), ((0 0, 1 4, 2 4, 3 2, 1 0, 0 0)))
2 2.00 lake (((4 0, 4 1, 5 1, 5 0, 4 0)), ((3 3, 4 2, 4 3, 3 3)))

关于r - 将 POLYGON 聚合为 MULTIPOLYGON 并保留 data.frame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42842635/

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