Skip to content

Instantly share code, notes, and snippets.

View AAKempf's full-sized avatar

Andreas Kempf AAKempf

  • [amalesh]
  • Hamburg
View GitHub Profile
@AAKempf
AAKempf / WeatherData.php
Created February 28, 2024 12:36
Example class for weather forecast with php-weather/open-meteo
<?php
declare(strict_types=1);
use Http\Adapter\Guzzle7\Client;
use PhpWeather\Common\WeatherQuery;
use PhpWeather\Exception;
use PhpWeather\Provider\OpenMeteo\OpenMeteo as myWeatherData;
use PhpWeather\Weather;
/**