图层不会在 r 中使用栅格包进行栅格化



我在使用R.中的光栅包光栅化形状文件时遇到问题

shp<-shapefile(ZoneShape);
lcRas<-raster(lcRaster);
r<-raster(ncol=ncol(lcRas), nrow=nrow(lcRas), crs=CRS);
res(r)<-res(lcRas);
extent(r)<-extent(lcRas);
>r
class       : RasterLayer 
dimensions  : 22610, 27959, 632152990  (nrow, ncol, ncell)
resolution  : 1, 1  (x, y)
extent      : 554739, 582698, 3837197, 3859807  (xmin, xmax, ymin, ymax)
coord. ref. : +proj=utm +zone=15 +ellps=GRS80 +datum=NAD83 +units=m +no_defs +towgs84=0,0,0
shp$GID<-1:nrow(shp);
> shp
class       : SpatialPolygonsDataFrame 
nfeatures   : 1 
extent      : 554838, 582597.6, 3837297, 3859707  (xmin, xmax, ymin, ymax)
coord. ref. : +proj=utm +zone=15 +datum=NAD83 +units=m +no_defs +ellps=GRS80 +towgs84=0,0,0 
nvariables  : 14
names       : SP_ID,              NAME, Shape_Leng, Shape_Area, GID
>zoneRas<-rasterize(shp, r, "GID")

返回以下错误:

trying to get slot "coords" from an object of a basic class ("NULL") with no slots.

有人能看到我在这里遗漏了什么吗?

感谢

这是当SpatialPolygonsDataFrame对象只有一个几何体时发生的错误。这是一个解决方案:

  zoneRas <- rasterize(shp, r, shp$GID)

相关内容

  • 没有找到相关文章

最新更新