r - 如何组合两个具有相同CRS和非重叠区域的sf对象?

标签 r dataframe gis spatial sf

假设我有两个 sf 对象具有相同的坐标引用系和非重叠区域,如何正确组合这两个 sf 对象以创建一个 sf 对象?

这是一个例子。

# Load packages
library(tidyverse)
library(sf)

# Load the example sf object
nc <- st_read(system.file("shape/nc.shp", package="sf"))

# print the first three rows of nc in the console
head(nc, 3)
# Simple feature collection with 3 features and 14 fields
# geometry type:  MULTIPOLYGON
# dimension:      XY
# bbox:           xmin: -81.74107 ymin: 36.23388 xmax: -80.43531 ymax: 36.58965
# epsg (SRID):    4267
# proj4string:    +proj=longlat +datum=NAD27 +no_defs
#   AREA PERIMETER CNTY_ CNTY_ID      NAME  FIPS FIPSNO CRESS_ID BIR74 SID74 NWBIR74 BIR79 SID79 NWBIR79                       geometry
# 1 0.114     1.442  1825    1825      Ashe 37009  37009        5  1091     1      10  1364     0      19 MULTIPOLYGON (((-81.47276 3...
# 2 0.061     1.231  1827    1827 Alleghany 37005  37005        3   487     0      10   542     3      12 MULTIPOLYGON (((-81.23989 3...
# 3 0.143     1.630  1828    1828     Surry 37171  37171       86  3188     5     208  3616     6     260 MULTIPOLYGON (((-80.45634 3...
nc 是一个 sf 对象,也是一个数据框。 dplyrtidyverse 中的大多数函数在 sf 对象上运行良好。下面,我使用 slice 函数将 nc 对象拆分为 nc1nc2
# Split the nc object to two sf objects
nc1 <- nc %>% slice(1:50)
nc2 <- nc %>% slice(51:100)

# Print the crs of nc, nc1, and nc2
st_crs(nc)
# Coordinate Reference System:
#   EPSG: 4267 
#   proj4string: "+proj=longlat +datum=NAD27 +no_defs"
st_crs(nc1)
# Coordinate Reference System:
#   EPSG: 4267 
#   proj4string: "+proj=longlat +datum=NAD27 +no_defs"
st_crs(nc2)
# Coordinate Reference System:
#   EPSG: 4267 
#   proj4string: "+proj=longlat +datum=NAD27 +no_defs"

如您所见, ncnc1nc2 都具有相同的坐标引用系统,并且 nc1nc2 之间没有重叠区域。

由于 sf 对象是 data frames ,所以我首先想到组合两个 data frames 是使用 bind_rows 包中的 dplyr 。然而,bind_rows 给了我一个警告。
# Combine nc1 and nc2 with bind_rows
nc_combine <- bind_rows(nc1, nc2)
# Warning messages:
#   1: In bind_rows_(x, .id) :
#     Vectorizing 'sfc_MULTIPOLYGON' elements may not preserve their attributes
#   2: In bind_rows_(x, .id) :
#     Vectorizing 'sfc_MULTIPOLYGON' elements may not preserve their attributes

新对象 nc_combine 仍然是一个 sf 对象和一个 data frame ,其行号和列号与 nc 相同。但是,我无法访问 nc_combine 中的任何信息,并且坐标引用信息似乎消失了。
class(nc_combine)
# [1] "sf"         "data.frame"

dim(nc_combine)
# [1] 100  15

nc_combine
# Error in .subset2(x, i, exact = exact) : 
#   attempt to select less than one element in get1index

换句话说,我的问题是,如何结合 nc1nc2 来重新创建 nc 对象?

最佳答案

这个 rbind 函数自 oooh 1990 年以来一直存在于 R 中:

> rbind(nc1,nc2)
Simple feature collection with 100 features and 14 fields
geometry type:  MULTIPOLYGON
dimension:      XY
bbox:           xmin: -84.32385 ymin: 33.88199 xmax: -75.45698 ymax: 36.58965
epsg (SRID):    4267
proj4string:    +proj=longlat +datum=NAD27 +no_defs
First 10 features:
[etc]

我不知道为什么 bind_rows 不起作用。

关于r - 如何组合两个具有相同CRS和非重叠区域的sf对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55316403/

相关文章:

r - 使用 sprintf 格式化数据框数据

python - 使用 PyQt 显示基本形状文件

java - Geoserver - 栅格/wms 图层多个点/位置或边界框的 GetFeatureInfo

r - CVXR 矩阵与向量的元素乘法

r - 无法在 R Markdown 中使用 Rcpp 引擎

python - Loc Pandas DataFrames 在日期范围内

python pandas - 根据另一列的内容将列中的值更改为 bool 值

python - 在 Python 中重新编码类似于 R ifelse 的变量

python - 检索 geodjango 多面体对象的边界框

r - 使用 R 的非零零假设的相关显着性