我正在尝试扩展/放大我从人口普查数据集下载的切罗基民族的 shapefile:https : //www2.census.gov/geo/tiger/TIGER2019/AIANNH/ 使用 rgeos 包。我目前拥有的代码是:
library(rgeos)
library(dplyr)
tribe_shp <- readOGR("/location of file/", layer = "tl_2019_us_aiannh")
tribe_shp <- tribe_shp %>% filter(GEOID == "5550R") #filter to cherokee nation
expand_obj <- gBuffer(tribe_shp, byid = F, width = 1000)
>Warning message:
In gBuffer(tribe_shp, byid = F, width = 1000) :
Spatial object is not projected; GEOS expects planar coordinates
plot(expand_obj)
生成的对象丢失了原始 SPDF 的数据框,并且几乎只是一个与原始形状完全不同的圆圈。有什么我想念的吗?