weather: use km/h instead of m/h

Origin commit data
------------------
Commit: 25f2b3fc7c
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-03-24 (Sun, 24 Mar 2019)

Origin message was:
------------------
- weather: use km/h instead of m/h
This commit is contained in:
vanhofen
2019-03-24 22:57:49 +01:00
parent 731098dec1
commit 5390a7e9f1

View File

@@ -97,7 +97,7 @@ bool CWeather::GetWeatherDetails()
if (!g_settings.weather_enabled) if (!g_settings.weather_enabled)
return false; return false;
std::string data = "https://api.darksky.net/forecast/" + key + "/" + coords + "?units=si&lang=de&exclude=minutely,hourly,flags,alerts"; std::string data = "https://api.darksky.net/forecast/" + key + "/" + coords + "?units=ca&lang=de&exclude=minutely,hourly,flags,alerts";
std::string answer; std::string answer;
double found = 0; double found = 0;