geo_sed: Smallest circle encompassing all latitude and longitude...

Description Usage Arguments Value Author(s) See Also Examples

View source: R/geo_sed.R

Description

Generates a center point and radius that represent the smallest circle that contains all input points

Usage

1
geo_sed(coordinate_matrix)

Arguments

coordinate_matrix

A matrix of latitude and longitude columns and any chosen number of rows to generate a smallest circle arround

Value

Returns a list of three elements named radius, center and making. Radius contains a single value representing the circle radius. Center contains a vector of length 2 representing the circle center latitude and longitude. Making contains a matrix of the latitude and longitude points that lie on the final smallest circle circumference.

Author(s)

Shant Sukljian

See Also

geo_trivial_circle geo_point_dist

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Load required packages
require(mapview)
require(sp)

# Create sample geo dataset
sample_coord <-
   matrix(
        c(
            sample(327131680:419648450, 10) / 10000000,
            sample(-1147301410:-1241938690, 10) / 10000000
        ),
        ncol = 2
    )

# Generate sed center and radius
gsc <- geo_sed(sample_coord)

# Create 80 sided polygon based on gsc's center and radius
gsc_poly <- geo_surround_poly(gsc$center, gsc$radius, 80)

# Join all the points into a single matrix
bound_poly <- rbind(sample_coord, gsc$center, gsc_poly)

# Create SpacialPoints object and pass to mapview for visualization
mapview(
    SpatialPoints(
        bound_poly[,c(2, 1)],
        proj4string = CRS("+proj=longlat +datum=WGS84")
    )
)

geosed documentation built on Sept. 3, 2019, 9:04 a.m.