get.centroids: Compute Centroids of Polygons

View source: R/get.centroids.R

get.centroidsR Documentation

Compute Centroids of Polygons

Description

Computes all areas and centroids of the regions of a given map in boundary format.

Usage

get.centroids(map)

Arguments

map

Map object in boundary format.

Value

Matrix of area and centroids.

Author(s)

Felix Heinzl, Thomas Kneib

Examples

germany <- read.bnd(system.file("examples/germany.bnd", package="BayesX"))
centroids <- get.centroids(germany)
centroids[1:10,]

plot(c(2100,3700),c(6800,8500),type="n", xlab="", ylab="")
for(i in 1:10){
   polygon(germany[[i]])
   region <- attr(germany,"names")[i]
   text(x=centroids[i,2]+50, y=centroids[i,3]+30, region, cex=0.7)
}   
points(centroids[1:10,2:3], col='red', pch=16)

BayesX documentation built on Oct. 20, 2023, 9:11 a.m.