-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeo.js
67 lines (60 loc) · 2.07 KB
/
geo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
* Generates number of random geolocation points given a center and a radius.
* @param {Object} center A JS object with lat and lng attributes.
* @param {number} radius Radius in meters.
* @param {number} count Number of points to generate.
* @return {array} Array of Objects with lat and lng attributes.
*/
function generateRandomPoints(center, radius, count) {
var points = [];
for (var i = 0; i < count; i++) {
points.push(generateRandomPoint(center, radius));
}
return points;
}
/**
* Generates number of random GeoJson points given a center and a radius.
* @param {Object} center A JS object with lat and lng attributes.
* @param {number} radius Radius in meters.
* @param {number} count Number of points to generate.
* @return {array} Array of Objects with lat and lng attributes.
*/
function generateRandomGeoJsonPoints(center, radius, count) {
const points = [];
for (let i = 0; i < count; i++) {
let point = generateRandomPoint(center, radius);
let geoPoint = {
"type" : "Point",
"coordinates" : [
point.lng,
point.lat
]
}
points.push(geoPoint);
}
return points;
}
/**
* Generates number of random geolocation points given a center and a radius.
* Reference URL: http://goo.gl/KWcPE.
* @param {Object} center A JS object with lat and lng attributes.
* @param {number} radius Radius in meters.
* @return {Object} The generated random points as JS object with lat and lng attributes.
*/
function generateRandomPoint(center, radius) {
var x0 = center.lng;
var y0 = center.lat;
// Convert Radius from meters to degrees.
var rd = radius / 111300;
var u = Math.random();
var v = Math.random();
var w = rd * Math.sqrt(u);
var t = 2 * Math.PI * v;
var x = w * Math.cos(t);
var y = w * Math.sin(t);
var xp = x / Math.cos(y0);
// Resulting point.
return { 'lat': y + y0, 'lng': xp + x0 };
}
exports.generateRandomPoints = generateRandomPoints;
exports.generateRandomGeoJsonPoints = generateRandomGeoJsonPoints