View source: R/points_in_circle.R
points_in_circle | R Documentation |
Find all observations in a data.frame within a circle of a certain radius.
points_in_circle(
data,
lon_center,
lat_center,
lon = lon,
lat = lat,
radius = 200
)
data |
data.frame with at least columns for longitude and latitude. |
lon_center |
numeric value referencing to the longitude of the center of the circle |
lat_center |
numeric value referencing to the latitude of the center of the circle |
lon |
column name in |
lat |
column name in |
radius |
radius (in meters) (defaults to 200m). |
data.frame. Column distance_m
gives the distance to the center
of the circle (in meters).
Martin Haringa
points_in_circle(Groningen, lon_center = 6.571561, lat_center = 53.21326,
radius = 60)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.