-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatastructures
50 lines (39 loc) · 948 Bytes
/
datastructures
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
var scenario_details = JSON.stringify({
"name": "test envs",
"description": "first simulation"
});
var location_details = JSON.stringify({
"name": "Login test",
"description": "problem",
"lat": 999,
"lng": 999,
"location_type": "outdoor"
});
var video_details = JSON.stringify({
"name": "Three-way junction",
"description": "threeway junction option 1",
"url": "/Locations/V1",
"recorded": null
});
var embedding_details = JSON.stringify({
"overlay_id": "7",
"video_id": "22",
"x": "0",
"y": "0",
"z": "0",
"description": "stopsign in the Innenstadt video",
"rz": "0",
"rx": "0",
"ry": "0",
"h": "2",
"w": "3",
"display": "true",
"d": "0"
});
var recorded_at_details = JSON.stringify({
"location_id": "24",
"video_id": "22",
"description": "test",
"preferred": "yes"
});
module.exports = { scenario_details, location_details, video_details, embedding_details, recorded_at_details }