Learn R Programming

shadow (version 0.7.1)

toSeg: Split polygons or lines to segments

Description

Split lines or polygons to separate segments.

Usage

toSeg(x)

Arguments

x

A SpatialLines* or a SpatialPolygons* object

Value

A SpatialLines object where each segment is represented by a separate feature

References

This function uses a modified version of code from the following 'r-sig-geo' post by Roger Bivand: https://stat.ethz.ch/pipermail/r-sig-geo/2013-April/017998.html

Examples

Run this code
# NOT RUN {
seg = toSeg(build[1, ])
plot(seg, col = sample(rainbow(length(seg))))
raster::text(rgeos::gCentroid(seg, byid = TRUE), 1:length(seg))

# Other data structures
toSeg(geometry(build)) # SpatialPolygons
toSeg(boston_sidewalk) # SpatialLinesDataFrame
toSeg(geometry(boston_sidewalk)) # SpatialLinesDataFrame

# }

Run the code above in your browser using DataLab