-
Notifications
You must be signed in to change notification settings - Fork 0
/
features_default.json
121 lines (117 loc) · 2.9 KB
/
features_default.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"date_attribute": "date",
"time_attribute": "time",
"features": [
{
"name": "pm",
"source_attribute": "pm25",
"aggregation": {
"type": "mean"
}
},
{
"name": "pmshift",
"source_attribute": "pm25",
"aggregation": {
"type": "mean"
},
"shift": 1
},
{
"name": "rain",
"source_attribute": "rain",
"aggregation": {
"type": "mean"
}
},
{
"name": "rain1",
"source_attribute": "rain",
"aggregation": {
"type": "mean",
"start": "07:00:00",
"end": "12:00:00"
}
},
{
"name": "rain2",
"source_attribute": "rain",
"aggregation": {
"type": "mean",
"start": "12:30:00",
"end": "16:00:00"
}
},
{
"name": "rain3",
"source_attribute": "rain",
"aggregation": {
"type": "mean",
"start": "16:30:00",
"end": "06:30:00"
}
},
{
"name": "windSpeed",
"source_attribute": "windSpeed",
"aggregation": {
"type": "mean",
"start": "05:00:00",
"end": "17:00:00"
}
},
{
"name": "windSpeed2",
"source_attribute": "windSpeed",
"aggregation": {
"type": "mean",
"start": "16:30:00",
"end": "06:30:00"
}
},
{
"name": "tdiff1",
"source_attribute": "temperature",
"aggregation": {
"type": "mean",
"start": "05:00:00",
"end": "17:00:00"
},
"delta": 1
},
{
"name": "tdiff2",
"source_attribute": "temperature",
"aggregation": {
"type": "mean",
"start": "17:30:00",
"end": "04:30:00"
},
"delta": 1
},
{
"name": "temp_grad",
"source_attribute": "temperature",
"aggregation": {
"type": "delta",
"start": "04:00:00",
"end": "12:00:00"
}
},
{
"name": "temperature",
"source_attribute": "temperature",
"aggregation": {
"type": "mean"
}
},
{
"name": "weekday",
"source_attribute": "pm25",
"aggregation": {
"type": "mean",
"group_by": "weekday"
}
}
]
}