-
Notifications
You must be signed in to change notification settings - Fork 25
/
radioTemplates.js
104 lines (104 loc) · 2.25 KB
/
radioTemplates.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
var myTemplates = [
{
"site": "4GHz parabolic, 21dBi",
"network": "CloudRF-API-clients-DEMO",
"transmitter": {
"lat": 38.916,
"lon": 1.448,
"alt": 2,
"frq": 4000,
"txw": 1,
"bwi": 0.1
},
"receiver": {
"lat": 0,
"lon": 0,
"alt": 10,
"rxg": 21,
"rxs": -99
},
"antenna": {
"txg": 21,
"txl": 0,
"ant": 0, // 0 is a custom pattern
"azi": 0, // azimuth is overridden by our tool
"tlt": 0,
"hbw": 5,
"vbw": 5,
"pol": "v"
},
"model": {
"pm": 1,
"pe": 2,
"cli": 6,
"ked": 0,
"rel": 95,
"ter": 4
},
"environment": {
"clm": 0,
"cll": 2
},
"output": {
"units": "metric",
"col": "RAINBOW.dBm",
"out": 2,
"ber": 0,
"mod": 0,
"nf": -114,
"res": 10,
"rad": 2
}
},
{
"site": "PMR446 2W handheld",
"network": "CloudRF-API-clients-DEMO",
"transmitter": {
"lat": 38.916,
"lon": 1.448,
"alt": 2,
"frq": 446,
"txw": 2,
"bwi": 0.1
},
"receiver": {
"lat": 0,
"lon": 0,
"alt": 2,
"rxg": 1,
"rxs": -99
},
"antenna": {
"txg": 1,
"txl": 0,
"ant": 39, // dipole
"azi": 0,
"tlt": 0,
"hbw": 0,
"vbw": 0,
"pol": "v"
},
"model": {
"pm": 1,
"pe": 2,
"cli": 6,
"ked": 1,
"rel": 95,
"ter": 4
},
"environment": {
"clm": 0,
"cll": 2
},
"output": {
"units": "metric",
"col": "RAINBOW.dBm",
"out": 2,
"ber": 0,
"mod": 0,
"nf": -114,
"res": 10,
"rad": 3
}
}
];