| arc.data2sp {arcgisbinding} | R Documentation |
Convert an ArcGIS data.frame to the equivalent sp data frame
type. The output types that can be generated: SpatialPointsDataFrame,
SpatialLinesDataFrame, or SpatialPolygonsDataFrame.
arc.data2sp(x)
x |
|
require(sp)
d <- arc.open(system.file("extdata", "ca_ozone_pts.shp",
package="arcgisbinding"))
df <- arc.select(d, 'ozone')
sp.df <- arc.data2sp(df)
## Not run: spplot(sp.df)