Fix weather.json (#20769)
Removed "temperatureF" elements from weather.json as WeatherForecast class calculates the Fahrenheit temperature internally from the retrieved Celcius temperature and not from the retrieved json data.
This commit is contained in:
parent
87050c9bb4
commit
4c312e1d51
|
|
@ -2,31 +2,26 @@
|
|||
{
|
||||
"date": "2018-05-06",
|
||||
"temperatureC": 1,
|
||||
"summary": "Freezing",
|
||||
"temperatureF": 33
|
||||
"summary": "Freezing"
|
||||
},
|
||||
{
|
||||
"date": "2018-05-07",
|
||||
"temperatureC": 14,
|
||||
"summary": "Bracing",
|
||||
"temperatureF": 57
|
||||
"summary": "Bracing"
|
||||
},
|
||||
{
|
||||
"date": "2018-05-08",
|
||||
"temperatureC": -13,
|
||||
"summary": "Freezing",
|
||||
"temperatureF": 9
|
||||
"summary": "Freezing"
|
||||
},
|
||||
{
|
||||
"date": "2018-05-09",
|
||||
"temperatureC": -16,
|
||||
"summary": "Balmy",
|
||||
"temperatureF": 4
|
||||
"summary": "Balmy"
|
||||
},
|
||||
{
|
||||
"date": "2018-05-10",
|
||||
"temperatureC": -2,
|
||||
"summary": "Chilly",
|
||||
"temperatureF": 29
|
||||
"summary": "Chilly"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue