This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Make a few assumptions and add noise to latitude/longitude position | |
// Ex, console.log(jitter(-26.4853429150483, -49.072945734375, 5)); | |
// | |
var rad_Earth = 6378.16; | |
var one_degree = (2 * Math.PI * rad_Earth) / 360; | |
var one_km = 1 / one_degree; | |
function randomInRange(from, to, fixed) { |