我有一個sf
POLYGON幾何類型的對象。我想使用分組屬性(group_attr)將這些多邊形聚合爲多個多邊形,並使用屬性表加入一個新的MULTIPOLYGON對象。所以,因此,我將有一個具有兩行三列(group_attr,second_attr,geometry)的sf
對象。我已經嘗試過使用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))
謝謝 - 這工作乾淨。我會注意到,我不得不在這個'emp < - st_is_empty(df);因爲我有一些空的多邊形,所以聚合(df [!emp,],by = list(df $ second_attr [!emp]),FUN = function(x)x [1])。在發了很多頭髮後,我發現我需要首先排除他們。 – thelatemail
如果您認爲這是一個問題,請在sf github頁面上提出問題。 –