-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_data_conflict_2.json
More file actions
38 lines (38 loc) · 966 Bytes
/
Copy pathtest_data_conflict_2.json
File metadata and controls
38 lines (38 loc) · 966 Bytes
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
{
"mission": {
"waypoints": [
{"x": 0, "y": 0, "z": 20, "time": 0},
{"x": 120, "y": 60, "z": 30, "time": 12.5},
{"x": 240, "y": 120, "z": 40, "time": 25}
],
"time_window": {"start": 0, "end": 25}
},
"schedules": [
{
"drone_id": "drone_A",
"waypoints": [
{"x": 90, "y": 45, "z": 28, "time": 10},
{"x": 110, "y": 55, "z": 30, "time": 12}
]
},
{
"drone_id": "drone_B",
"waypoints": [
{"x": 220, "y": 110, "z": 38, "time": 20},
{"x": 250, "y": 125, "z": 40, "time": 22}
]
}
],
"test_scenarios": {
"scenario_A": {
"description": "Conflict - drone_A too close to primary drone at t=10",
"drone_id": "drone_A",
"expected": "conflict detected"
},
"scenario_B": {
"description": "Conflict - drone_B too close to primary drone at t=20",
"drone_id": "drone_B",
"expected": "conflict detected"
}
}
}