simple-dwd-weatherforecast 2.1.4__py3-none-any.whl → 2.1.5__py3-none-any.whl
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.
- simple_dwd_weatherforecast/dwdforecast.py +6 -1
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/METADATA +2 -1
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/RECORD +10 -10
- tests/dummy_data.py +4695 -1
- tests/dummy_data_full.py +4695 -1
- tests/test_get_day_values.py +110 -56
- tests/test_get_timeframe_values.py +11 -0
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/LICENCE +0 -0
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/WHEEL +0 -0
- {simple_dwd_weatherforecast-2.1.4.dist-info → simple_dwd_weatherforecast-2.1.5.dist-info}/top_level.txt +0 -0
tests/test_get_day_values.py
CHANGED
@@ -15,7 +15,6 @@ class Weather_get_day_values(unittest.TestCase):
|
|
15
15
|
{
|
16
16
|
"TTT": 275.05,
|
17
17
|
"Td": 273.25,
|
18
|
-
"condition": "45",
|
19
18
|
"PPPP": 103040.0,
|
20
19
|
"DD": 55.0,
|
21
20
|
"FF": 1.54,
|
@@ -28,12 +27,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
28
27
|
"SunD1": 0.0,
|
29
28
|
"Rad1h": None,
|
30
29
|
"wwM": 2.0,
|
30
|
+
"PEvap": None,
|
31
|
+
"condition": "45",
|
31
32
|
"humidity": 87.9,
|
32
33
|
},
|
33
34
|
{
|
34
35
|
"TTT": 274.55,
|
35
36
|
"Td": 273.15,
|
36
|
-
"condition": "75",
|
37
37
|
"PPPP": 103030.0,
|
38
38
|
"DD": 52.0,
|
39
39
|
"FF": 1.54,
|
@@ -46,12 +46,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
46
46
|
"SunD1": 0.0,
|
47
47
|
"Rad1h": None,
|
48
48
|
"wwM": 2.0,
|
49
|
+
"PEvap": None,
|
50
|
+
"condition": "75",
|
49
51
|
"humidity": 90.4,
|
50
52
|
},
|
51
53
|
{
|
52
54
|
"TTT": 274.35,
|
53
55
|
"Td": 273.15,
|
54
|
-
"condition": "0",
|
55
56
|
"PPPP": 103010.0,
|
56
57
|
"DD": 52.0,
|
57
58
|
"FF": 1.54,
|
@@ -64,12 +65,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
64
65
|
"SunD1": 0.0,
|
65
66
|
"Rad1h": None,
|
66
67
|
"wwM": 3.0,
|
68
|
+
"PEvap": None,
|
69
|
+
"condition": "0",
|
67
70
|
"humidity": 91.7,
|
68
71
|
},
|
69
72
|
{
|
70
73
|
"TTT": 274.35,
|
71
74
|
"Td": 273.25,
|
72
|
-
"condition": "0",
|
73
75
|
"PPPP": 103000.0,
|
74
76
|
"DD": 53.0,
|
75
77
|
"FF": 1.54,
|
@@ -82,12 +84,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
82
84
|
"SunD1": 0.0,
|
83
85
|
"Rad1h": None,
|
84
86
|
"wwM": 5.0,
|
87
|
+
"PEvap": None,
|
88
|
+
"condition": "0",
|
85
89
|
"humidity": 92.4,
|
86
90
|
},
|
87
91
|
{
|
88
92
|
"TTT": 274.35,
|
89
93
|
"Td": 273.35,
|
90
|
-
"condition": "0",
|
91
94
|
"PPPP": 102970.0,
|
92
95
|
"DD": 51.0,
|
93
96
|
"FF": 1.54,
|
@@ -100,12 +103,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
100
103
|
"SunD1": 0.0,
|
101
104
|
"Rad1h": None,
|
102
105
|
"wwM": 6.0,
|
106
|
+
"PEvap": None,
|
107
|
+
"condition": "0",
|
103
108
|
"humidity": 93.0,
|
104
109
|
},
|
105
110
|
{
|
106
111
|
"TTT": 274.55,
|
107
112
|
"Td": 273.45,
|
108
|
-
"condition": "0",
|
109
113
|
"PPPP": 102950.0,
|
110
114
|
"DD": 53.0,
|
111
115
|
"FF": 1.54,
|
@@ -118,12 +122,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
118
122
|
"SunD1": 0.0,
|
119
123
|
"Rad1h": None,
|
120
124
|
"wwM": 6.0,
|
125
|
+
"PEvap": None,
|
126
|
+
"condition": "0",
|
121
127
|
"humidity": 92.4,
|
122
128
|
},
|
123
129
|
{
|
124
130
|
"TTT": 274.85,
|
125
131
|
"Td": 273.55,
|
126
|
-
"condition": "0",
|
127
132
|
"PPPP": 102950.0,
|
128
133
|
"DD": 64.0,
|
129
134
|
"FF": 1.54,
|
@@ -136,12 +141,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
136
141
|
"SunD1": 0.0,
|
137
142
|
"Rad1h": None,
|
138
143
|
"wwM": 6.0,
|
144
|
+
"PEvap": 0.4,
|
145
|
+
"condition": "0",
|
139
146
|
"humidity": 91.1,
|
140
147
|
},
|
141
148
|
{
|
142
149
|
"TTT": 275.75,
|
143
150
|
"Td": 273.85,
|
144
|
-
"condition": "1",
|
145
151
|
"PPPP": 102930.0,
|
146
152
|
"DD": 65.0,
|
147
153
|
"FF": 1.54,
|
@@ -154,12 +160,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
154
160
|
"SunD1": 660.0,
|
155
161
|
"Rad1h": None,
|
156
162
|
"wwM": 7.0,
|
163
|
+
"PEvap": None,
|
164
|
+
"condition": "1",
|
157
165
|
"humidity": 87.3,
|
158
166
|
},
|
159
167
|
{
|
160
168
|
"TTT": 276.95,
|
161
169
|
"Td": 274.35,
|
162
|
-
"condition": "1",
|
163
170
|
"PPPP": 102920.0,
|
164
171
|
"DD": 69.0,
|
165
172
|
"FF": 1.54,
|
@@ -172,12 +179,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
172
179
|
"SunD1": 1260.0,
|
173
180
|
"Rad1h": None,
|
174
181
|
"wwM": 7.0,
|
182
|
+
"PEvap": None,
|
183
|
+
"condition": "1",
|
175
184
|
"humidity": 83.1,
|
176
185
|
},
|
177
186
|
{
|
178
187
|
"TTT": 278.05,
|
179
188
|
"Td": 274.75,
|
180
|
-
"condition": "1",
|
181
189
|
"PPPP": 102900.0,
|
182
190
|
"DD": 72.0,
|
183
191
|
"FF": 1.54,
|
@@ -190,12 +198,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
190
198
|
"SunD1": 1920.0,
|
191
199
|
"Rad1h": None,
|
192
200
|
"wwM": 7.0,
|
201
|
+
"PEvap": None,
|
202
|
+
"condition": "1",
|
193
203
|
"humidity": 79.2,
|
194
204
|
},
|
195
205
|
{
|
196
206
|
"TTT": 279.25,
|
197
207
|
"Td": 275.15,
|
198
|
-
"condition": "1",
|
199
208
|
"PPPP": 102860.0,
|
200
209
|
"DD": 85.0,
|
201
210
|
"FF": 1.54,
|
@@ -208,12 +217,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
208
217
|
"SunD1": 2340.0,
|
209
218
|
"Rad1h": None,
|
210
219
|
"wwM": 5.0,
|
220
|
+
"PEvap": None,
|
221
|
+
"condition": "1",
|
211
222
|
"humidity": 75.0,
|
212
223
|
},
|
213
224
|
{
|
214
225
|
"TTT": 280.55,
|
215
226
|
"Td": 275.35,
|
216
|
-
"condition": "1",
|
217
227
|
"PPPP": 102800.0,
|
218
228
|
"DD": 96.0,
|
219
229
|
"FF": 1.54,
|
@@ -226,12 +236,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
226
236
|
"SunD1": 2580.0,
|
227
237
|
"Rad1h": None,
|
228
238
|
"wwM": 3.0,
|
239
|
+
"PEvap": None,
|
240
|
+
"condition": "1",
|
229
241
|
"humidity": 69.6,
|
230
242
|
},
|
231
243
|
{
|
232
244
|
"TTT": 281.65,
|
233
245
|
"Td": 275.85,
|
234
|
-
"condition": "1",
|
235
246
|
"PPPP": 102720.0,
|
236
247
|
"DD": 87.0,
|
237
248
|
"FF": 1.54,
|
@@ -244,12 +255,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
244
255
|
"SunD1": 2880.0,
|
245
256
|
"Rad1h": None,
|
246
257
|
"wwM": 1.0,
|
258
|
+
"PEvap": None,
|
259
|
+
"condition": "1",
|
247
260
|
"humidity": 66.9,
|
248
261
|
},
|
249
262
|
{
|
250
263
|
"TTT": 282.45,
|
251
264
|
"Td": 275.95,
|
252
|
-
"condition": "1",
|
253
265
|
"PPPP": 102670.0,
|
254
266
|
"DD": 90.0,
|
255
267
|
"FF": 1.54,
|
@@ -262,12 +274,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
262
274
|
"SunD1": 2880.0,
|
263
275
|
"Rad1h": None,
|
264
276
|
"wwM": 1.0,
|
277
|
+
"PEvap": None,
|
278
|
+
"condition": "1",
|
265
279
|
"humidity": 63.8,
|
266
280
|
},
|
267
281
|
{
|
268
282
|
"TTT": 282.95,
|
269
283
|
"Td": 276.15,
|
270
|
-
"condition": "1",
|
271
284
|
"PPPP": 102620.0,
|
272
285
|
"DD": 87.0,
|
273
286
|
"FF": 1.54,
|
@@ -280,12 +293,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
280
293
|
"SunD1": 2760.0,
|
281
294
|
"Rad1h": None,
|
282
295
|
"wwM": 0.0,
|
296
|
+
"PEvap": None,
|
297
|
+
"condition": "1",
|
283
298
|
"humidity": 62.6,
|
284
299
|
},
|
285
300
|
{
|
286
301
|
"TTT": 282.25,
|
287
302
|
"Td": 276.25,
|
288
|
-
"condition": "1",
|
289
303
|
"PPPP": 102590.0,
|
290
304
|
"DD": 99.0,
|
291
305
|
"FF": 1.54,
|
@@ -298,12 +312,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
298
312
|
"SunD1": 2220.0,
|
299
313
|
"Rad1h": None,
|
300
314
|
"wwM": 0.0,
|
315
|
+
"PEvap": None,
|
316
|
+
"condition": "1",
|
301
317
|
"humidity": 66.1,
|
302
318
|
},
|
303
319
|
{
|
304
320
|
"TTT": 281.65,
|
305
321
|
"Td": 276.55,
|
306
|
-
"condition": "1",
|
307
322
|
"PPPP": 102600.0,
|
308
323
|
"DD": 99.0,
|
309
324
|
"FF": 1.54,
|
@@ -316,12 +331,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
316
331
|
"SunD1": 1500.0,
|
317
332
|
"Rad1h": None,
|
318
333
|
"wwM": 1.0,
|
334
|
+
"PEvap": None,
|
335
|
+
"condition": "1",
|
319
336
|
"humidity": 70.3,
|
320
337
|
},
|
321
338
|
{
|
322
339
|
"TTT": 280.65,
|
323
340
|
"Td": 276.55,
|
324
|
-
"condition": "1",
|
325
341
|
"PPPP": 102600.0,
|
326
342
|
"DD": 105.0,
|
327
343
|
"FF": 1.54,
|
@@ -334,12 +350,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
334
350
|
"SunD1": 480.0,
|
335
351
|
"Rad1h": None,
|
336
352
|
"wwM": 1.0,
|
353
|
+
"PEvap": None,
|
354
|
+
"condition": "1",
|
337
355
|
"humidity": 75.2,
|
338
356
|
},
|
339
357
|
{
|
340
358
|
"TTT": 279.35,
|
341
359
|
"Td": 276.85,
|
342
|
-
"condition": "1",
|
343
360
|
"PPPP": 102640.0,
|
344
361
|
"DD": 89.0,
|
345
362
|
"FF": 1.54,
|
@@ -352,12 +369,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
352
369
|
"SunD1": 0.0,
|
353
370
|
"Rad1h": None,
|
354
371
|
"wwM": 1.0,
|
372
|
+
"PEvap": None,
|
373
|
+
"condition": "1",
|
355
374
|
"humidity": 84.0,
|
356
375
|
},
|
357
376
|
{
|
358
377
|
"TTT": 278.35,
|
359
378
|
"Td": 276.65,
|
360
|
-
"condition": "0",
|
361
379
|
"PPPP": 102640.0,
|
362
380
|
"DD": 81.0,
|
363
381
|
"FF": 1.54,
|
@@ -370,12 +388,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
370
388
|
"SunD1": 0.0,
|
371
389
|
"Rad1h": None,
|
372
390
|
"wwM": 2.0,
|
391
|
+
"PEvap": None,
|
392
|
+
"condition": "0",
|
373
393
|
"humidity": 88.8,
|
374
394
|
},
|
375
395
|
{
|
376
396
|
"TTT": 277.75,
|
377
397
|
"Td": 276.65,
|
378
|
-
"condition": "0",
|
379
398
|
"PPPP": 102630.0,
|
380
399
|
"DD": 65.0,
|
381
400
|
"FF": 1.54,
|
@@ -388,12 +407,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
388
407
|
"SunD1": 0.0,
|
389
408
|
"Rad1h": None,
|
390
409
|
"wwM": 2.0,
|
410
|
+
"PEvap": None,
|
411
|
+
"condition": "0",
|
391
412
|
"humidity": 92.6,
|
392
413
|
},
|
393
414
|
{
|
394
415
|
"TTT": 277.35,
|
395
416
|
"Td": 276.25,
|
396
|
-
"condition": "0",
|
397
417
|
"PPPP": 102630.0,
|
398
418
|
"DD": 57.0,
|
399
419
|
"FF": 1.03,
|
@@ -406,12 +426,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
406
426
|
"SunD1": 0.0,
|
407
427
|
"Rad1h": None,
|
408
428
|
"wwM": 2.0,
|
429
|
+
"PEvap": None,
|
430
|
+
"condition": "0",
|
409
431
|
"humidity": 92.5,
|
410
432
|
},
|
411
433
|
{
|
412
434
|
"TTT": 276.85,
|
413
435
|
"Td": 275.85,
|
414
|
-
"condition": "0",
|
415
436
|
"PPPP": 102600.0,
|
416
437
|
"DD": 55.0,
|
417
438
|
"FF": 1.03,
|
@@ -424,12 +445,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
424
445
|
"SunD1": 0.0,
|
425
446
|
"Rad1h": None,
|
426
447
|
"wwM": 2.0,
|
448
|
+
"PEvap": None,
|
449
|
+
"condition": "0",
|
427
450
|
"humidity": 93.2,
|
428
451
|
},
|
429
452
|
{
|
430
453
|
"TTT": 276.65,
|
431
454
|
"Td": 275.75,
|
432
|
-
"condition": "0",
|
433
455
|
"PPPP": 102590.0,
|
434
456
|
"DD": 58.0,
|
435
457
|
"FF": 1.54,
|
@@ -442,10 +464,11 @@ class Weather_get_day_values(unittest.TestCase):
|
|
442
464
|
"SunD1": 0.0,
|
443
465
|
"Rad1h": None,
|
444
466
|
"wwM": 3.0,
|
467
|
+
"PEvap": None,
|
468
|
+
"condition": "0",
|
445
469
|
"humidity": 93.8,
|
446
470
|
},
|
447
471
|
]
|
448
|
-
|
449
472
|
self.assertEqual(
|
450
473
|
self.dwd_weather.get_day_values(test_time),
|
451
474
|
test_data,
|
@@ -458,7 +481,6 @@ class Weather_get_day_values(unittest.TestCase):
|
|
458
481
|
{
|
459
482
|
"TTT": 279.05,
|
460
483
|
"Td": 277.85,
|
461
|
-
"condition": "3",
|
462
484
|
"PPPP": 101960.0,
|
463
485
|
"DD": 153.0,
|
464
486
|
"FF": 2.06,
|
@@ -471,12 +493,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
471
493
|
"SunD1": 0.0,
|
472
494
|
"Rad1h": None,
|
473
495
|
"wwM": 2.0,
|
496
|
+
"PEvap": None,
|
497
|
+
"condition": "3",
|
474
498
|
"humidity": 92.0,
|
475
499
|
},
|
476
500
|
{
|
477
501
|
"TTT": 278.95,
|
478
502
|
"Td": 277.85,
|
479
|
-
"condition": "3",
|
480
503
|
"PPPP": 101950.0,
|
481
504
|
"DD": 155.0,
|
482
505
|
"FF": 2.06,
|
@@ -489,12 +512,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
489
512
|
"SunD1": 0.0,
|
490
513
|
"Rad1h": None,
|
491
514
|
"wwM": 2.0,
|
515
|
+
"PEvap": None,
|
516
|
+
"condition": "3",
|
492
517
|
"humidity": 92.6,
|
493
518
|
},
|
494
519
|
{
|
495
520
|
"TTT": 278.85,
|
496
521
|
"Td": 277.75,
|
497
|
-
"condition": "3",
|
498
522
|
"PPPP": 101930.0,
|
499
523
|
"DD": 159.0,
|
500
524
|
"FF": 2.06,
|
@@ -507,12 +531,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
507
531
|
"SunD1": 0.0,
|
508
532
|
"Rad1h": None,
|
509
533
|
"wwM": 3.0,
|
534
|
+
"PEvap": None,
|
535
|
+
"condition": "3",
|
510
536
|
"humidity": 92.6,
|
511
537
|
},
|
512
538
|
{
|
513
539
|
"TTT": 278.75,
|
514
540
|
"Td": 277.75,
|
515
|
-
"condition": "3",
|
516
541
|
"PPPP": 101910.0,
|
517
542
|
"DD": 155.0,
|
518
543
|
"FF": 2.06,
|
@@ -525,12 +550,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
525
550
|
"SunD1": 0.0,
|
526
551
|
"Rad1h": None,
|
527
552
|
"wwM": 6.0,
|
553
|
+
"PEvap": None,
|
554
|
+
"condition": "3",
|
528
555
|
"humidity": 93.3,
|
529
556
|
},
|
530
557
|
{
|
531
558
|
"TTT": 278.75,
|
532
559
|
"Td": 277.95,
|
533
|
-
"condition": "3",
|
534
560
|
"PPPP": 101900.0,
|
535
561
|
"DD": 161.0,
|
536
562
|
"FF": 2.06,
|
@@ -543,12 +569,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
543
569
|
"SunD1": 0.0,
|
544
570
|
"Rad1h": None,
|
545
571
|
"wwM": 6.0,
|
572
|
+
"PEvap": None,
|
573
|
+
"condition": "3",
|
546
574
|
"humidity": 94.6,
|
547
575
|
},
|
548
576
|
{
|
549
577
|
"TTT": 277.75,
|
550
578
|
"Td": 276.55,
|
551
|
-
"condition": "3",
|
552
579
|
"PPPP": 101700.0,
|
553
580
|
"DD": 163.0,
|
554
581
|
"FF": 2.57,
|
@@ -561,12 +588,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
561
588
|
"SunD1": 0.0,
|
562
589
|
"Rad1h": None,
|
563
590
|
"wwM": 5.0,
|
591
|
+
"PEvap": None,
|
592
|
+
"condition": "3",
|
564
593
|
"humidity": 91.9,
|
565
594
|
},
|
566
595
|
{
|
567
596
|
"TTT": 277.85,
|
568
597
|
"Td": 276.65,
|
569
|
-
"condition": "3",
|
570
598
|
"PPPP": 101700.0,
|
571
599
|
"DD": 164.0,
|
572
600
|
"FF": 3.09,
|
@@ -579,12 +607,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
579
607
|
"SunD1": 0.0,
|
580
608
|
"Rad1h": None,
|
581
609
|
"wwM": 5.0,
|
610
|
+
"PEvap": None,
|
611
|
+
"condition": "3",
|
582
612
|
"humidity": 91.9,
|
583
613
|
},
|
584
614
|
{
|
585
615
|
"TTT": 277.95,
|
586
616
|
"Td": 276.65,
|
587
|
-
"condition": "3",
|
588
617
|
"PPPP": 101720.0,
|
589
618
|
"DD": 165.0,
|
590
619
|
"FF": 3.09,
|
@@ -597,12 +626,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
597
626
|
"SunD1": 60.0,
|
598
627
|
"Rad1h": None,
|
599
628
|
"wwM": 7.0,
|
629
|
+
"PEvap": None,
|
630
|
+
"condition": "3",
|
600
631
|
"humidity": 91.3,
|
601
632
|
},
|
602
633
|
{
|
603
634
|
"TTT": 278.25,
|
604
635
|
"Td": 276.85,
|
605
|
-
"condition": "3",
|
606
636
|
"PPPP": 101740.0,
|
607
637
|
"DD": 169.0,
|
608
638
|
"FF": 3.09,
|
@@ -615,12 +645,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
615
645
|
"SunD1": 240.0,
|
616
646
|
"Rad1h": None,
|
617
647
|
"wwM": 6.0,
|
648
|
+
"PEvap": None,
|
649
|
+
"condition": "3",
|
618
650
|
"humidity": 90.7,
|
619
651
|
},
|
620
652
|
{
|
621
653
|
"TTT": 278.85,
|
622
654
|
"Td": 277.05,
|
623
|
-
"condition": "3",
|
624
655
|
"PPPP": 101750.0,
|
625
656
|
"DD": 172.0,
|
626
657
|
"FF": 3.09,
|
@@ -633,12 +664,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
633
664
|
"SunD1": 480.0,
|
634
665
|
"Rad1h": None,
|
635
666
|
"wwM": 5.0,
|
667
|
+
"PEvap": None,
|
668
|
+
"condition": "3",
|
636
669
|
"humidity": 88.2,
|
637
670
|
},
|
638
671
|
{
|
639
672
|
"TTT": 279.45,
|
640
673
|
"Td": 277.25,
|
641
|
-
"condition": "-",
|
642
674
|
"PPPP": 101750.0,
|
643
675
|
"DD": 178.0,
|
644
676
|
"FF": 3.09,
|
@@ -651,6 +683,8 @@ class Weather_get_day_values(unittest.TestCase):
|
|
651
683
|
"SunD1": 600.0,
|
652
684
|
"Rad1h": None,
|
653
685
|
"wwM": 4.0,
|
686
|
+
"PEvap": None,
|
687
|
+
"condition": "-",
|
654
688
|
"humidity": 85.8,
|
655
689
|
},
|
656
690
|
]
|
@@ -665,7 +699,6 @@ class Weather_get_day_values(unittest.TestCase):
|
|
665
699
|
{
|
666
700
|
"TTT": 272.95,
|
667
701
|
"Td": 272.65,
|
668
|
-
"condition": "2",
|
669
702
|
"PPPP": 103640.0,
|
670
703
|
"DD": 50.0,
|
671
704
|
"FF": 1.54,
|
@@ -678,12 +711,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
678
711
|
"SunD1": 0.0,
|
679
712
|
"Rad1h": None,
|
680
713
|
"wwM": 8.0,
|
714
|
+
"PEvap": None,
|
715
|
+
"condition": "2",
|
681
716
|
"humidity": 97.8,
|
682
717
|
},
|
683
718
|
{
|
684
719
|
"TTT": 273.05,
|
685
720
|
"Td": 272.45,
|
686
|
-
"condition": "3",
|
687
721
|
"PPPP": 103620.0,
|
688
722
|
"DD": 52.0,
|
689
723
|
"FF": 1.54,
|
@@ -696,12 +730,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
696
730
|
"SunD1": 0.0,
|
697
731
|
"Rad1h": None,
|
698
732
|
"wwM": 9.0,
|
733
|
+
"PEvap": None,
|
734
|
+
"condition": "3",
|
699
735
|
"humidity": 95.7,
|
700
736
|
},
|
701
737
|
{
|
702
738
|
"TTT": 273.65,
|
703
739
|
"Td": 272.55,
|
704
|
-
"condition": "1",
|
705
740
|
"PPPP": 103610.0,
|
706
741
|
"DD": 51.0,
|
707
742
|
"FF": 2.06,
|
@@ -714,12 +749,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
714
749
|
"SunD1": 0.0,
|
715
750
|
"Rad1h": None,
|
716
751
|
"wwM": 10.0,
|
752
|
+
"PEvap": None,
|
753
|
+
"condition": "1",
|
717
754
|
"humidity": 92.3,
|
718
755
|
},
|
719
756
|
{
|
720
757
|
"TTT": 274.55,
|
721
758
|
"Td": 272.85,
|
722
|
-
"condition": "45",
|
723
759
|
"PPPP": 103610.0,
|
724
760
|
"DD": 52.0,
|
725
761
|
"FF": 2.06,
|
@@ -732,12 +768,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
732
768
|
"SunD1": 780.0,
|
733
769
|
"Rad1h": None,
|
734
770
|
"wwM": 9.0,
|
771
|
+
"PEvap": None,
|
772
|
+
"condition": "45",
|
735
773
|
"humidity": 88.4,
|
736
774
|
},
|
737
775
|
{
|
738
776
|
"TTT": 275.95,
|
739
777
|
"Td": 273.55,
|
740
|
-
"condition": "49",
|
741
778
|
"PPPP": 103610.0,
|
742
779
|
"DD": 52.0,
|
743
780
|
"FF": 2.06,
|
@@ -750,12 +787,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
750
787
|
"SunD1": 1500.0,
|
751
788
|
"Rad1h": None,
|
752
789
|
"wwM": 8.0,
|
790
|
+
"PEvap": None,
|
791
|
+
"condition": "49",
|
753
792
|
"humidity": 84.2,
|
754
793
|
},
|
755
794
|
{
|
756
795
|
"TTT": 277.65,
|
757
796
|
"Td": 273.85,
|
758
|
-
"condition": "1",
|
759
797
|
"PPPP": 103590.0,
|
760
798
|
"DD": 55.0,
|
761
799
|
"FF": 2.06,
|
@@ -768,12 +806,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
768
806
|
"SunD1": 2160.0,
|
769
807
|
"Rad1h": None,
|
770
808
|
"wwM": 7.0,
|
809
|
+
"PEvap": None,
|
810
|
+
"condition": "1",
|
771
811
|
"humidity": 76.4,
|
772
812
|
},
|
773
813
|
{
|
774
814
|
"TTT": 279.15,
|
775
815
|
"Td": 273.85,
|
776
|
-
"condition": "1",
|
777
816
|
"PPPP": 103540.0,
|
778
817
|
"DD": 55.0,
|
779
818
|
"FF": 2.06,
|
@@ -786,12 +825,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
786
825
|
"SunD1": 2700.0,
|
787
826
|
"Rad1h": None,
|
788
827
|
"wwM": 5.0,
|
828
|
+
"PEvap": None,
|
829
|
+
"condition": "1",
|
789
830
|
"humidity": 68.8,
|
790
831
|
},
|
791
832
|
{
|
792
833
|
"TTT": 280.85,
|
793
834
|
"Td": 273.55,
|
794
|
-
"condition": "1",
|
795
835
|
"PPPP": 103500.0,
|
796
836
|
"DD": 62.0,
|
797
837
|
"FF": 2.06,
|
@@ -804,12 +844,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
804
844
|
"SunD1": 3120.0,
|
805
845
|
"Rad1h": None,
|
806
846
|
"wwM": 3.0,
|
847
|
+
"PEvap": None,
|
848
|
+
"condition": "1",
|
807
849
|
"humidity": 59.9,
|
808
850
|
},
|
809
851
|
{
|
810
852
|
"TTT": 281.85,
|
811
853
|
"Td": 273.35,
|
812
|
-
"condition": "1",
|
813
854
|
"PPPP": 103420.0,
|
814
855
|
"DD": 66.0,
|
815
856
|
"FF": 2.57,
|
@@ -822,12 +863,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
822
863
|
"SunD1": 3180.0,
|
823
864
|
"Rad1h": None,
|
824
865
|
"wwM": 2.0,
|
866
|
+
"PEvap": None,
|
867
|
+
"condition": "1",
|
825
868
|
"humidity": 55.2,
|
826
869
|
},
|
827
870
|
{
|
828
871
|
"TTT": 282.65,
|
829
872
|
"Td": 273.25,
|
830
|
-
"condition": "1",
|
831
873
|
"PPPP": 103350.0,
|
832
874
|
"DD": 73.0,
|
833
875
|
"FF": 2.57,
|
@@ -840,12 +882,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
840
882
|
"SunD1": 3180.0,
|
841
883
|
"Rad1h": None,
|
842
884
|
"wwM": 1.0,
|
885
|
+
"PEvap": None,
|
886
|
+
"condition": "1",
|
843
887
|
"humidity": 51.9,
|
844
888
|
},
|
845
889
|
{
|
846
890
|
"TTT": 283.05,
|
847
891
|
"Td": 273.35,
|
848
|
-
"condition": "1",
|
849
892
|
"PPPP": 103280.0,
|
850
893
|
"DD": 74.0,
|
851
894
|
"FF": 2.06,
|
@@ -858,12 +901,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
858
901
|
"SunD1": 3120.0,
|
859
902
|
"Rad1h": None,
|
860
903
|
"wwM": 0.0,
|
904
|
+
"PEvap": None,
|
905
|
+
"condition": "1",
|
861
906
|
"humidity": 50.9,
|
862
907
|
},
|
863
908
|
{
|
864
909
|
"TTT": 282.35,
|
865
910
|
"Td": 273.35,
|
866
|
-
"condition": "0",
|
867
911
|
"PPPP": 103240.0,
|
868
912
|
"DD": 76.0,
|
869
913
|
"FF": 2.06,
|
@@ -876,12 +920,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
876
920
|
"SunD1": 2640.0,
|
877
921
|
"Rad1h": None,
|
878
922
|
"wwM": 0.0,
|
923
|
+
"PEvap": None,
|
924
|
+
"condition": "0",
|
879
925
|
"humidity": 53.3,
|
880
926
|
},
|
881
927
|
{
|
882
928
|
"TTT": 281.35,
|
883
929
|
"Td": 273.25,
|
884
|
-
"condition": "0",
|
885
930
|
"PPPP": 103190.0,
|
886
931
|
"DD": 78.0,
|
887
932
|
"FF": 2.06,
|
@@ -894,12 +939,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
894
939
|
"SunD1": 1740.0,
|
895
940
|
"Rad1h": None,
|
896
941
|
"wwM": 1.0,
|
942
|
+
"PEvap": None,
|
943
|
+
"condition": "0",
|
897
944
|
"humidity": 56.7,
|
898
945
|
},
|
899
946
|
{
|
900
947
|
"TTT": 280.25,
|
901
948
|
"Td": 273.15,
|
902
|
-
"condition": "0",
|
903
949
|
"PPPP": 103170.0,
|
904
950
|
"DD": 76.0,
|
905
951
|
"FF": 1.54,
|
@@ -912,12 +958,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
912
958
|
"SunD1": 540.0,
|
913
959
|
"Rad1h": None,
|
914
960
|
"wwM": 1.0,
|
961
|
+
"PEvap": None,
|
962
|
+
"condition": "0",
|
915
963
|
"humidity": 60.6,
|
916
964
|
},
|
917
965
|
{
|
918
966
|
"TTT": 278.95,
|
919
967
|
"Td": 273.65,
|
920
|
-
"condition": "0",
|
921
968
|
"PPPP": 103150.0,
|
922
969
|
"DD": 70.0,
|
923
970
|
"FF": 1.54,
|
@@ -930,12 +977,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
930
977
|
"SunD1": 0.0,
|
931
978
|
"Rad1h": None,
|
932
979
|
"wwM": 2.0,
|
980
|
+
"PEvap": None,
|
981
|
+
"condition": "0",
|
933
982
|
"humidity": 68.8,
|
934
983
|
},
|
935
984
|
{
|
936
985
|
"TTT": 277.85,
|
937
986
|
"Td": 273.55,
|
938
|
-
"condition": "0",
|
939
987
|
"PPPP": 103140.0,
|
940
988
|
"DD": 65.0,
|
941
989
|
"FF": 1.54,
|
@@ -948,12 +996,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
948
996
|
"SunD1": 0.0,
|
949
997
|
"Rad1h": None,
|
950
998
|
"wwM": 2.0,
|
999
|
+
"PEvap": None,
|
1000
|
+
"condition": "0",
|
951
1001
|
"humidity": 73.7,
|
952
1002
|
},
|
953
1003
|
{
|
954
1004
|
"TTT": 277.15,
|
955
1005
|
"Td": 273.55,
|
956
|
-
"condition": "0",
|
957
1006
|
"PPPP": 103120.0,
|
958
1007
|
"DD": 52.0,
|
959
1008
|
"FF": 1.54,
|
@@ -966,12 +1015,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
966
1015
|
"SunD1": 0.0,
|
967
1016
|
"Rad1h": None,
|
968
1017
|
"wwM": 2.0,
|
1018
|
+
"PEvap": None,
|
1019
|
+
"condition": "0",
|
969
1020
|
"humidity": 77.4,
|
970
1021
|
},
|
971
1022
|
{
|
972
1023
|
"TTT": 276.75,
|
973
1024
|
"Td": 273.65,
|
974
|
-
"condition": "0",
|
975
1025
|
"PPPP": 103100.0,
|
976
1026
|
"DD": 54.0,
|
977
1027
|
"FF": 1.54,
|
@@ -984,12 +1034,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
984
1034
|
"SunD1": 0.0,
|
985
1035
|
"Rad1h": None,
|
986
1036
|
"wwM": 3.0,
|
1037
|
+
"PEvap": None,
|
1038
|
+
"condition": "0",
|
987
1039
|
"humidity": 80.2,
|
988
1040
|
},
|
989
1041
|
{
|
990
1042
|
"TTT": 276.25,
|
991
1043
|
"Td": 273.35,
|
992
|
-
"condition": "0",
|
993
1044
|
"PPPP": 103070.0,
|
994
1045
|
"DD": 49.0,
|
995
1046
|
"FF": 1.54,
|
@@ -1002,12 +1053,13 @@ class Weather_get_day_values(unittest.TestCase):
|
|
1002
1053
|
"SunD1": 0.0,
|
1003
1054
|
"Rad1h": None,
|
1004
1055
|
"wwM": 3.0,
|
1056
|
+
"PEvap": None,
|
1057
|
+
"condition": "0",
|
1005
1058
|
"humidity": 81.3,
|
1006
1059
|
},
|
1007
1060
|
{
|
1008
1061
|
"TTT": 275.55,
|
1009
1062
|
"Td": 273.45,
|
1010
|
-
"condition": "51",
|
1011
1063
|
"PPPP": 103060.0,
|
1012
1064
|
"DD": 52.0,
|
1013
1065
|
"FF": 1.54,
|
@@ -1020,6 +1072,8 @@ class Weather_get_day_values(unittest.TestCase):
|
|
1020
1072
|
"SunD1": 0.0,
|
1021
1073
|
"Rad1h": None,
|
1022
1074
|
"wwM": 2.0,
|
1075
|
+
"PEvap": None,
|
1076
|
+
"condition": "51",
|
1023
1077
|
"humidity": 86.0,
|
1024
1078
|
},
|
1025
1079
|
]
|