-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathexample.json
65 lines (65 loc) · 1.43 KB
/
example.json
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
{
"name": "test1",
"scenario": {
"txOrder": "round_robin",
"name": "test",
"frequency": "120",
"transmitters": [
{
"tx_id": 0,
"tx_type": "stationary",
"minUptime": "30",
"maxUptime": "60",
"minDowntime": "10",
"maxDowntime": "20",
"latitude": "39.20030",
"longitude": "-76.86448"
},
{
"tx_id": 1,
"tx_type": "stationary",
"latitude": "39.341004",
"longitude": "-76.782304",
"minUptime": "45",
"maxUptime": "45",
"minDowntime": "5",
"maxDowntime": "15"
},
{
"tx_id": 2,
"tx_type": "mobile",
"minUptime": "10",
"maxUptime": "60",
"minDowntime": "10",
"maxDowntime": "15",
"pathfile": "tx_example_path.csv",
"speed": "20"
}
],
"receivers": [
{
"rx_id": 0,
"rx_type": "mobile",
"station_id": "DF_ALPHA",
"pathfile": "rx_example_path.csv",
"speed": "25"
},
{
"rx_id": 1,
"rx_type": "stationary",
"station_id": "DF_BRAVO",
"latitude": "39.23757",
"longitude": "-76.87542",
"heading": "10"
},
{
"rx_id": 2,
"rx_type": "stationary",
"station_id": "DF_CHARLIE",
"latitude": "39.24015",
"longitude": "-76.75043",
"heading": "11"
}
]
}
}