/**
  * @param $lat float
  * @param $lng float
  * @return mixed
  *
  * Gets weather
  */
 public function getWeather($lat, $lng)
 {
     $info = $this->weatherProvider->getWeatherInfo($lat, $lng);
     $output = $this->outputter->outputJSON($info);
     return $output;
 }