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
| package com.flightfeather.uav.model.epw
|
| import com.flightfeather.uav.socket.eunm.FactorType
|
| object WeightType {
|
| val prep = 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,
| )
| }
|
|