diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-10-30 14:48:45 +0100 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2022-10-30 14:48:45 +0100 |
commit | 5bb84dcefbafab8d80313771854c1d982560ee1a (patch) | |
tree | 6ff5d53d35b2fc3ce90daa59a02d9475af98d49b /dummy-data/openweather | |
parent | de814b9e04ee3cda0f14d99119e06308245dee29 (diff) | |
download | homer-5bb84dcefbafab8d80313771854c1d982560ee1a.tar.gz homer-5bb84dcefbafab8d80313771854c1d982560ee1a.tar.zst homer-5bb84dcefbafab8d80313771854c1d982560ee1a.zip |
Fix openweather service
Diffstat (limited to 'dummy-data/openweather')
-rw-r--r-- | dummy-data/openweather/weather | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dummy-data/openweather/weather b/dummy-data/openweather/weather new file mode 100644 index 0000000..80245ef --- /dev/null +++ b/dummy-data/openweather/weather | |||
@@ -0,0 +1,46 @@ | |||
1 | { | ||
2 | "coord": { | ||
3 | "lon": 4.5833, | ||
4 | "lat": 45.75 | ||
5 | }, | ||
6 | "weather": [ | ||
7 | { | ||
8 | "id": 804, | ||
9 | "main": "Clouds", | ||
10 | "description": "overcast clouds", | ||
11 | "icon": "04d" | ||
12 | } | ||
13 | ], | ||
14 | "base": "stations", | ||
15 | "main": { | ||
16 | "temp": 23, | ||
17 | "feels_like": 22.3, | ||
18 | "temp_min": 21.75, | ||
19 | "temp_max": 25.03, | ||
20 | "pressure": 1019, | ||
21 | "humidity": 36, | ||
22 | "sea_level": 1019, | ||
23 | "grnd_level": 957 | ||
24 | }, | ||
25 | "visibility": 10000, | ||
26 | "wind": { | ||
27 | "speed": 2.29, | ||
28 | "deg": 174, | ||
29 | "gust": 6.22 | ||
30 | }, | ||
31 | "clouds": { | ||
32 | "all": 97 | ||
33 | }, | ||
34 | "dt": 1667136939, | ||
35 | "sys": { | ||
36 | "type": 2, | ||
37 | "id": 2005747, | ||
38 | "country": "FR", | ||
39 | "sunrise": 1667110705, | ||
40 | "sunset": 1667147524 | ||
41 | }, | ||
42 | "timezone": 3600, | ||
43 | "id": 2996943, | ||
44 | "name": "Arrondissement de Lyon", | ||
45 | "cod": 200 | ||
46 | } \ No newline at end of file | ||