findR | R Documentation |
Computes the distance between the centroid and the most distant coordinate of a geographical coordinate set.
findR(coords)
coords |
A matrix or data frame of 2 columns of geographical coordinates |
The distance
polycirc
mydata<-cbind(x=rnorm(20),y=rnorm(20))
radius<-findR(mydata)
centroid<-matrix(colMeans(mydata),ncol=2)
plot(mydata,asp=1)
points(centroid,pch=19,col="red",cex=2)
polygon(polycirc(radius,centroid),border="red")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.