Sfc nesneleri R paket sf'den nasıl birleştirilir


13

R paketini kullanarak, nesneler sfnasıl birleştirilir sfc? Örneğin, aşağıdaki kod verildiğinde, hem ve hem de geometrileri içeren tek bir sfcnesne nasıl oluşturulur ? (2 olmalıdır.)sfc12sfc1sfc2length(sfc12)

library(sf)
pt1 = st_point(c(0,1))
pt2 = st_point(c(1,1))
sfc1 = st_sfc(pt1) # An sfc object
sfc2 = st_sfc(pt2) # Another sfc object
# sfc12 = ?

İşe yaramayan bazı yaklaşımlar:

sf_sfc(sfc1, sfc2) 
# Error in vapply(lst, class, rep("", 3)) : values must be length 3,
# but FUN(X[[1]]) result is length 2

sfc1 + sfc2 # Seems to add the points coordinate-wise.
# Geometry set for 1 feature 
# geometry type:  POINT
# dimension:      XY
# bbox:           xmin: 1 ymin: 2 xmax: 1 ymax: 2
# epsg (SRID):    NA
# proj4string:    NA
# POINT(1 2)

rbind(sfc1, sfc2)
# [,1]     
# sfc1 Numeric,2
# sfc2 Numeric,2

Yanıtlar:


11

Sadece cbir vektör gibi kullanın :

> (sfc12 = c(sfc1, sfc2))
Geometry set for 2 features 
geometry type:  POINT
dimension:      XY
bbox:           xmin: 0 ymin: 1 xmax: 1 ymax: 1
epsg (SRID):    NA
proj4string:    NA
POINT(0 1)
POINT(1 1)

Ve uzunluk 2:

> length(sfc12)
[1] 2

1
ve çok sayıda sfc nesnesini, örneğin sfc nesneleri listesinden nasıl birleştirirsiniz?
Bernd V.

Bernd'i çözdün mü? Ben de bunu yapmak için uygun bir yol bulamıyorum.
Marco

@Marco, bu sizin ve Bernd için bir sorunsa, tekrarlanabilir bir örnekle yeni bir soru başlatın.
Spacedman

6
@Marco do.call(c, list(sfc1, sfc2))benim için çalıştı.
johannes

1
sfcNesnelerin listesini Reduce(c, sfcs)veya kullanarak birleştirinpurrr::reduce(sfcs , c)
Luke1018

4

TimSalabim en @ dan Çizim cevap sizin eğer, sfcnesneler aynı CRS içindedir kullanabilirsiniz

do.call(rbind, list(sfc1, sfc2)).

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.