diff --git a/inverter/openweathermap.php b/inverter/openweathermap.php index 6ac5c87..98d69ff 100755 --- a/inverter/openweathermap.php +++ b/inverter/openweathermap.php @@ -62,8 +62,6 @@ function openweathermap($iCity, $bDebug = false) { /* Perform actual call */ $sUrl = sprintf('https://api.openweathermap.org/data/2.5/weather?id=%d&appid=%s', $iCity, KEY); - $sUrl = sprintf('https://api.openweathermap.org/data/2.5/weather?id=%d&appid=%s', $iCity, KEY); -// $sUrl = 'https://samples.openweathermap.org/data/2.5/weather?q=Uitgeeddst&appid=5fc7ebf9168bfbe9745920438e3b1'; $sJSON = file_get_contents($sUrl); return json_decode($sJSON, true); }