Get bounding box for set of coordinate points

get_coord_bounding_box(lat, lng)

Arguments

lat

A vector of latitudes

lng

A vector of longitudes

Value

A list of length 2, containing the bottom-left (named "bl") and top-right (named "tr") coordinates of the bounding box.

Examples

df <- data.frame( lat = c(44.05771, 44.18475), lng = c(-73.99212, -73.81515) ) get_coord_bounding_box(df$lat, df$lng)
#> $bl #> lat lng #> 44.05771 -73.99212 #> #> $tr #> lat lng #> 44.18475 -73.81515 #>