% Generated by roxygen2: do not edit by hand % Please edit documentation in R/fortify-spatial.r \name{fortify.sp} \alias{fortify.sp} \alias{fortify.SpatialPolygonsDataFrame} \alias{fortify.SpatialPolygons} \alias{fortify.Polygons} \alias{fortify.Polygon} \alias{fortify.SpatialLinesDataFrame} \alias{fortify.Lines} \alias{fortify.Line} \title{Fortify method for classes from the sp package.} \usage{ \method{fortify}{SpatialPolygonsDataFrame}(model, data, region = NULL, ...) \method{fortify}{SpatialPolygons}(model, data, ...) \method{fortify}{Polygons}(model, data, ...) \method{fortify}{Polygon}(model, data, ...) \method{fortify}{SpatialLinesDataFrame}(model, data, ...) \method{fortify}{Lines}(model, data, ...) \method{fortify}{Line}(model, data, ...) } \arguments{ \item{model}{\code{SpatialPolygonsDataFrame} to convert into a dataframe.} \item{data}{not used by this method} \item{region}{name of variable used to split up regions} \item{...}{not used by this method} } \description{ To figure out the correct variable name for region, inspect \code{as.data.frame(model)}. } \examples{ if (require("maptools")) { sids <- system.file("shapes/sids.shp", package="maptools") nc1 <- readShapePoly(sids, proj4string = CRS("+proj=longlat +datum=NAD27")) nc1_df <- fortify(nc1) } } \keyword{internal}