OpenWeatherMap-PHP-API
OpenWeatherMap-PHP-API copied to clipboard
A PHP API to parse weather data and weather history from OpenWeatherMap.org.
I also noticed that this library is using the UV Index API, which was retired on 1st April 2021. https://openweathermap.org/api/uvi They say the replacement is the One Call API. _Originally...
https://api.openweathermap.org/data/2.5/onecall?lat={lat}&lon={lon}&exclude={part}&appid={API key} I need to call this api endpoint but there is no method for it
In [v3.0.0](https://github.com/cmfcmf/OpenWeatherMap-PHP-API/releases/tag/v3.0.0) historic weather data was removed from this library. Reason was that the integration could not be tested because it requires a paid subscription. However the current plans on...
# Cleanup and Minor Features - [x] Remove deprecated methods and constructor arguments from the OpenWeatherMap class - [x] Change `° C` back to `°C` (The API should not be...
In Europe, we tend to say "20 km/hour" when talking about wind speed, not meters/second. It might be a valuable addition to get the speed in km's?
pls, add option for format data fetched, such as `getRawWeatherData()`
Hi, Currently, https://github.com/php-http/guzzle6-adapter is used. But now there is https://github.com/php-http/guzzle7-adapter . If I understand their doc, guzzle7-adaptater remove some overhead. What do you think about migration ?
It seems like on the free plan we don't get access to `getDailyWeatherForecast()` and we can only get the hourly forecast. I would love to display a 5 day "daily"...
This PR implements the [Coordinates by Location Name](https://openweathermap.org/api/geocoding-api#direct_name) endpoint. While working through the API docs and the library's documentation, I didn't see anything that queried this endpoint. Given that, and...