Skip to content
Prev 2696 / 29559 Next

"Abridged" description of SpatialPolygonsDataFrame objects?

If "d" is a SPolyDF

## first row/object
d[1,]
str(d[1,])

## the first Polygons object itself  (Polygons can be of many)
d at polygons[[1]]
str(d at polygons[[1]])

## the first Polygon in the first Polygons object
d at polygons[[1]]@Polygons[[1]]
str(d at polygons[[1]]@Polygons[[1]])
Agustin Lobo wrote: