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
| package com.flightfeather.uav.model.epw
|
| import com.flightfeather.uav.socket.eunm.FactorType
|
| object WeightType {
|
| // 走航监测
| val prepUnderWay = listOf(
| FactorType.NO2.des,
| FactorType.CO.des,
| FactorType.H2S.des,
| FactorType.SO2.des,
| FactorType.O3.des,
| // FactorType.PM25.des,
| // FactorType.PM10.des,
| FactorType.VOC.des,
| FactorType.WIND_SPEED.des
| )
|
| // 定点监测
| val prepFixed = listOf(
| FactorType.NO2.des,
| FactorType.CO.des,
| FactorType.H2S.des,
| FactorType.SO2.des,
| FactorType.O3.des,
| FactorType.PM25.des,
| FactorType.PM10.des,
| FactorType.VOC.des,
| FactorType.WIND_SPEED.des
| )
|
| val weightType = listOf(
| FactorType.NO2,
| FactorType.CO,
| FactorType.H2S,
| FactorType.SO2,
| FactorType.O3,
| FactorType.PM25,
| FactorType.PM10,
| FactorType.VOC,
| )
| }
|
|