함수로 작성한 공간 버퍼 (30000 버퍼) 목록이 있습니다 lapply
.
buff.pts <- lapply(1:nrow(pts.prj), FUN=function(l){
buff <- gBuffer(pts.prj[l,], width=1000) ## 1km
return(buff)
}))
> head(buff.pts)
[[1]]
class : SpatialPolygons
features : 1
extent : 307941.8, 311941.8, 4994518, 4998518 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=tmerc +lat_0=0 +lon_0=-73.5 +k=0.9999 +x_0=304800 +y_0=0 +ellps=GRS80 +datum=NAD83 +units=m +no_defs +towgs84=0,0,0
[[2]]
class : SpatialPolygons
features : 1
extent : 307226, 311226, 4991153, 4995153 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=tmerc +lat_0=0 +lon_0=-73.5 +k=0.9999 +x_0=304800 +y_0=0 +ellps=GRS80 +datum=NAD83 +units=m +no_defs +towgs84=0,0,0
이 목록에서 모든 공간 버퍼를 병합하여 30000 버퍼 (또는 기능)가있는 모양 파일을 얻는 방법은 무엇입니까? (이 모양 파일은 함수 aggregate
에 의해 공간 다각형을 집계 하는 함수에서 사용됩니다 .)
이 코드를 테스트했지만이 오류 메시지가 나타납니다.
test <- as.data.frame(do.call("rbind", buff.pts))
Error in as.data.frame(do.call("rbind", buff.pts)) :
error in evaluating the argument 'x' in selecting a method for function 'as.data.frame': Error in validObject(res) :
invalid class “SpatialPolygons” object: non-unique Polygons ID slot values
lapply
사용gBuffer
하는 대신 버퍼를 작성해야하는 이유 는byid = TRUE
무엇입니까?