-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent-location-data.js
73 lines (65 loc) · 1.6 KB
/
event-location-data.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
68
69
70
71
72
73
db = db.getSiblingDB('ezyevents');
db.createCollection('events-location');
db.getCollection('events-location').insertMany(
[{
"id": "ab54a04e-fd38-11ed-ac8f-acde48001122",
"location": {
"type": "Point",
"coordinates": [
-93.99781444423192,
44.148409843010036
]
}
},
{
"id": "bc083e5a-fd38-11ed-ac8f-acde48001122",
"location": {
"type": "Point",
"coordinates": [
-93.99852663197638,
44.14805060081124
]
}
},
{
"id": "c928b2c2-fd38-11ed-ac8f-acde48001122",
"location": {
"type": "Point",
"coordinates": [
-93.99991986395847,
44.14669111223655
]
}
},
{
"id": "d0b866b8-fd38-11ed-ac8f-acde48001122",
"location": {
"type": "Point",
"coordinates": [
-93.99842855578945,
44.145459327822856
]
}
},
{
"id": "d8a9c0ec-fd38-11ed-ac8f-acde48001122",
"location": {
"type": "Point",
"coordinates": [
-93.99558824831934,
44.14557397656344
]
}
},
{
"id": "7c45df12-7ba9-11ee-9dc0-acde48001122",
"location": {
"type": "Point",
"coordinates": [
-93.99991986395847,
44.14669111223655
]
}
}]
);
db.getCollection('events-location').createIndex({location:"2dsphere"});