Come combinare oggetti sfc dal pacchetto R sf


12

Usando il pacchetto R sf, come si combinano gli sfcoggetti? Ad esempio, dato il seguente codice, come si potrebbe creare un singolo sfcoggetto sfc12che include le geometrie di entrambi sfc1e sfc2? ( length(sfc12)dovrebbe essere 2.)

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 = ?

Alcuni approcci che non funzionano:

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

Risposte:


11

Basta usare ccome se fosse un vettore:

> (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)

E la lunghezza è 2:

> length(sfc12)
[1] 2

1
e come combineresti numerosi oggetti sfc, ad esempio da un elenco di oggetti sfc?
Bernd V.,

l'hai risolto Bernd? Inoltre non sto trovando un modo conveniente per farlo.
Marco

@Marco se questo è un problema per te e Bernd, inizia una nuova domanda con un esempio riproducibile.
Spacedman

6
@Marco ha do.call(c, list(sfc1, sfc2))lavorato per me.
johannes

1
Combina un elenco di sfcoggetti usando Reduce(c, sfcs)opurrr::reduce(sfcs , c)
Luke1018

3

Attingendo dalla risposta di @ TimSalabim , se i tuoi sfcoggetti sono nello stesso CRS che puoi usare

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

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.