-
Notifications
You must be signed in to change notification settings - Fork 0
/
restinpeace
24 lines (23 loc) · 967 Bytes
/
restinpeace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
forcastday: [
{
date: forecast.forecastday[0].date,
day: {
max_temp:
metricSystem.system === "metric"
? { value: forecast.forecastday[0].day.maxtemp_c, unit: "C" }
: { value: forecast.forecastday[0].day.maxtemp_f, unit: "F" },
min_temp:
metricSystem.system === "metric"
? { value: forecast.forecastday[0].day.mintemp_c, unit: "C" }
: { value: forecast.forecastday[0].day.mintemp_f, unit: "F" },
avg_temp:
metricSystem.system === "metric"
? { value: forecast.forecastday[0].day.avgtemp_c, unit: "C" }
: { value: forecast.forecastday[0].day.avgtemp_f, unit: "F" },
condition: {
text: forecast.forecastday[0].day.condition.text,
icon: forecast.forecastday[0].day.condition.icon,
},
},
},
],