-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.json
More file actions
102 lines (97 loc) · 2.84 KB
/
Config.json
File metadata and controls
102 lines (97 loc) · 2.84 KB
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
{
"Url":"http://api.wunderground.com/api"
, "ApiKey":"your api key"
, "WeatherLocation":"your weather location"
, "WeatherDataFilePath":"./wu-lu/"
, "WeatherDataFileName":"Data"
, "WeatherDataFormat":"json"
, "UpdateInterval":900
, "UpdateOrder":["FromWeb", "FromFile"]
, "FeatureProperties":{
"wu-lu.Feature.Alerts":{
"Name":"alerts"
, "Query":"alerts"
, "DataKeys":"alerts query_zone"
}
, "wu-lu.Feature.Almanac":{
"Name":"almanac"
, "Query":"almanac"
, "DataKeys":"almanac"
}
, "wu-lu.Feature.Astronomy":{
"Name":"astronomy"
, "Query":"astronomy"
, "DataKeys":"sun_phase moon_phase"
}
, "wu-lu.Feature.Conditions":{
"Name":"conditions"
, "Query":"conditions"
, "DataKeys":"current_observation"
}
, "wu-lu.Feature.CurrentHurricane":{
"Name":"currenthurricane"
, "Query":"currenthurricane"
, "DataKeys":"currenthurricane"
}
, "wu-lu.Feature.Forecast":{
"Name":"forecast"
, "Query":"forecast"
, "DataKeys":"forecast"
}
, "wu-lu.Feature.Forecast10Day":{
"Name":"forecast10day"
, "Query":"forecast10day"
, "DataKeys":"forecast"
}
, "wu-lu.Feature.GeoLookup":{
"Name":"geolookup"
, "Query":"geolookup"
, "DataKeys":"location"
}
, "wu-lu.Feature.History":{
"Name":"history"
, "Query":"history_"
, "DataKeys":"history"
}
, "wu-lu.Feature.Hourly":{
"Name":"hourly"
, "Query":"hourly"
, "DataKeys":"hourly_forecast"
}
, "wu-lu.Feature.Hourly10Day":{
"Name":"hourly10day"
, "Query":"hourly10day"
, "DataKeys":"hourly_forecast"
}
, "wu-lu.Feature.Planner":{
"Name":"planner"
, "Query":"planner"
, "DataKeys":"trip"
}
, "wu-lu.Feature.RawTide":{
"Name":"rawtide"
, "Query":"rawtide"
, "DataKeys":"rawtide"
}
, "wu-lu.Feature.Satellite":{
"Name":"satellite"
, "Query":"satellite"
, "DataKeys":"satellite"
}
, "wu-lu.Feature.Tide":{
"Name":"tide"
, "Query":"tide"
, "DataKeys":"tide"
}
, "wu-lu.Feature.Webcams":{
"Name":"webcams"
, "Query":"webcams"
, "DataKeys":"webcams"
}
, "wu-lu.Feature.Yesterday":{
"Name":"yesterday"
, "Query":"yesterday"
, "DataKeys":"history"
}
}
}