lita-onewheel-forecast-io 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.travis.yml +14 -0
- data/Gemfile +2 -0
- data/LICENSE +19 -0
- data/README.md +37 -0
- data/Rakefile +6 -0
- data/lib/lita-onewheel-forecast-io.rb +7 -0
- data/lib/lita/handlers/constants.rb +137 -0
- data/lib/lita/handlers/forecasts.rb +376 -0
- data/lib/lita/handlers/irc_handlers.rb +177 -0
- data/lib/lita/handlers/location.rb +13 -0
- data/lib/lita/handlers/onewheel_forecast_io.rb +165 -0
- data/lib/lita/handlers/utils.rb +396 -0
- data/lita-onewheel-forecast-io.gemspec +36 -0
- data/lita_config_sample.rb +9 -0
- data/locales/en.yml +4 -0
- data/spec/heavy_rain.json +1578 -0
- data/spec/lita/handlers/forecast_io_spec.rb +371 -0
- data/spec/mock_weather.json +1519 -0
- data/spec/mock_weather_no_minute.json +1204 -0
- data/spec/mock_weather_with_snow.json +1649 -0
- data/spec/spec_helper.rb +15 -0
- metadata +231 -0
@@ -0,0 +1,1649 @@
|
|
1
|
+
{
|
2
|
+
latitude: 35.3089,
|
3
|
+
longitude: -106.434,
|
4
|
+
timezone: "America/Denver",
|
5
|
+
offset: -7,
|
6
|
+
currently: {
|
7
|
+
time: 1424665627,
|
8
|
+
summary: "Overcast",
|
9
|
+
icon: "cloudy",
|
10
|
+
nearestStormDistance: 10,
|
11
|
+
nearestStormBearing: 16,
|
12
|
+
precipIntensity: 0,
|
13
|
+
precipProbability: 0,
|
14
|
+
temperature: 22.38,
|
15
|
+
apparentTemperature: 10.58,
|
16
|
+
dewPoint: 14.86,
|
17
|
+
humidity: 0.72,
|
18
|
+
windSpeed: 12.18,
|
19
|
+
windBearing: 115,
|
20
|
+
visibility: 5.62,
|
21
|
+
cloudCover: 0.98,
|
22
|
+
pressure: 1026.43,
|
23
|
+
ozone: 337.32
|
24
|
+
},
|
25
|
+
minutely: {
|
26
|
+
summary: "Overcast for the hour.",
|
27
|
+
icon: "cloudy",
|
28
|
+
data: [
|
29
|
+
{
|
30
|
+
time: 1424665620,
|
31
|
+
precipIntensity: 0,
|
32
|
+
precipProbability: 0
|
33
|
+
},
|
34
|
+
{
|
35
|
+
time: 1424665680,
|
36
|
+
precipIntensity: 0,
|
37
|
+
precipProbability: 0
|
38
|
+
},
|
39
|
+
{
|
40
|
+
time: 1424665740,
|
41
|
+
precipIntensity: 0,
|
42
|
+
precipProbability: 0
|
43
|
+
},
|
44
|
+
{
|
45
|
+
time: 1424665800,
|
46
|
+
precipIntensity: 0,
|
47
|
+
precipProbability: 0
|
48
|
+
},
|
49
|
+
{
|
50
|
+
time: 1424665860,
|
51
|
+
precipIntensity: 0,
|
52
|
+
precipProbability: 0
|
53
|
+
},
|
54
|
+
{
|
55
|
+
time: 1424665920,
|
56
|
+
precipIntensity: 0,
|
57
|
+
precipProbability: 0
|
58
|
+
},
|
59
|
+
{
|
60
|
+
time: 1424665980,
|
61
|
+
precipIntensity: 0,
|
62
|
+
precipProbability: 0
|
63
|
+
},
|
64
|
+
{
|
65
|
+
time: 1424666040,
|
66
|
+
precipIntensity: 0,
|
67
|
+
precipProbability: 0
|
68
|
+
},
|
69
|
+
{
|
70
|
+
time: 1424666100,
|
71
|
+
precipIntensity: 0,
|
72
|
+
precipProbability: 0
|
73
|
+
},
|
74
|
+
{
|
75
|
+
time: 1424666160,
|
76
|
+
precipIntensity: 0,
|
77
|
+
precipProbability: 0
|
78
|
+
},
|
79
|
+
{
|
80
|
+
time: 1424666220,
|
81
|
+
precipIntensity: 0,
|
82
|
+
precipProbability: 0
|
83
|
+
},
|
84
|
+
{
|
85
|
+
time: 1424666280,
|
86
|
+
precipIntensity: 0,
|
87
|
+
precipProbability: 0
|
88
|
+
},
|
89
|
+
{
|
90
|
+
time: 1424666340,
|
91
|
+
precipIntensity: 0,
|
92
|
+
precipProbability: 0
|
93
|
+
},
|
94
|
+
{
|
95
|
+
time: 1424666400,
|
96
|
+
precipIntensity: 0,
|
97
|
+
precipProbability: 0
|
98
|
+
},
|
99
|
+
{
|
100
|
+
time: 1424666460,
|
101
|
+
precipIntensity: 0,
|
102
|
+
precipProbability: 0
|
103
|
+
},
|
104
|
+
{
|
105
|
+
time: 1424666520,
|
106
|
+
precipIntensity: 0,
|
107
|
+
precipProbability: 0
|
108
|
+
},
|
109
|
+
{
|
110
|
+
time: 1424666580,
|
111
|
+
precipIntensity: 0,
|
112
|
+
precipProbability: 0
|
113
|
+
},
|
114
|
+
{
|
115
|
+
time: 1424666640,
|
116
|
+
precipIntensity: 0,
|
117
|
+
precipProbability: 0
|
118
|
+
},
|
119
|
+
{
|
120
|
+
time: 1424666700,
|
121
|
+
precipIntensity: 0,
|
122
|
+
precipProbability: 0
|
123
|
+
},
|
124
|
+
{
|
125
|
+
time: 1424666760,
|
126
|
+
precipIntensity: 0,
|
127
|
+
precipProbability: 0
|
128
|
+
},
|
129
|
+
{
|
130
|
+
time: 1424666820,
|
131
|
+
precipIntensity: 0,
|
132
|
+
precipProbability: 0
|
133
|
+
},
|
134
|
+
{
|
135
|
+
time: 1424666880,
|
136
|
+
precipIntensity: 0.0038,
|
137
|
+
precipIntensityError: 0.0023,
|
138
|
+
precipProbability: 0.01,
|
139
|
+
precipType: "snow",
|
140
|
+
precipAccumulation: 0.055
|
141
|
+
},
|
142
|
+
{
|
143
|
+
time: 1424666940,
|
144
|
+
precipIntensity: 0.0044,
|
145
|
+
precipIntensityError: 0.0026,
|
146
|
+
precipProbability: 0.01,
|
147
|
+
precipType: "snow",
|
148
|
+
precipAccumulation: 0.064
|
149
|
+
},
|
150
|
+
{
|
151
|
+
time: 1424667000,
|
152
|
+
precipIntensity: 0.0042,
|
153
|
+
precipIntensityError: 0.0025,
|
154
|
+
precipProbability: 0.01,
|
155
|
+
precipType: "snow",
|
156
|
+
precipAccumulation: 0.062
|
157
|
+
},
|
158
|
+
{
|
159
|
+
time: 1424667060,
|
160
|
+
precipIntensity: 0.0042,
|
161
|
+
precipIntensityError: 0.0026,
|
162
|
+
precipProbability: 0.01,
|
163
|
+
precipType: "snow",
|
164
|
+
precipAccumulation: 0.062
|
165
|
+
},
|
166
|
+
{
|
167
|
+
time: 1424667120,
|
168
|
+
precipIntensity: 0.0048,
|
169
|
+
precipIntensityError: 0.0028,
|
170
|
+
precipProbability: 0.02,
|
171
|
+
precipType: "snow",
|
172
|
+
precipAccumulation: 0.07
|
173
|
+
},
|
174
|
+
{
|
175
|
+
time: 1424667180,
|
176
|
+
precipIntensity: 0.0049,
|
177
|
+
precipIntensityError: 0.0028,
|
178
|
+
precipProbability: 0.02,
|
179
|
+
precipType: "snow",
|
180
|
+
precipAccumulation: 0.072
|
181
|
+
},
|
182
|
+
{
|
183
|
+
time: 1424667240,
|
184
|
+
precipIntensity: 0.0049,
|
185
|
+
precipIntensityError: 0.0027,
|
186
|
+
precipProbability: 0.02,
|
187
|
+
precipType: "snow",
|
188
|
+
precipAccumulation: 0.072
|
189
|
+
},
|
190
|
+
{
|
191
|
+
time: 1424667300,
|
192
|
+
precipIntensity: 0.0051,
|
193
|
+
precipIntensityError: 0.0028,
|
194
|
+
precipProbability: 0.02,
|
195
|
+
precipType: "snow",
|
196
|
+
precipAccumulation: 0.075
|
197
|
+
},
|
198
|
+
{
|
199
|
+
time: 1424667360,
|
200
|
+
precipIntensity: 0.0051,
|
201
|
+
precipIntensityError: 0.0028,
|
202
|
+
precipProbability: 0.02,
|
203
|
+
precipType: "snow",
|
204
|
+
precipAccumulation: 0.076
|
205
|
+
},
|
206
|
+
{
|
207
|
+
time: 1424667420,
|
208
|
+
precipIntensity: 0.0052,
|
209
|
+
precipIntensityError: 0.0029,
|
210
|
+
precipProbability: 0.03,
|
211
|
+
precipType: "snow",
|
212
|
+
precipAccumulation: 0.077
|
213
|
+
},
|
214
|
+
{
|
215
|
+
time: 1424667480,
|
216
|
+
precipIntensity: 0.0052,
|
217
|
+
precipIntensityError: 0.0029,
|
218
|
+
precipProbability: 0.03,
|
219
|
+
precipType: "snow",
|
220
|
+
precipAccumulation: 0.076
|
221
|
+
},
|
222
|
+
{
|
223
|
+
time: 1424667540,
|
224
|
+
precipIntensity: 0.0056,
|
225
|
+
precipIntensityError: 0.0031,
|
226
|
+
precipProbability: 0.03,
|
227
|
+
precipType: "snow",
|
228
|
+
precipAccumulation: 0.083
|
229
|
+
},
|
230
|
+
{
|
231
|
+
time: 1424667600,
|
232
|
+
precipIntensity: 0.0054,
|
233
|
+
precipIntensityError: 0.0031,
|
234
|
+
precipProbability: 0.03,
|
235
|
+
precipType: "snow",
|
236
|
+
precipAccumulation: 0.079
|
237
|
+
},
|
238
|
+
{
|
239
|
+
time: 1424667660,
|
240
|
+
precipIntensity: 0.0054,
|
241
|
+
precipIntensityError: 0.0031,
|
242
|
+
precipProbability: 0.03,
|
243
|
+
precipType: "snow",
|
244
|
+
precipAccumulation: 0.08
|
245
|
+
},
|
246
|
+
{
|
247
|
+
time: 1424667720,
|
248
|
+
precipIntensity: 0.0059,
|
249
|
+
precipIntensityError: 0.0033,
|
250
|
+
precipProbability: 0.04,
|
251
|
+
precipType: "snow",
|
252
|
+
precipAccumulation: 0.087
|
253
|
+
},
|
254
|
+
{
|
255
|
+
time: 1424667780,
|
256
|
+
precipIntensity: 0.006,
|
257
|
+
precipIntensityError: 0.0033,
|
258
|
+
precipProbability: 0.04,
|
259
|
+
precipType: "snow",
|
260
|
+
precipAccumulation: 0.088
|
261
|
+
},
|
262
|
+
{
|
263
|
+
time: 1424667840,
|
264
|
+
precipIntensity: 0.0058,
|
265
|
+
precipIntensityError: 0.0032,
|
266
|
+
precipProbability: 0.04,
|
267
|
+
precipType: "snow",
|
268
|
+
precipAccumulation: 0.087
|
269
|
+
},
|
270
|
+
{
|
271
|
+
time: 1424667900,
|
272
|
+
precipIntensity: 0.0059,
|
273
|
+
precipIntensityError: 0.0032,
|
274
|
+
precipProbability: 0.04,
|
275
|
+
precipType: "snow",
|
276
|
+
precipAccumulation: 0.089
|
277
|
+
},
|
278
|
+
{
|
279
|
+
time: 1424667960,
|
280
|
+
precipIntensity: 0.006,
|
281
|
+
precipIntensityError: 0.0033,
|
282
|
+
precipProbability: 0.04,
|
283
|
+
precipType: "snow",
|
284
|
+
precipAccumulation: 0.089
|
285
|
+
},
|
286
|
+
{
|
287
|
+
time: 1424668020,
|
288
|
+
precipIntensity: 0.0061,
|
289
|
+
precipIntensityError: 0.0034,
|
290
|
+
precipProbability: 0.05,
|
291
|
+
precipType: "snow",
|
292
|
+
precipAccumulation: 0.09
|
293
|
+
},
|
294
|
+
{
|
295
|
+
time: 1424668080,
|
296
|
+
precipIntensity: 0.0059,
|
297
|
+
precipIntensityError: 0.0033,
|
298
|
+
precipProbability: 0.04,
|
299
|
+
precipType: "snow",
|
300
|
+
precipAccumulation: 0.088
|
301
|
+
},
|
302
|
+
{
|
303
|
+
time: 1424668140,
|
304
|
+
precipIntensity: 0.0062,
|
305
|
+
precipIntensityError: 0.0035,
|
306
|
+
precipProbability: 0.05,
|
307
|
+
precipType: "snow",
|
308
|
+
precipAccumulation: 0.093
|
309
|
+
},
|
310
|
+
{
|
311
|
+
time: 1424668200,
|
312
|
+
precipIntensity: 0.006,
|
313
|
+
precipIntensityError: 0.0035,
|
314
|
+
precipProbability: 0.05,
|
315
|
+
precipType: "snow",
|
316
|
+
precipAccumulation: 0.09
|
317
|
+
},
|
318
|
+
{
|
319
|
+
time: 1424668260,
|
320
|
+
precipIntensity: 0.0061,
|
321
|
+
precipIntensityError: 0.0036,
|
322
|
+
precipProbability: 0.05,
|
323
|
+
precipType: "snow",
|
324
|
+
precipAccumulation: 0.091
|
325
|
+
},
|
326
|
+
{
|
327
|
+
time: 1424668320,
|
328
|
+
precipIntensity: 0.0064,
|
329
|
+
precipIntensityError: 0.0036,
|
330
|
+
precipProbability: 0.06,
|
331
|
+
precipType: "snow",
|
332
|
+
precipAccumulation: 0.095
|
333
|
+
},
|
334
|
+
{
|
335
|
+
time: 1424668380,
|
336
|
+
precipIntensity: 0.0063,
|
337
|
+
precipIntensityError: 0.0036,
|
338
|
+
precipProbability: 0.05,
|
339
|
+
precipType: "snow",
|
340
|
+
precipAccumulation: 0.094
|
341
|
+
},
|
342
|
+
{
|
343
|
+
time: 1424668440,
|
344
|
+
precipIntensity: 0.0063,
|
345
|
+
precipIntensityError: 0.0035,
|
346
|
+
precipProbability: 0.05,
|
347
|
+
precipType: "snow",
|
348
|
+
precipAccumulation: 0.095
|
349
|
+
},
|
350
|
+
{
|
351
|
+
time: 1424668500,
|
352
|
+
precipIntensity: 0.0064,
|
353
|
+
precipIntensityError: 0.0036,
|
354
|
+
precipProbability: 0.05,
|
355
|
+
precipType: "snow",
|
356
|
+
precipAccumulation: 0.096
|
357
|
+
},
|
358
|
+
{
|
359
|
+
time: 1424668560,
|
360
|
+
precipIntensity: 0.0065,
|
361
|
+
precipIntensityError: 0.0036,
|
362
|
+
precipProbability: 0.06,
|
363
|
+
precipType: "snow",
|
364
|
+
precipAccumulation: 0.098
|
365
|
+
},
|
366
|
+
{
|
367
|
+
time: 1424668620,
|
368
|
+
precipIntensity: 0.0065,
|
369
|
+
precipIntensityError: 0.0036,
|
370
|
+
precipProbability: 0.06,
|
371
|
+
precipType: "snow",
|
372
|
+
precipAccumulation: 0.097
|
373
|
+
},
|
374
|
+
{
|
375
|
+
time: 1424668680,
|
376
|
+
precipIntensity: 0.0063,
|
377
|
+
precipIntensityError: 0.0036,
|
378
|
+
precipProbability: 0.05,
|
379
|
+
precipType: "snow",
|
380
|
+
precipAccumulation: 0.094
|
381
|
+
},
|
382
|
+
{
|
383
|
+
time: 1424668740,
|
384
|
+
precipIntensity: 0.0065,
|
385
|
+
precipIntensityError: 0.0038,
|
386
|
+
precipProbability: 0.06,
|
387
|
+
precipType: "snow",
|
388
|
+
precipAccumulation: 0.098
|
389
|
+
},
|
390
|
+
{
|
391
|
+
time: 1424668800,
|
392
|
+
precipIntensity: 0.0065,
|
393
|
+
precipIntensityError: 0.0039,
|
394
|
+
precipProbability: 0.05,
|
395
|
+
precipType: "snow",
|
396
|
+
precipAccumulation: 0.097
|
397
|
+
},
|
398
|
+
{
|
399
|
+
time: 1424668860,
|
400
|
+
precipIntensity: 0.0066,
|
401
|
+
precipIntensityError: 0.0039,
|
402
|
+
precipProbability: 0.05,
|
403
|
+
precipType: "snow",
|
404
|
+
precipAccumulation: 0.098
|
405
|
+
},
|
406
|
+
{
|
407
|
+
time: 1424668920,
|
408
|
+
precipIntensity: 0.0068,
|
409
|
+
precipIntensityError: 0.0039,
|
410
|
+
precipProbability: 0.06,
|
411
|
+
precipType: "snow",
|
412
|
+
precipAccumulation: 0.101
|
413
|
+
},
|
414
|
+
{
|
415
|
+
time: 1424668980,
|
416
|
+
precipIntensity: 0.0067,
|
417
|
+
precipIntensityError: 0.0039,
|
418
|
+
precipProbability: 0.06,
|
419
|
+
precipType: "snow",
|
420
|
+
precipAccumulation: 0.1
|
421
|
+
},
|
422
|
+
{
|
423
|
+
time: 1424669040,
|
424
|
+
precipIntensity: 0.0067,
|
425
|
+
precipIntensityError: 0.0039,
|
426
|
+
precipProbability: 0.06,
|
427
|
+
precipType: "snow",
|
428
|
+
precipAccumulation: 0.1
|
429
|
+
},
|
430
|
+
{
|
431
|
+
time: 1424669100,
|
432
|
+
precipIntensity: 0.0069,
|
433
|
+
precipIntensityError: 0.0039,
|
434
|
+
precipProbability: 0.06,
|
435
|
+
precipType: "snow",
|
436
|
+
precipAccumulation: 0.104
|
437
|
+
},
|
438
|
+
{
|
439
|
+
time: 1424669160,
|
440
|
+
precipIntensity: 0.007,
|
441
|
+
precipIntensityError: 0.004,
|
442
|
+
precipProbability: 0.06,
|
443
|
+
precipType: "snow",
|
444
|
+
precipAccumulation: 0.105
|
445
|
+
},
|
446
|
+
{
|
447
|
+
time: 1424669220,
|
448
|
+
precipIntensity: 0.0069,
|
449
|
+
precipIntensityError: 0.0039,
|
450
|
+
precipProbability: 0.06,
|
451
|
+
precipType: "snow",
|
452
|
+
precipAccumulation: 0.103
|
453
|
+
}
|
454
|
+
]
|
455
|
+
},
|
456
|
+
hourly: {
|
457
|
+
summary: "Snow (1–3 in.) until tomorrow evening.",
|
458
|
+
icon: "snow",
|
459
|
+
data: [
|
460
|
+
{
|
461
|
+
time: 1424664000,
|
462
|
+
summary: "Light Snow",
|
463
|
+
icon: "snow",
|
464
|
+
precipIntensity: 0.0073,
|
465
|
+
precipProbability: 0.55,
|
466
|
+
precipType: "snow",
|
467
|
+
precipAccumulation: 0.096,
|
468
|
+
temperature: 23.45,
|
469
|
+
apparentTemperature: 12.19,
|
470
|
+
dewPoint: 15.32,
|
471
|
+
humidity: 0.71,
|
472
|
+
windSpeed: 11.69,
|
473
|
+
windBearing: 111,
|
474
|
+
visibility: 5,
|
475
|
+
cloudCover: 0.98,
|
476
|
+
pressure: 1026.16,
|
477
|
+
ozone: 337.96
|
478
|
+
},
|
479
|
+
{
|
480
|
+
time: 1424667600,
|
481
|
+
summary: "Light Snow",
|
482
|
+
icon: "snow",
|
483
|
+
precipIntensity: 0.0048,
|
484
|
+
precipProbability: 0.1,
|
485
|
+
precipType: "snow",
|
486
|
+
precipAccumulation: 0.072,
|
487
|
+
temperature: 21.07,
|
488
|
+
apparentTemperature: 8.58,
|
489
|
+
dewPoint: 14.27,
|
490
|
+
humidity: 0.75,
|
491
|
+
windSpeed: 12.88,
|
492
|
+
windBearing: 120,
|
493
|
+
visibility: 6.37,
|
494
|
+
cloudCover: 0.99,
|
495
|
+
pressure: 1026.77,
|
496
|
+
ozone: 336.56
|
497
|
+
},
|
498
|
+
{
|
499
|
+
time: 1424671200,
|
500
|
+
summary: "Snow",
|
501
|
+
icon: "snow",
|
502
|
+
precipIntensity: 0.0118,
|
503
|
+
precipProbability: 0.77,
|
504
|
+
precipType: "snow",
|
505
|
+
precipAccumulation: 0.179,
|
506
|
+
temperature: 20.58,
|
507
|
+
apparentTemperature: 7.59,
|
508
|
+
dewPoint: 14.33,
|
509
|
+
humidity: 0.76,
|
510
|
+
windSpeed: 13.64,
|
511
|
+
windBearing: 120,
|
512
|
+
visibility: 4.3,
|
513
|
+
cloudCover: 1,
|
514
|
+
pressure: 1027.59,
|
515
|
+
ozone: 336.09
|
516
|
+
},
|
517
|
+
{
|
518
|
+
time: 1424674800,
|
519
|
+
summary: "Light Snow",
|
520
|
+
icon: "snow",
|
521
|
+
precipIntensity: 0.0056,
|
522
|
+
precipProbability: 0.17,
|
523
|
+
precipType: "snow",
|
524
|
+
precipAccumulation: 0.087,
|
525
|
+
temperature: 19.93,
|
526
|
+
apparentTemperature: 6.58,
|
527
|
+
dewPoint: 13.6,
|
528
|
+
humidity: 0.76,
|
529
|
+
windSpeed: 14.01,
|
530
|
+
windBearing: 118,
|
531
|
+
visibility: 5.88,
|
532
|
+
cloudCover: 1,
|
533
|
+
pressure: 1028.11,
|
534
|
+
ozone: 337.6
|
535
|
+
},
|
536
|
+
{
|
537
|
+
time: 1424678400,
|
538
|
+
summary: "Light Snow",
|
539
|
+
icon: "snow",
|
540
|
+
precipIntensity: 0.0035,
|
541
|
+
precipProbability: 0.08,
|
542
|
+
precipType: "snow",
|
543
|
+
precipAccumulation: 0.055,
|
544
|
+
temperature: 19.73,
|
545
|
+
apparentTemperature: 6.16,
|
546
|
+
dewPoint: 13.21,
|
547
|
+
humidity: 0.75,
|
548
|
+
windSpeed: 14.38,
|
549
|
+
windBearing: 119,
|
550
|
+
visibility: 6.51,
|
551
|
+
cloudCover: 1,
|
552
|
+
pressure: 1028.44,
|
553
|
+
ozone: 340.05
|
554
|
+
},
|
555
|
+
{
|
556
|
+
time: 1424682000,
|
557
|
+
summary: "Light Snow",
|
558
|
+
icon: "snow",
|
559
|
+
precipIntensity: 0.0025,
|
560
|
+
precipProbability: 0.04,
|
561
|
+
precipType: "snow",
|
562
|
+
precipAccumulation: 0.041,
|
563
|
+
temperature: 19.43,
|
564
|
+
apparentTemperature: 5.7,
|
565
|
+
dewPoint: 12.91,
|
566
|
+
humidity: 0.75,
|
567
|
+
windSpeed: 14.54,
|
568
|
+
windBearing: 119,
|
569
|
+
visibility: 6.66,
|
570
|
+
cloudCover: 1,
|
571
|
+
pressure: 1028.73,
|
572
|
+
ozone: 341.12
|
573
|
+
},
|
574
|
+
{
|
575
|
+
time: 1424685600,
|
576
|
+
summary: "Light Snow",
|
577
|
+
icon: "snow",
|
578
|
+
precipIntensity: 0.003,
|
579
|
+
precipProbability: 0.05,
|
580
|
+
precipType: "snow",
|
581
|
+
precipAccumulation: 0.049,
|
582
|
+
temperature: 19.32,
|
583
|
+
apparentTemperature: 5.18,
|
584
|
+
dewPoint: 12.83,
|
585
|
+
humidity: 0.75,
|
586
|
+
windSpeed: 15.38,
|
587
|
+
windBearing: 113,
|
588
|
+
visibility: 6.24,
|
589
|
+
cloudCover: 1,
|
590
|
+
pressure: 1029.02,
|
591
|
+
ozone: 339.5
|
592
|
+
},
|
593
|
+
{
|
594
|
+
time: 1424689200,
|
595
|
+
summary: "Light Snow",
|
596
|
+
icon: "snow",
|
597
|
+
precipIntensity: 0.0069,
|
598
|
+
precipProbability: 0.51,
|
599
|
+
precipType: "snow",
|
600
|
+
precipAccumulation: 0.116,
|
601
|
+
temperature: 18.62,
|
602
|
+
apparentTemperature: 4.35,
|
603
|
+
dewPoint: 12.98,
|
604
|
+
humidity: 0.78,
|
605
|
+
windSpeed: 15.22,
|
606
|
+
windBearing: 113,
|
607
|
+
visibility: 3.12,
|
608
|
+
cloudCover: 1,
|
609
|
+
pressure: 1029.26,
|
610
|
+
ozone: 336.51
|
611
|
+
},
|
612
|
+
{
|
613
|
+
time: 1424692800,
|
614
|
+
summary: "Snow",
|
615
|
+
icon: "snow",
|
616
|
+
precipIntensity: 0.0097,
|
617
|
+
precipProbability: 0.69,
|
618
|
+
precipType: "snow",
|
619
|
+
precipAccumulation: 0.163,
|
620
|
+
temperature: 18.52,
|
621
|
+
apparentTemperature: 4.12,
|
622
|
+
dewPoint: 13.02,
|
623
|
+
humidity: 0.79,
|
624
|
+
windSpeed: 15.43,
|
625
|
+
windBearing: 116,
|
626
|
+
visibility: 2.59,
|
627
|
+
cloudCover: 1,
|
628
|
+
pressure: 1029.52,
|
629
|
+
ozone: 333.82
|
630
|
+
},
|
631
|
+
{
|
632
|
+
time: 1424696400,
|
633
|
+
summary: "Light Snow",
|
634
|
+
icon: "snow",
|
635
|
+
precipIntensity: 0.0074,
|
636
|
+
precipProbability: 0.55,
|
637
|
+
precipType: "snow",
|
638
|
+
precipAccumulation: 0.129,
|
639
|
+
temperature: 17.71,
|
640
|
+
apparentTemperature: 3.21,
|
641
|
+
dewPoint: 12.24,
|
642
|
+
humidity: 0.79,
|
643
|
+
windSpeed: 15.17,
|
644
|
+
windBearing: 116,
|
645
|
+
visibility: 3.66,
|
646
|
+
cloudCover: 1,
|
647
|
+
pressure: 1029.89,
|
648
|
+
ozone: 331.79
|
649
|
+
},
|
650
|
+
{
|
651
|
+
time: 1424700000,
|
652
|
+
summary: "Snow (Under 1 in.)",
|
653
|
+
icon: "snow",
|
654
|
+
precipIntensity: 0.0128,
|
655
|
+
precipProbability: 0.76,
|
656
|
+
precipType: "snow",
|
657
|
+
precipAccumulation: 0.224,
|
658
|
+
temperature: 17.52,
|
659
|
+
apparentTemperature: 3.22,
|
660
|
+
dewPoint: 12.14,
|
661
|
+
humidity: 0.79,
|
662
|
+
windSpeed: 14.62,
|
663
|
+
windBearing: 115,
|
664
|
+
visibility: 3,
|
665
|
+
cloudCover: 1,
|
666
|
+
pressure: 1030.27,
|
667
|
+
ozone: 330.07
|
668
|
+
},
|
669
|
+
{
|
670
|
+
time: 1424703600,
|
671
|
+
summary: "Snow (Under 1 in.)",
|
672
|
+
icon: "snow",
|
673
|
+
precipIntensity: 0.0134,
|
674
|
+
precipProbability: 0.81,
|
675
|
+
precipType: "snow",
|
676
|
+
precipAccumulation: 0.232,
|
677
|
+
temperature: 17.73,
|
678
|
+
apparentTemperature: 3.63,
|
679
|
+
dewPoint: 12.32,
|
680
|
+
humidity: 0.79,
|
681
|
+
windSpeed: 14.34,
|
682
|
+
windBearing: 114,
|
683
|
+
visibility: 3.53,
|
684
|
+
cloudCover: 1,
|
685
|
+
pressure: 1030.38,
|
686
|
+
ozone: 329.29
|
687
|
+
},
|
688
|
+
{
|
689
|
+
time: 1424707200,
|
690
|
+
summary: "Snow",
|
691
|
+
icon: "snow",
|
692
|
+
precipIntensity: 0.0111,
|
693
|
+
precipProbability: 0.73,
|
694
|
+
precipType: "snow",
|
695
|
+
precipAccumulation: 0.182,
|
696
|
+
temperature: 18.88,
|
697
|
+
apparentTemperature: 5.17,
|
698
|
+
dewPoint: 13.26,
|
699
|
+
humidity: 0.78,
|
700
|
+
windSpeed: 14.17,
|
701
|
+
windBearing: 116,
|
702
|
+
visibility: 3.74,
|
703
|
+
cloudCover: 1,
|
704
|
+
pressure: 1030.09,
|
705
|
+
ozone: 330.04
|
706
|
+
},
|
707
|
+
{
|
708
|
+
time: 1424710800,
|
709
|
+
summary: "Light Snow",
|
710
|
+
icon: "snow",
|
711
|
+
precipIntensity: 0.0077,
|
712
|
+
precipProbability: 0.47,
|
713
|
+
precipType: "snow",
|
714
|
+
precipAccumulation: 0.115,
|
715
|
+
temperature: 20.79,
|
716
|
+
apparentTemperature: 7.71,
|
717
|
+
dewPoint: 14.8,
|
718
|
+
humidity: 0.77,
|
719
|
+
windSpeed: 13.96,
|
720
|
+
windBearing: 118,
|
721
|
+
visibility: 4.29,
|
722
|
+
cloudCover: 1,
|
723
|
+
pressure: 1029.48,
|
724
|
+
ozone: 331.73
|
725
|
+
},
|
726
|
+
{
|
727
|
+
time: 1424714400,
|
728
|
+
summary: "Light Snow",
|
729
|
+
icon: "snow",
|
730
|
+
precipIntensity: 0.0038,
|
731
|
+
precipProbability: 0.04,
|
732
|
+
precipType: "snow",
|
733
|
+
precipAccumulation: 0.051,
|
734
|
+
temperature: 23.13,
|
735
|
+
apparentTemperature: 10.9,
|
736
|
+
dewPoint: 16.73,
|
737
|
+
humidity: 0.76,
|
738
|
+
windSpeed: 13.49,
|
739
|
+
windBearing: 121,
|
740
|
+
visibility: 5.89,
|
741
|
+
cloudCover: 0.99,
|
742
|
+
pressure: 1028.56,
|
743
|
+
ozone: 333.31
|
744
|
+
},
|
745
|
+
{
|
746
|
+
time: 1424718000,
|
747
|
+
summary: "Light Snow",
|
748
|
+
icon: "snow",
|
749
|
+
precipIntensity: 0.0033,
|
750
|
+
precipProbability: 0.02,
|
751
|
+
precipType: "snow",
|
752
|
+
precipAccumulation: 0.039,
|
753
|
+
temperature: 25.34,
|
754
|
+
apparentTemperature: 14.22,
|
755
|
+
dewPoint: 18.91,
|
756
|
+
humidity: 0.76,
|
757
|
+
windSpeed: 12.38,
|
758
|
+
windBearing: 124,
|
759
|
+
visibility: 5.92,
|
760
|
+
cloudCover: 0.97,
|
761
|
+
pressure: 1027.15,
|
762
|
+
ozone: 334.53
|
763
|
+
},
|
764
|
+
{
|
765
|
+
time: 1424721600,
|
766
|
+
summary: "Light Snow",
|
767
|
+
icon: "snow",
|
768
|
+
precipIntensity: 0.004,
|
769
|
+
precipProbability: 0.1,
|
770
|
+
precipType: "snow",
|
771
|
+
precipAccumulation: 0.043,
|
772
|
+
temperature: 27.22,
|
773
|
+
apparentTemperature: 17.24,
|
774
|
+
dewPoint: 20.96,
|
775
|
+
humidity: 0.77,
|
776
|
+
windSpeed: 11.05,
|
777
|
+
windBearing: 128,
|
778
|
+
visibility: 5.22,
|
779
|
+
cloudCover: 0.95,
|
780
|
+
pressure: 1025.37,
|
781
|
+
ozone: 335.64
|
782
|
+
},
|
783
|
+
{
|
784
|
+
time: 1424725200,
|
785
|
+
summary: "Light Snow",
|
786
|
+
icon: "snow",
|
787
|
+
precipIntensity: 0.0047,
|
788
|
+
precipProbability: 0.21,
|
789
|
+
precipType: "snow",
|
790
|
+
precipAccumulation: 0.046,
|
791
|
+
temperature: 28.6,
|
792
|
+
apparentTemperature: 19.8,
|
793
|
+
dewPoint: 22.54,
|
794
|
+
humidity: 0.78,
|
795
|
+
windSpeed: 9.49,
|
796
|
+
windBearing: 131,
|
797
|
+
visibility: 4.85,
|
798
|
+
cloudCover: 0.94,
|
799
|
+
pressure: 1023.79,
|
800
|
+
ozone: 336.28
|
801
|
+
},
|
802
|
+
{
|
803
|
+
time: 1424728800,
|
804
|
+
summary: "Light Snow",
|
805
|
+
icon: "snow",
|
806
|
+
precipIntensity: 0.0038,
|
807
|
+
precipProbability: 0.12,
|
808
|
+
precipType: "snow",
|
809
|
+
precipAccumulation: 0.035,
|
810
|
+
temperature: 29.69,
|
811
|
+
apparentTemperature: 21.42,
|
812
|
+
dewPoint: 23.03,
|
813
|
+
humidity: 0.76,
|
814
|
+
windSpeed: 8.99,
|
815
|
+
windBearing: 133,
|
816
|
+
visibility: 5.45,
|
817
|
+
cloudCover: 0.94,
|
818
|
+
pressure: 1022.68,
|
819
|
+
ozone: 336.16
|
820
|
+
},
|
821
|
+
{
|
822
|
+
time: 1424732400,
|
823
|
+
summary: "Flurries",
|
824
|
+
icon: "snow",
|
825
|
+
precipIntensity: 0.0027,
|
826
|
+
precipProbability: 0.06,
|
827
|
+
precipType: "snow",
|
828
|
+
precipAccumulation: 0.023,
|
829
|
+
temperature: 30.67,
|
830
|
+
apparentTemperature: 23.08,
|
831
|
+
dewPoint: 23.73,
|
832
|
+
humidity: 0.75,
|
833
|
+
windSpeed: 8.23,
|
834
|
+
windBearing: 133,
|
835
|
+
visibility: 7.18,
|
836
|
+
cloudCover: 0.96,
|
837
|
+
pressure: 1021.91,
|
838
|
+
ozone: 335.58
|
839
|
+
},
|
840
|
+
{
|
841
|
+
time: 1424736000,
|
842
|
+
summary: "Flurries",
|
843
|
+
icon: "snow",
|
844
|
+
precipIntensity: 0.0018,
|
845
|
+
precipProbability: 0.02,
|
846
|
+
precipType: "snow",
|
847
|
+
precipAccumulation: 0.015,
|
848
|
+
temperature: 30.89,
|
849
|
+
apparentTemperature: 24,
|
850
|
+
dewPoint: 24.18,
|
851
|
+
humidity: 0.76,
|
852
|
+
windSpeed: 7.23,
|
853
|
+
windBearing: 131,
|
854
|
+
visibility: 9.03,
|
855
|
+
cloudCover: 0.96,
|
856
|
+
pressure: 1021.54,
|
857
|
+
ozone: 334.99
|
858
|
+
},
|
859
|
+
{
|
860
|
+
time: 1424739600,
|
861
|
+
summary: "Overcast",
|
862
|
+
icon: "cloudy",
|
863
|
+
precipIntensity: 0.0011,
|
864
|
+
precipProbability: 0.01,
|
865
|
+
precipType: "snow",
|
866
|
+
precipAccumulation: 0.01,
|
867
|
+
temperature: 30.43,
|
868
|
+
apparentTemperature: 24.13,
|
869
|
+
dewPoint: 24.58,
|
870
|
+
humidity: 0.79,
|
871
|
+
windSpeed: 6.29,
|
872
|
+
windBearing: 129,
|
873
|
+
visibility: 9.85,
|
874
|
+
cloudCover: 0.94,
|
875
|
+
pressure: 1021.72,
|
876
|
+
ozone: 334.42
|
877
|
+
},
|
878
|
+
{
|
879
|
+
time: 1424743200,
|
880
|
+
summary: "Mostly Cloudy",
|
881
|
+
icon: "partly-cloudy-night",
|
882
|
+
precipIntensity: 0,
|
883
|
+
precipProbability: 0,
|
884
|
+
temperature: 29.62,
|
885
|
+
apparentTemperature: 24.18,
|
886
|
+
dewPoint: 24.93,
|
887
|
+
humidity: 0.82,
|
888
|
+
windSpeed: 5.11,
|
889
|
+
windBearing: 122,
|
890
|
+
visibility: 10,
|
891
|
+
cloudCover: 0.91,
|
892
|
+
pressure: 1022.28,
|
893
|
+
ozone: 333.84
|
894
|
+
},
|
895
|
+
{
|
896
|
+
time: 1424746800,
|
897
|
+
summary: "Mostly Cloudy",
|
898
|
+
icon: "partly-cloudy-night",
|
899
|
+
precipIntensity: 0,
|
900
|
+
precipProbability: 0,
|
901
|
+
temperature: 28.92,
|
902
|
+
apparentTemperature: 24.17,
|
903
|
+
dewPoint: 25.25,
|
904
|
+
humidity: 0.86,
|
905
|
+
windSpeed: 4.31,
|
906
|
+
windBearing: 116,
|
907
|
+
visibility: 10,
|
908
|
+
cloudCover: 0.89,
|
909
|
+
pressure: 1022.79,
|
910
|
+
ozone: 333.7
|
911
|
+
},
|
912
|
+
{
|
913
|
+
time: 1424750400,
|
914
|
+
summary: "Mostly Cloudy",
|
915
|
+
icon: "partly-cloudy-night",
|
916
|
+
precipIntensity: 0,
|
917
|
+
precipProbability: 0,
|
918
|
+
temperature: 28.39,
|
919
|
+
apparentTemperature: 24.74,
|
920
|
+
dewPoint: 25.31,
|
921
|
+
humidity: 0.88,
|
922
|
+
windSpeed: 3.34,
|
923
|
+
windBearing: 109,
|
924
|
+
visibility: 9.91,
|
925
|
+
cloudCover: 0.87,
|
926
|
+
pressure: 1023.05,
|
927
|
+
ozone: 334.14
|
928
|
+
},
|
929
|
+
{
|
930
|
+
time: 1424754000,
|
931
|
+
summary: "Mostly Cloudy",
|
932
|
+
icon: "partly-cloudy-night",
|
933
|
+
precipIntensity: 0,
|
934
|
+
precipProbability: 0,
|
935
|
+
temperature: 27.93,
|
936
|
+
apparentTemperature: 27.93,
|
937
|
+
dewPoint: 25.24,
|
938
|
+
humidity: 0.89,
|
939
|
+
windSpeed: 2.36,
|
940
|
+
windBearing: 101,
|
941
|
+
visibility: 9.78,
|
942
|
+
cloudCover: 0.85,
|
943
|
+
pressure: 1023.15,
|
944
|
+
ozone: 335.02
|
945
|
+
},
|
946
|
+
{
|
947
|
+
time: 1424757600,
|
948
|
+
summary: "Mostly Cloudy",
|
949
|
+
icon: "partly-cloudy-night",
|
950
|
+
precipIntensity: 0,
|
951
|
+
precipProbability: 0,
|
952
|
+
temperature: 27.34,
|
953
|
+
apparentTemperature: 27.34,
|
954
|
+
dewPoint: 24.99,
|
955
|
+
humidity: 0.91,
|
956
|
+
windSpeed: 1.59,
|
957
|
+
windBearing: 88,
|
958
|
+
visibility: 9.63,
|
959
|
+
cloudCover: 0.83,
|
960
|
+
pressure: 1023.12,
|
961
|
+
ozone: 336.23
|
962
|
+
},
|
963
|
+
{
|
964
|
+
time: 1424761200,
|
965
|
+
summary: "Mostly Cloudy",
|
966
|
+
icon: "partly-cloudy-night",
|
967
|
+
precipIntensity: 0,
|
968
|
+
precipProbability: 0,
|
969
|
+
temperature: 26.4,
|
970
|
+
apparentTemperature: 26.4,
|
971
|
+
dewPoint: 24.44,
|
972
|
+
humidity: 0.92,
|
973
|
+
windSpeed: 1.17,
|
974
|
+
windBearing: 91,
|
975
|
+
visibility: 9.44,
|
976
|
+
cloudCover: 0.82,
|
977
|
+
pressure: 1022.99,
|
978
|
+
ozone: 337.73
|
979
|
+
},
|
980
|
+
{
|
981
|
+
time: 1424764800,
|
982
|
+
summary: "Mostly Cloudy",
|
983
|
+
icon: "partly-cloudy-night",
|
984
|
+
precipIntensity: 0,
|
985
|
+
precipProbability: 0,
|
986
|
+
temperature: 25.22,
|
987
|
+
apparentTemperature: 25.22,
|
988
|
+
dewPoint: 23.63,
|
989
|
+
humidity: 0.94,
|
990
|
+
windSpeed: 0.9,
|
991
|
+
windBearing: 102,
|
992
|
+
visibility: 9.23,
|
993
|
+
cloudCover: 0.81,
|
994
|
+
pressure: 1022.77,
|
995
|
+
ozone: 339.57
|
996
|
+
},
|
997
|
+
{
|
998
|
+
time: 1424768400,
|
999
|
+
summary: "Mostly Cloudy",
|
1000
|
+
icon: "partly-cloudy-night",
|
1001
|
+
precipIntensity: 0,
|
1002
|
+
precipProbability: 0,
|
1003
|
+
temperature: 24.14,
|
1004
|
+
apparentTemperature: 24.14,
|
1005
|
+
dewPoint: 22.8,
|
1006
|
+
humidity: 0.95,
|
1007
|
+
windSpeed: 0.64,
|
1008
|
+
windBearing: 106,
|
1009
|
+
visibility: 9.12,
|
1010
|
+
cloudCover: 0.8,
|
1011
|
+
pressure: 1022.54,
|
1012
|
+
ozone: 341.86
|
1013
|
+
},
|
1014
|
+
{
|
1015
|
+
time: 1424772000,
|
1016
|
+
summary: "Mostly Cloudy",
|
1017
|
+
icon: "partly-cloudy-night",
|
1018
|
+
precipIntensity: 0,
|
1019
|
+
precipProbability: 0,
|
1020
|
+
temperature: 23.36,
|
1021
|
+
apparentTemperature: 23.36,
|
1022
|
+
dewPoint: 22.19,
|
1023
|
+
humidity: 0.95,
|
1024
|
+
windSpeed: 0.41,
|
1025
|
+
windBearing: 98,
|
1026
|
+
visibility: 9.19,
|
1027
|
+
cloudCover: 0.8,
|
1028
|
+
pressure: 1022.32,
|
1029
|
+
ozone: 344.37
|
1030
|
+
},
|
1031
|
+
{
|
1032
|
+
time: 1424775600,
|
1033
|
+
summary: "Mostly Cloudy",
|
1034
|
+
icon: "partly-cloudy-night",
|
1035
|
+
precipIntensity: 0,
|
1036
|
+
precipProbability: 0,
|
1037
|
+
temperature: 23.25,
|
1038
|
+
apparentTemperature: 23.25,
|
1039
|
+
dewPoint: 22.14,
|
1040
|
+
humidity: 0.95,
|
1041
|
+
windSpeed: 0.31,
|
1042
|
+
windBearing: 77,
|
1043
|
+
visibility: 9.36,
|
1044
|
+
cloudCover: 0.81,
|
1045
|
+
pressure: 1022.1,
|
1046
|
+
ozone: 347.33
|
1047
|
+
},
|
1048
|
+
{
|
1049
|
+
time: 1424779200,
|
1050
|
+
summary: "Mostly Cloudy",
|
1051
|
+
icon: "partly-cloudy-night",
|
1052
|
+
precipIntensity: 0,
|
1053
|
+
precipProbability: 0,
|
1054
|
+
temperature: 23.69,
|
1055
|
+
apparentTemperature: 23.69,
|
1056
|
+
dewPoint: 22.48,
|
1057
|
+
humidity: 0.95,
|
1058
|
+
windSpeed: 0.26,
|
1059
|
+
windBearing: 83,
|
1060
|
+
visibility: 9.54,
|
1061
|
+
cloudCover: 0.78,
|
1062
|
+
pressure: 1021.85,
|
1063
|
+
ozone: 351.51
|
1064
|
+
},
|
1065
|
+
{
|
1066
|
+
time: 1424782800,
|
1067
|
+
summary: "Mostly Cloudy",
|
1068
|
+
icon: "partly-cloudy-night",
|
1069
|
+
precipIntensity: 0,
|
1070
|
+
precipProbability: 0,
|
1071
|
+
temperature: 24.4,
|
1072
|
+
apparentTemperature: 24.4,
|
1073
|
+
dewPoint: 22.92,
|
1074
|
+
humidity: 0.94,
|
1075
|
+
windSpeed: 0.26,
|
1076
|
+
windBearing: 131,
|
1077
|
+
visibility: 9.71,
|
1078
|
+
cloudCover: 0.7,
|
1079
|
+
pressure: 1021.64,
|
1080
|
+
ozone: 357.77
|
1081
|
+
},
|
1082
|
+
{
|
1083
|
+
time: 1424786400,
|
1084
|
+
summary: "Partly Cloudy",
|
1085
|
+
icon: "partly-cloudy-day",
|
1086
|
+
precipIntensity: 0,
|
1087
|
+
precipProbability: 0,
|
1088
|
+
temperature: 25.62,
|
1089
|
+
apparentTemperature: 25.62,
|
1090
|
+
dewPoint: 23.66,
|
1091
|
+
humidity: 0.92,
|
1092
|
+
windSpeed: 0.52,
|
1093
|
+
windBearing: 151,
|
1094
|
+
visibility: 9.88,
|
1095
|
+
cloudCover: 0.57,
|
1096
|
+
pressure: 1021.4,
|
1097
|
+
ozone: 365.26
|
1098
|
+
},
|
1099
|
+
{
|
1100
|
+
time: 1424790000,
|
1101
|
+
summary: "Partly Cloudy",
|
1102
|
+
icon: "partly-cloudy-day",
|
1103
|
+
precipIntensity: 0,
|
1104
|
+
precipProbability: 0,
|
1105
|
+
temperature: 27.81,
|
1106
|
+
apparentTemperature: 27.81,
|
1107
|
+
dewPoint: 24.96,
|
1108
|
+
humidity: 0.89,
|
1109
|
+
windSpeed: 0.94,
|
1110
|
+
windBearing: 147,
|
1111
|
+
visibility: 10,
|
1112
|
+
cloudCover: 0.47,
|
1113
|
+
pressure: 1020.87,
|
1114
|
+
ozone: 372.22
|
1115
|
+
},
|
1116
|
+
{
|
1117
|
+
time: 1424793600,
|
1118
|
+
summary: "Partly Cloudy",
|
1119
|
+
icon: "partly-cloudy-day",
|
1120
|
+
precipIntensity: 0,
|
1121
|
+
precipProbability: 0,
|
1122
|
+
temperature: 30.9,
|
1123
|
+
apparentTemperature: 30.9,
|
1124
|
+
dewPoint: 26.25,
|
1125
|
+
humidity: 0.83,
|
1126
|
+
windSpeed: 1.62,
|
1127
|
+
windBearing: 139,
|
1128
|
+
visibility: 10,
|
1129
|
+
cloudCover: 0.43,
|
1130
|
+
pressure: 1019.71,
|
1131
|
+
ozone: 378.17
|
1132
|
+
},
|
1133
|
+
{
|
1134
|
+
time: 1424797200,
|
1135
|
+
summary: "Partly Cloudy",
|
1136
|
+
icon: "partly-cloudy-day",
|
1137
|
+
precipIntensity: 0,
|
1138
|
+
precipProbability: 0,
|
1139
|
+
temperature: 34.38,
|
1140
|
+
apparentTemperature: 34.38,
|
1141
|
+
dewPoint: 27.26,
|
1142
|
+
humidity: 0.75,
|
1143
|
+
windSpeed: 2.43,
|
1144
|
+
windBearing: 128,
|
1145
|
+
visibility: 10,
|
1146
|
+
cloudCover: 0.41,
|
1147
|
+
pressure: 1018.06,
|
1148
|
+
ozone: 383.59
|
1149
|
+
},
|
1150
|
+
{
|
1151
|
+
time: 1424800800,
|
1152
|
+
summary: "Partly Cloudy",
|
1153
|
+
icon: "partly-cloudy-day",
|
1154
|
+
precipIntensity: 0,
|
1155
|
+
precipProbability: 0,
|
1156
|
+
temperature: 37.05,
|
1157
|
+
apparentTemperature: 34.37,
|
1158
|
+
dewPoint: 27.96,
|
1159
|
+
humidity: 0.69,
|
1160
|
+
windSpeed: 3.56,
|
1161
|
+
windBearing: 120,
|
1162
|
+
visibility: 10,
|
1163
|
+
cloudCover: 0.46,
|
1164
|
+
pressure: 1016.68,
|
1165
|
+
ozone: 388.24
|
1166
|
+
},
|
1167
|
+
{
|
1168
|
+
time: 1424804400,
|
1169
|
+
summary: "Mostly Cloudy",
|
1170
|
+
icon: "partly-cloudy-day",
|
1171
|
+
precipIntensity: 0.004,
|
1172
|
+
precipProbability: 0.1,
|
1173
|
+
precipType: "rain",
|
1174
|
+
temperature: 38.25,
|
1175
|
+
apparentTemperature: 33.7,
|
1176
|
+
dewPoint: 28.47,
|
1177
|
+
humidity: 0.68,
|
1178
|
+
windSpeed: 5.95,
|
1179
|
+
windBearing: 116,
|
1180
|
+
visibility: 10,
|
1181
|
+
cloudCover: 0.61,
|
1182
|
+
pressure: 1016.09,
|
1183
|
+
ozone: 391.96
|
1184
|
+
},
|
1185
|
+
{
|
1186
|
+
time: 1424808000,
|
1187
|
+
summary: "Drizzle",
|
1188
|
+
icon: "rain",
|
1189
|
+
precipIntensity: 0.0086,
|
1190
|
+
precipProbability: 0.52,
|
1191
|
+
precipType: "rain",
|
1192
|
+
temperature: 38.28,
|
1193
|
+
apparentTemperature: 32.07,
|
1194
|
+
dewPoint: 28.61,
|
1195
|
+
humidity: 0.68,
|
1196
|
+
windSpeed: 8.83,
|
1197
|
+
windBearing: 114,
|
1198
|
+
visibility: 10,
|
1199
|
+
cloudCover: 0.81,
|
1200
|
+
pressure: 1015.98,
|
1201
|
+
ozone: 394.91
|
1202
|
+
},
|
1203
|
+
{
|
1204
|
+
time: 1424811600,
|
1205
|
+
summary: "Light Rain",
|
1206
|
+
icon: "rain",
|
1207
|
+
precipIntensity: 0.011,
|
1208
|
+
precipProbability: 0.72,
|
1209
|
+
precipType: "rain",
|
1210
|
+
temperature: 38.27,
|
1211
|
+
apparentTemperature: 31.49,
|
1212
|
+
dewPoint: 29,
|
1213
|
+
humidity: 0.69,
|
1214
|
+
windSpeed: 10.02,
|
1215
|
+
windBearing: 114,
|
1216
|
+
visibility: 10,
|
1217
|
+
cloudCover: 0.94,
|
1218
|
+
pressure: 1016.02,
|
1219
|
+
ozone: 397.32
|
1220
|
+
},
|
1221
|
+
{
|
1222
|
+
time: 1424815200,
|
1223
|
+
summary: "Light Rain",
|
1224
|
+
icon: "rain",
|
1225
|
+
precipIntensity: 0.0092,
|
1226
|
+
precipProbability: 0.61,
|
1227
|
+
precipType: "rain",
|
1228
|
+
temperature: 37.84,
|
1229
|
+
apparentTemperature: 30.85,
|
1230
|
+
dewPoint: 29.2,
|
1231
|
+
humidity: 0.71,
|
1232
|
+
windSpeed: 10.26,
|
1233
|
+
windBearing: 113,
|
1234
|
+
visibility: 10,
|
1235
|
+
cloudCover: 0.89,
|
1236
|
+
pressure: 1016.1,
|
1237
|
+
ozone: 399.9
|
1238
|
+
},
|
1239
|
+
{
|
1240
|
+
time: 1424818800,
|
1241
|
+
summary: "Drizzle",
|
1242
|
+
icon: "rain",
|
1243
|
+
precipIntensity: 0.0052,
|
1244
|
+
precipProbability: 0.19,
|
1245
|
+
precipType: "rain",
|
1246
|
+
temperature: 36.94,
|
1247
|
+
apparentTemperature: 29.95,
|
1248
|
+
dewPoint: 29.21,
|
1249
|
+
humidity: 0.73,
|
1250
|
+
windSpeed: 9.78,
|
1251
|
+
windBearing: 113,
|
1252
|
+
visibility: 10,
|
1253
|
+
cloudCover: 0.78,
|
1254
|
+
pressure: 1016.34,
|
1255
|
+
ozone: 401.95
|
1256
|
+
},
|
1257
|
+
{
|
1258
|
+
time: 1424822400,
|
1259
|
+
summary: "Mostly Cloudy",
|
1260
|
+
icon: "partly-cloudy-day",
|
1261
|
+
precipIntensity: 0.002,
|
1262
|
+
precipProbability: 0.02,
|
1263
|
+
precipType: "rain",
|
1264
|
+
temperature: 35.74,
|
1265
|
+
apparentTemperature: 28.98,
|
1266
|
+
dewPoint: 28.97,
|
1267
|
+
humidity: 0.76,
|
1268
|
+
windSpeed: 8.76,
|
1269
|
+
windBearing: 113,
|
1270
|
+
visibility: 10,
|
1271
|
+
cloudCover: 0.7,
|
1272
|
+
pressure: 1017.14,
|
1273
|
+
ozone: 401.57
|
1274
|
+
},
|
1275
|
+
{
|
1276
|
+
time: 1424826000,
|
1277
|
+
summary: "Mostly Cloudy",
|
1278
|
+
icon: "partly-cloudy-night",
|
1279
|
+
precipIntensity: 0,
|
1280
|
+
precipProbability: 0,
|
1281
|
+
temperature: 34.06,
|
1282
|
+
apparentTemperature: 27.86,
|
1283
|
+
dewPoint: 28.35,
|
1284
|
+
humidity: 0.79,
|
1285
|
+
windSpeed: 7.18,
|
1286
|
+
windBearing: 112,
|
1287
|
+
visibility: 10,
|
1288
|
+
cloudCover: 0.69,
|
1289
|
+
pressure: 1018.38,
|
1290
|
+
ozone: 398.18
|
1291
|
+
},
|
1292
|
+
{
|
1293
|
+
time: 1424829600,
|
1294
|
+
summary: "Mostly Cloudy",
|
1295
|
+
icon: "partly-cloudy-night",
|
1296
|
+
precipIntensity: 0,
|
1297
|
+
precipProbability: 0,
|
1298
|
+
temperature: 32.1,
|
1299
|
+
apparentTemperature: 28.06,
|
1300
|
+
dewPoint: 27.49,
|
1301
|
+
humidity: 0.83,
|
1302
|
+
windSpeed: 4.12,
|
1303
|
+
windBearing: 122,
|
1304
|
+
visibility: 10,
|
1305
|
+
cloudCover: 0.73,
|
1306
|
+
pressure: 1019.87,
|
1307
|
+
ozone: 392.37
|
1308
|
+
},
|
1309
|
+
{
|
1310
|
+
time: 1424833200,
|
1311
|
+
summary: "Mostly Cloudy",
|
1312
|
+
icon: "partly-cloudy-night",
|
1313
|
+
precipIntensity: 0,
|
1314
|
+
precipProbability: 0,
|
1315
|
+
temperature: 30.52,
|
1316
|
+
apparentTemperature: 30.52,
|
1317
|
+
dewPoint: 26.76,
|
1318
|
+
humidity: 0.86,
|
1319
|
+
windSpeed: 2.32,
|
1320
|
+
windBearing: 137,
|
1321
|
+
visibility: 10,
|
1322
|
+
cloudCover: 0.73,
|
1323
|
+
pressure: 1021.09,
|
1324
|
+
ozone: 383.9
|
1325
|
+
},
|
1326
|
+
{
|
1327
|
+
time: 1424836800,
|
1328
|
+
summary: "Mostly Cloudy",
|
1329
|
+
icon: "partly-cloudy-night",
|
1330
|
+
precipIntensity: 0,
|
1331
|
+
precipProbability: 0,
|
1332
|
+
temperature: 29.79,
|
1333
|
+
apparentTemperature: 29.79,
|
1334
|
+
dewPoint: 26.45,
|
1335
|
+
humidity: 0.87,
|
1336
|
+
windSpeed: 0.99,
|
1337
|
+
windBearing: 170,
|
1338
|
+
visibility: 10,
|
1339
|
+
cloudCover: 0.66,
|
1340
|
+
pressure: 1021.89,
|
1341
|
+
ozone: 370.52
|
1342
|
+
}
|
1343
|
+
]
|
1344
|
+
},
|
1345
|
+
daily: {
|
1346
|
+
summary: "Mixed precipitation throughout the week, with temperatures rising to 56°F on Saturday.",
|
1347
|
+
icon: "snow",
|
1348
|
+
data: [
|
1349
|
+
{
|
1350
|
+
time: 1424588400,
|
1351
|
+
summary: "Snow (under 1 in.) starting in the evening.",
|
1352
|
+
icon: "snow",
|
1353
|
+
sunriseTime: 1424612749,
|
1354
|
+
sunsetTime: 1424652937,
|
1355
|
+
moonPhase: 0.14,
|
1356
|
+
precipIntensity: 0.0014,
|
1357
|
+
precipIntensityMax: 0.0118,
|
1358
|
+
precipIntensityMaxTime: 1424671200,
|
1359
|
+
precipProbability: 0.99,
|
1360
|
+
precipType: "rain",
|
1361
|
+
temperatureMin: 20.58,
|
1362
|
+
temperatureMinTime: 1424671200,
|
1363
|
+
temperatureMax: 41.95,
|
1364
|
+
temperatureMaxTime: 1424588400,
|
1365
|
+
apparentTemperatureMin: 7.59,
|
1366
|
+
apparentTemperatureMinTime: 1424671200,
|
1367
|
+
apparentTemperatureMax: 39.02,
|
1368
|
+
apparentTemperatureMaxTime: 1424588400,
|
1369
|
+
dewPoint: 20.76,
|
1370
|
+
humidity: 0.61,
|
1371
|
+
windSpeed: 10.81,
|
1372
|
+
windBearing: 113,
|
1373
|
+
visibility: 9.23,
|
1374
|
+
cloudCover: 0.69,
|
1375
|
+
pressure: 1019.08,
|
1376
|
+
ozone: 336.36
|
1377
|
+
},
|
1378
|
+
{
|
1379
|
+
time: 1424674800,
|
1380
|
+
summary: "Snow (1–2 in.) until evening.",
|
1381
|
+
icon: "snow",
|
1382
|
+
sunriseTime: 1424699077,
|
1383
|
+
sunsetTime: 1424739393,
|
1384
|
+
moonPhase: 0.18,
|
1385
|
+
precipIntensity: 0.0046,
|
1386
|
+
precipIntensityMax: 0.0134,
|
1387
|
+
precipIntensityMaxTime: 1424703600,
|
1388
|
+
precipProbability: 0.81,
|
1389
|
+
precipType: "snow",
|
1390
|
+
precipAccumulation: 1.675,
|
1391
|
+
temperatureMin: 17.52,
|
1392
|
+
temperatureMinTime: 1424700000,
|
1393
|
+
temperatureMax: 30.89,
|
1394
|
+
temperatureMaxTime: 1424736000,
|
1395
|
+
apparentTemperatureMin: 3.21,
|
1396
|
+
apparentTemperatureMinTime: 1424696400,
|
1397
|
+
apparentTemperatureMax: 24,
|
1398
|
+
apparentTemperatureMaxTime: 1424736000,
|
1399
|
+
dewPoint: 18.49,
|
1400
|
+
humidity: 0.79,
|
1401
|
+
windSpeed: 10.55,
|
1402
|
+
windBearing: 119,
|
1403
|
+
visibility: 6.34,
|
1404
|
+
cloudCover: 0.96,
|
1405
|
+
pressure: 1026.26,
|
1406
|
+
ozone: 334.81
|
1407
|
+
},
|
1408
|
+
{
|
1409
|
+
time: 1424761200,
|
1410
|
+
summary: "Light rain in the afternoon.",
|
1411
|
+
icon: "rain",
|
1412
|
+
sunriseTime: 1424785404,
|
1413
|
+
sunsetTime: 1424825849,
|
1414
|
+
moonPhase: 0.22,
|
1415
|
+
precipIntensity: 0.0019,
|
1416
|
+
precipIntensityMax: 0.011,
|
1417
|
+
precipIntensityMaxTime: 1424811600,
|
1418
|
+
precipProbability: 0.72,
|
1419
|
+
precipType: "snow",
|
1420
|
+
precipAccumulation: 0.357,
|
1421
|
+
temperatureMin: 23.25,
|
1422
|
+
temperatureMinTime: 1424775600,
|
1423
|
+
temperatureMax: 38.28,
|
1424
|
+
temperatureMaxTime: 1424808000,
|
1425
|
+
apparentTemperatureMin: 23.25,
|
1426
|
+
apparentTemperatureMinTime: 1424775600,
|
1427
|
+
apparentTemperatureMax: 32.07,
|
1428
|
+
apparentTemperatureMaxTime: 1424808000,
|
1429
|
+
dewPoint: 26.09,
|
1430
|
+
humidity: 0.84,
|
1431
|
+
windSpeed: 3.19,
|
1432
|
+
windBearing: 117,
|
1433
|
+
visibility: 9.81,
|
1434
|
+
cloudCover: 0.69,
|
1435
|
+
pressure: 1019.88,
|
1436
|
+
ozone: 372.38
|
1437
|
+
},
|
1438
|
+
{
|
1439
|
+
time: 1424847600,
|
1440
|
+
summary: "Partly cloudy starting in the afternoon.",
|
1441
|
+
icon: "partly-cloudy-night",
|
1442
|
+
sunriseTime: 1424871730,
|
1443
|
+
sunsetTime: 1424912305,
|
1444
|
+
moonPhase: 0.25,
|
1445
|
+
precipIntensity: 0,
|
1446
|
+
precipIntensityMax: 0,
|
1447
|
+
precipProbability: 0,
|
1448
|
+
temperatureMin: 26.53,
|
1449
|
+
temperatureMinTime: 1424858400,
|
1450
|
+
temperatureMax: 44.96,
|
1451
|
+
temperatureMaxTime: 1424901600,
|
1452
|
+
apparentTemperatureMin: 18.89,
|
1453
|
+
apparentTemperatureMinTime: 1424865600,
|
1454
|
+
apparentTemperatureMax: 37.41,
|
1455
|
+
apparentTemperatureMaxTime: 1424901600,
|
1456
|
+
dewPoint: 24.97,
|
1457
|
+
humidity: 0.7,
|
1458
|
+
windSpeed: 9.9,
|
1459
|
+
windBearing: 294,
|
1460
|
+
visibility: 10,
|
1461
|
+
cloudCover: 0.31,
|
1462
|
+
pressure: 1018.1,
|
1463
|
+
ozone: 325.46
|
1464
|
+
},
|
1465
|
+
{
|
1466
|
+
time: 1424934000,
|
1467
|
+
summary: "Light snow in the morning.",
|
1468
|
+
icon: "snow",
|
1469
|
+
sunriseTime: 1424958056,
|
1470
|
+
sunsetTime: 1424998760,
|
1471
|
+
moonPhase: 0.28,
|
1472
|
+
precipIntensity: 0.001,
|
1473
|
+
precipIntensityMax: 0.0025,
|
1474
|
+
precipIntensityMaxTime: 1424966400,
|
1475
|
+
precipProbability: 0.02,
|
1476
|
+
precipType: "snow",
|
1477
|
+
precipAccumulation: 0.218,
|
1478
|
+
temperatureMin: 27.02,
|
1479
|
+
temperatureMinTime: 1424962800,
|
1480
|
+
temperatureMax: 40.34,
|
1481
|
+
temperatureMaxTime: 1424995200,
|
1482
|
+
apparentTemperatureMin: 18.14,
|
1483
|
+
apparentTemperatureMinTime: 1424962800,
|
1484
|
+
apparentTemperatureMax: 40.34,
|
1485
|
+
apparentTemperatureMaxTime: 1424995200,
|
1486
|
+
dewPoint: 24.21,
|
1487
|
+
humidity: 0.71,
|
1488
|
+
windSpeed: 4.83,
|
1489
|
+
windBearing: 141,
|
1490
|
+
visibility: 10,
|
1491
|
+
cloudCover: 0.66,
|
1492
|
+
pressure: 1020.46,
|
1493
|
+
ozone: 327.19
|
1494
|
+
},
|
1495
|
+
{
|
1496
|
+
time: 1425020400,
|
1497
|
+
summary: "Flurries in the morning.",
|
1498
|
+
icon: "snow",
|
1499
|
+
sunriseTime: 1425044380,
|
1500
|
+
sunsetTime: 1425085215,
|
1501
|
+
moonPhase: 0.32,
|
1502
|
+
precipIntensity: 0.0017,
|
1503
|
+
precipIntensityMax: 0.0049,
|
1504
|
+
precipIntensityMaxTime: 1425092400,
|
1505
|
+
precipProbability: 0.17,
|
1506
|
+
precipType: "snow",
|
1507
|
+
precipAccumulation: 0.336,
|
1508
|
+
temperatureMin: 24.86,
|
1509
|
+
temperatureMinTime: 1425042000,
|
1510
|
+
temperatureMax: 47.03,
|
1511
|
+
temperatureMaxTime: 1425081600,
|
1512
|
+
apparentTemperatureMin: 24.03,
|
1513
|
+
apparentTemperatureMinTime: 1425031200,
|
1514
|
+
apparentTemperatureMax: 45.83,
|
1515
|
+
apparentTemperatureMaxTime: 1425081600,
|
1516
|
+
dewPoint: 24.4,
|
1517
|
+
humidity: 0.64,
|
1518
|
+
windSpeed: 1.79,
|
1519
|
+
windBearing: 179,
|
1520
|
+
cloudCover: 0.52,
|
1521
|
+
pressure: 1013.1,
|
1522
|
+
ozone: 326.76
|
1523
|
+
},
|
1524
|
+
{
|
1525
|
+
time: 1425106800,
|
1526
|
+
summary: "Mostly cloudy throughout the day.",
|
1527
|
+
icon: "partly-cloudy-day",
|
1528
|
+
sunriseTime: 1425130704,
|
1529
|
+
sunsetTime: 1425171669,
|
1530
|
+
moonPhase: 0.35,
|
1531
|
+
precipIntensity: 0.0015,
|
1532
|
+
precipIntensityMax: 0.0038,
|
1533
|
+
precipIntensityMaxTime: 1425182400,
|
1534
|
+
precipProbability: 0.09,
|
1535
|
+
precipType: "rain",
|
1536
|
+
temperatureMin: 33.15,
|
1537
|
+
temperatureMinTime: 1425128400,
|
1538
|
+
temperatureMax: 56.2,
|
1539
|
+
temperatureMaxTime: 1425160800,
|
1540
|
+
apparentTemperatureMin: 32.6,
|
1541
|
+
apparentTemperatureMinTime: 1425139200,
|
1542
|
+
apparentTemperatureMax: 56.2,
|
1543
|
+
apparentTemperatureMaxTime: 1425160800,
|
1544
|
+
dewPoint: 28.37,
|
1545
|
+
humidity: 0.54,
|
1546
|
+
windSpeed: 8.17,
|
1547
|
+
windBearing: 232,
|
1548
|
+
cloudCover: 0.88,
|
1549
|
+
pressure: 1007.81,
|
1550
|
+
ozone: 297.71
|
1551
|
+
},
|
1552
|
+
{
|
1553
|
+
time: 1425193200,
|
1554
|
+
summary: "Light rain starting in the afternoon.",
|
1555
|
+
icon: "rain",
|
1556
|
+
sunriseTime: 1425217026,
|
1557
|
+
sunsetTime: 1425258123,
|
1558
|
+
moonPhase: 0.38,
|
1559
|
+
precipIntensity: 0.0069,
|
1560
|
+
precipIntensityMax: 0.0193,
|
1561
|
+
precipIntensityMaxTime: 1425268800,
|
1562
|
+
precipProbability: 0.87,
|
1563
|
+
precipType: "rain",
|
1564
|
+
temperatureMin: 36.79,
|
1565
|
+
temperatureMinTime: 1425214800,
|
1566
|
+
temperatureMax: 51.01,
|
1567
|
+
temperatureMaxTime: 1425243600,
|
1568
|
+
apparentTemperatureMin: 29,
|
1569
|
+
apparentTemperatureMinTime: 1425218400,
|
1570
|
+
apparentTemperatureMax: 51.01,
|
1571
|
+
apparentTemperatureMaxTime: 1425243600,
|
1572
|
+
dewPoint: 32.81,
|
1573
|
+
humidity: 0.63,
|
1574
|
+
windSpeed: 9.99,
|
1575
|
+
windBearing: 236,
|
1576
|
+
cloudCover: 0.64,
|
1577
|
+
pressure: 1010.84,
|
1578
|
+
ozone: 297.55
|
1579
|
+
}
|
1580
|
+
]
|
1581
|
+
},
|
1582
|
+
alerts: [
|
1583
|
+
{
|
1584
|
+
title: "Winter Weather Advisory for Sandoval, NM",
|
1585
|
+
time: 1424659320,
|
1586
|
+
expires: 1424714400,
|
1587
|
+
description: "...WINTER STORM TODAY THROUGH MONDAY MORNING... .A MAJOR COLD FRONT WILL REMAIN DRAPED NEAR THE CONTINENTAL DIVIDE OVERNIGHT. WESTERLY WINDS ALOFT WILL CONTINUE TO BRING MOISTURE OVER THE COLD DOME FOUND BEHIND THE COLD FRONT. THE COMBINATION OF THESE FEATURES WILL PRODUCE ACCUMULATING SNOW OVER CENTRAL AND EASTERN PORTIONS OF NEW MEXICO. THE NORTH CENTRAL MOUNTAINS AND EAST SLOPES OF THE CENTRAL MOUNTAINS WILL BE FAVORED TONIGHT. SNOW WILL CONTINUE INTO MONDAY AND MONDAY NIGHT. FOR THE LATEST NEW MEXICO ROAD CONDITIONS CALL 511 OR VISIT NMROADS.COM. ...WINTER WEATHER ADVISORY REMAINS IN EFFECT UNTIL 11 AM MST MONDAY... A WINTER WEATHER ADVISORY FOR SNOW REMAINS IN EFFECT UNTIL 11 AM MST MONDAY. * SNOW ACCUMULATIONS...STORM TOTAL BETWEEN 1 TO 4 INCHES. * TIMING...WHILE FLURRIES OR A MIX OF SNOW AND RAIN WILL FALL MOST OF TONIGHT...SNOW IS NOT EXPECTED TO ACCUMULATE UNTIL LATE TONIGHT AND MONDAY. * WINDS...SOUTHEAST 10 TO 20 MPH. OCCASIONAL GUSTS TO AROUND 30 MPH. * SNOW LEVELS...SNOW LEVELS WILL GENERALLY REMAIN ABOVE 6000 FEET TONIGHT INTO MONDAY MORNING BUT RISE DURING THE AFTERNOON. * LOCAL IMPACTS...PERIODS OF SNOW WILL RESULT IN REDUCED VISIBILITIES. ROADS MAY BECOME SNOWPACKED AND ICY...ESPECIALLY ACROSS THE HIGHER ELEVATIONS. A WINTER WEATHER ADVISORY FOR SNOW AND BLOWING SNOW MEANS THAT VISIBILITIES WILL BE RESTRICTED DUE TO A COMBINATION OF FALLING AND BLOWING SNOW. && ",
|
1588
|
+
uri: "http://alerts.weather.gov/cap/wwacapget.php?x=NM125396E2B048.WinterWeatherAdvisory.125396E510E0NM.ABQWSWABQ.cd33a7c5b429ad8c7537aa588f73b40e"
|
1589
|
+
},
|
1590
|
+
{
|
1591
|
+
title: "Wind Advisory for Sandoval, NM",
|
1592
|
+
time: 1424644740,
|
1593
|
+
expires: 1424671200,
|
1594
|
+
description: "...EAST CANYON WINDS WILL CONTINUE THIS EVENING... .A STRONG BACKDOOR COLD FRONT PUSHED THROUGH THE CANYONS OF THE CENTRAL MOUNTAIN CHAIN THIS MORNING RESULTING IN STRONG EAST WINDS IN THE RIO GRANDE AND UPPER TULAROSA VALLEYS...IMPACTING AREAS FROM ALBUQUERQUE TO BERNARDO AND CARRIZOZO. GUSTS UP TO 50 MPH ARE POSSIBLE. STRONG EAST WINDS WILL CONTINUE THROUGH THE EVENING HOURS. ...WIND ADVISORY REMAINS IN EFFECT UNTIL 11 PM MST THIS EVENING... * LOCATION...THIS INCLUDES THE MIDDLE AND LOWER RIO GRANDE VALLEY AND UPPER TULAROSA VALLEY. * WINDS...EASTERLY 25 TO 35 MPH WITH GUSTS UP TO 50 MPH... ESPECIALLY ALONG THE EASTERN FOOTHILLS. * TIMING...EAST CANYON WINDS WILL CONTINUE THROUGH THE EVENING FOR ALL AREAS. * VISIBILITY...NO VISIBILITY RESTRICTIONS ARE EXPECTED. * LOCAL IMPACTS...STRONG CROSS WINDS WILL IMPACT HIGH PROFILE VEHICLES ON NORTH TO SOUTH ORIENTED ROADWAYS...INCLUDING INTERSTATE 25. ",
|
1595
|
+
uri: "http://alerts.weather.gov/cap/wwacapget.php?x=NM125396D67A1C.WindAdvisory.125396E33C20NM.ABQNPWABQ.f93820c21cc992cfc3bb99cd35d106d0"
|
1596
|
+
}
|
1597
|
+
],
|
1598
|
+
flags: {
|
1599
|
+
sources: [
|
1600
|
+
"nwspa",
|
1601
|
+
"isd",
|
1602
|
+
"nearest-precip",
|
1603
|
+
"fnmoc",
|
1604
|
+
"sref",
|
1605
|
+
"rtma",
|
1606
|
+
"rap",
|
1607
|
+
"nam",
|
1608
|
+
"cmc",
|
1609
|
+
"gfs",
|
1610
|
+
"madis",
|
1611
|
+
"lamp",
|
1612
|
+
"darksky"
|
1613
|
+
],
|
1614
|
+
isd-stations: [
|
1615
|
+
"723647-03034",
|
1616
|
+
"723647-99999",
|
1617
|
+
"723650-23050",
|
1618
|
+
"999999-23056",
|
1619
|
+
"999999-23073"
|
1620
|
+
],
|
1621
|
+
madis-stations: [
|
1622
|
+
"AR227",
|
1623
|
+
"AS993",
|
1624
|
+
"AU083",
|
1625
|
+
"AU308",
|
1626
|
+
"C2906",
|
1627
|
+
"C8122",
|
1628
|
+
"C9425",
|
1629
|
+
"D1490",
|
1630
|
+
"D2453",
|
1631
|
+
"D4353",
|
1632
|
+
"D5430",
|
1633
|
+
"D8852",
|
1634
|
+
"E0533",
|
1635
|
+
"E4172",
|
1636
|
+
"NM2ZJ",
|
1637
|
+
"SNLN5"
|
1638
|
+
],
|
1639
|
+
lamp-stations: [
|
1640
|
+
"KABQ",
|
1641
|
+
"KAEG",
|
1642
|
+
"KSAF"
|
1643
|
+
],
|
1644
|
+
darksky-stations: [
|
1645
|
+
"KABX"
|
1646
|
+
],
|
1647
|
+
units: "us"
|
1648
|
+
}
|
1649
|
+
}
|