I have a set of points saved with their respective latitude and longitude in a data frame like this:
points = data.frame(point_id = 1:3,
lat = c("51.7505","51.7502","51.6045"),
long = c("4.8456","4.8453","4.8012")
)
My goal is to create circular polygons with the same defined radius (in this case 200m) around each of these points and export them as a KML file. How would I do that?