Learn R Programming

OasisR (version 2.0.1)

perimeter: A function to compute the spatial units' perimeters

Description

The function is based on on rgdal and rgeos packages and can be used with a shape file or an R spatial object (SpatialPolygonsDataFrame).

Usage

perimeter(spatobj = NULL, folder = NULL, shape = NULL)

Arguments

spatobj

- a spatial object (SpatialPolygonsDataFrame) containing geographic information

folder

- a character vector with the folder (directory) name indicating where the shapefile with the geographic information is located.

shape

- a character vector with the name of the shapefile (without the .shp extension) which contains the geographic information

Value

A perimeter vector

See Also

Other spatial functions used for segregation indices computation: area, contig, distance, distcenter, boundaries

Examples

Run this code
# NOT RUN {
 perimeter(segdata)  
foldername <- system.file('extdata', package = 'OasisR')
shapename <- 'segdata'
perimeter(folder = foldername, shape = shapename)
# }

Run the code above in your browser using DataLab