-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgetWeatherImage.ts
335 lines (331 loc) · 7.74 KB
/
getWeatherImage.ts
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
type WeatherImage = Record<
'day' | 'night',
{
description: string;
image: string;
}
>;
type WeatherCode =
| '0'
| '1'
| '2'
| '3'
| '45'
| '48'
| '51'
| '53'
| '55'
| '56'
| '57'
| '61'
| '63'
| '65'
| '66'
| '67'
| '71'
| '73'
| '75'
| '77'
| '80'
| '81'
| '82'
| '85'
| '86'
| '95'
| '96'
| '99';
const items: Record<WeatherCode, WeatherImage> = {
'0': {
day: {
description: 'Sunny',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Clear',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'1': {
day: {
description: 'Mainly Sunny',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Mainly Clear',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'2': {
day: {
description: 'Partly Cloudy',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Partly Cloudy',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'3': {
day: {
description: 'Cloudy',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Cloudy',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'45': {
day: {
description: 'Foggy',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Foggy',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'48': {
day: {
description: 'Rime Fog',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Rime Fog',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'51': {
day: {
description: 'Light Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Light Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'53': {
day: {
description: 'Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'55': {
day: {
description: 'Heavy Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Heavy Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'56': {
day: {
description: 'Light Freezing Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Light Freezing Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'57': {
day: {
description: 'Freezing Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Freezing Drizzle',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'61': {
day: {
description: 'Light Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Light Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'63': {
day: {
description: 'Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'65': {
day: {
description: 'Heavy Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Heavy Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'66': {
day: {
description: 'Light Freezing Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Light Freezing Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'67': {
day: {
description: 'Freezing Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Freezing Rain',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'71': {
day: {
description: 'Light Snow',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Light Snow',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'73': {
day: {
description: 'Snow',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Snow',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'75': {
day: {
description: 'Heavy Snow',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Heavy Snow',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'77': {
day: {
description: 'Snow Grains',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Snow Grains',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'80': {
day: {
description: 'Light Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Light Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'81': {
day: {
description: 'Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'82': {
day: {
description: 'Heavy Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Heavy Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'85': {
day: {
description: 'Light Snow Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Light Snow Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'86': {
day: {
description: 'Snow Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Snow Showers',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'95': {
day: {
description: 'Thunderstorm',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Thunderstorm',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'96': {
day: {
description: 'Light Thunderstorms With Hail',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Light Thunderstorms With Hail',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
'99': {
day: {
description: 'Thunderstorm With Hail',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
night: {
description: 'Thunderstorm With Hail',
image: 'https://openweathermap.org/img/wn/[email protected]',
},
},
};
/**
* A function to return an image representation of a WMO weather code.
* @{link: https://www.nodc.noaa.gov/archive/arc0021/0002199/1.1/data/0-data/HTML/WMO-CODE/WMO4677.HTM}
*
* The image mapping was obtained from Github and uses Open Weather Map imagery.
* @{link: https://gist.github.com/stellasphere/9490c195ed2b53c707087c8c2db4ec0c}
* @param weatherCode The WMO weather code
* @returns A "day" image representation of the WMO weather code
*/
function getWeatherImage(weatherCode: WeatherCode) {
// Write implementation for this function to return the "day" image for a given weather code.
}
export default getWeatherImage;