View source: R/01-jitter-latlong.R
jitter_latlong | R Documentation |
Given a latitude or longitude coordinate, return that coordinate jittered plus or minus a certain maximum amount. This function assumes a spherical earth when calculating the maximum amount to jitter.
jitter_latlong(coord, type = c("lat", "long"), latitude, km = 1)
coord |
The coordinate in degrees |
type |
Whether the coordinate is latitude or longitude |
latitude |
If the coordinate is longitude, then the latitude to use for calculating the maximum amount to jitter. |
km |
The maximum number of kilometers to jitter a point plus or minus. |
The jittered coordinate in degrees.
length_of_degree
jitter_latlong(-73, type = "long", lat = 43, km = 1)
jitter_latlong(42, type = "lat", km = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.