-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpressureMappings.js
48 lines (48 loc) · 1.09 KB
/
pressureMappings.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
/*
{"0": "Atmospheric"},
{"1": "Water Pressure"},
{"2": "Steam Pressure"},
{"3": "Compressed Air"},
{"4": "Hydraulic"},
{"5": "Filter"},
{"6": "AltimeterSetting"},
{"7": "Oil"},
{"8": "Fuel"}
*/
module.exports = {
Atmospheric: {
path: 'environment.outside.pressure'
},
Water: {
path: 'water.default.pressure',
pathWithIndex: 'water.<index>.pressure'
},
Steam: {
path: 'steam.default.pressure',
pathWithIndex: 'steam.<index>.pressure'
},
'Compressed Air': {
path: 'compressedAir.default.pressure',
pathWithIndex: 'compressedAir.<index>.pressure'
},
Hydraulic: {
path: 'hydraulic.default.pressure',
pathWithIndex: 'hydraulic.<index>.pressure'
},
Filter: {
path: 'filter.default.pressure',
pathWithIndex: 'filter.<index>.pressure'
},
AltimeterSetting: {
path: 'altimetersetting.default.pressure',
pathWithIndex: 'altimetersetting.<index>.pressure'
},
Oil: {
path: 'oil.default.pressure',
pathWithIndex: 'oil.<index>.pressure'
},
Fuel: {
path: 'fuel.default.pressure',
pathWithIndex: 'fuel.<index>.pressure'
}
}