Learn R Programming

shadow (version 0.1.3)

toSeg: 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
data(build)
seg = toSeg(build[1, ])
plot(seg, col = sample(rainbow(length(seg))))
raster::text(rgeos::gCentroid(seg, byid = TRUE), 1:length(seg))

Run the code above in your browser using DataLab