-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweather.py
More file actions
44 lines (44 loc) · 1.52 KB
/
Copy pathweather.py
File metadata and controls
44 lines (44 loc) · 1.52 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
WEATHER = [
{
"zone": 1,
"location": "Kansas City, MO",
"landmarks": ["L01", "L02", "L03"],
"temp": [29, 33, 44, 55, 64, 74, 79, 77, 68, 56, 44, 32],
"precip": [0.8, 1.3, 2.3, 3.6, 5.0, 5.1, 3.8, 3.8, 4.2, 3.2, 2.3, 1.4]
},
{
"zone": 2,
"location": "North Platte, NE",
"landmarks": ["L04", "L05"],
"temp": [23, 26, 36, 46, 56, 67, 73, 70, 61, 47, 34, 23],
"precip": [0.3, 0.4, 0.8, 1.9, 3.0, 3.2, 2.6, 2.1, 1.6, 1.3, 0.6, 0.3]
},
{
"zone": 3,
"location": "Casper, WY",
"landmarks": ["L06", "L07"],
"temp": [24, 26, 34, 41, 51, 62, 70, 68, 57, 44, 33, 24],
"precip": [0.3, 0.3, 0.5, 1.0, 1.9, 1.4, 1.0, 0.8, 0.9, 0.9, 0.4, 0.3]
},
{
"zone": 4,
"location": "Lander, WY",
"landmarks": ["L08", "L09", "L10", "L11"],
"temp": [21, 25, 35, 43, 52, 63, 71, 69, 58, 45, 31, 21],
"precip": [0.3, 0.3, 0.5, 0.9, 1.6, 1.1, 0.7, 0.6, 0.9, 0.7, 0.4, 0.3]
},
{
"zone": 5,
"location": "Boise, ID",
"landmarks": ["L12", "L13", "L14", "L15"],
"temp": [29, 34, 42, 49, 57, 66, 74, 73, 63, 51, 38, 29],
"precip": [1.4, 1.3, 1.4, 1.2, 1.2, 0.9, 0.4, 0.4, 0.7, 1.0, 1.6, 1.7]
},
{
"zone": 6,
"location": "Portland, OR",
"landmarks": ["L16", "L17", "L18"],
"temp": [38, 41, 45, 49, 55, 60, 66, 66, 61, 52, 44, 38],
"precip": [7.6, 6.8, 5.9, 4.2, 2.7, 1.9, 0.7, 0.7, 1.9, 4.7, 9.0, 8.9]
}
]