meteostat-python
meteostat-python copied to clipboard
Access and analyze historical weather and climate data with Python.
Despite doing the following: ``` from meteostat import Daily, Point import tempfile Daily.cache_dir = tempfile.mkdtemp() ``` I still receive errors from elsewhere in the code: ``` [ERROR] OSError: [Errno 30]...
Hi, I am trying to fetch hourly data for city Northville, Michigan but it's not matching with hourly data given on https://www.wunderground.com/history. I am using below geocodes and dates to...
### Discussed in https://github.com/meteostat/meteostat-python/discussions/96 Originally posted by **Raysyu** May 23, 2022 Dear meteostat, I'm using your API to reteive weather data and this happened.  I was running this locally...
According to [the docs](https://dev.meteostat.net/python/api/normals/#parameters) for Normals, > The loc parameter is required. You can pass one (String) or multiple Meteostat weather station identifiers (Tuple or List), a [meteostat.Point](https://dev.meteostat.net/python/api/point) or a...
(This might not be the best repository to report the issue but I couldn't find a better one..) It appears that data from `Global dataset (ISD)` is no longer included...
Hi, I'm having trouble using the weighted interpolation method for a Point between different stations, I've tried : ``` point = Point(lon=lon, lat=lat) point.method = "weighted" monthly_data = Monthly(point, start_date,...
Hi, Thank you for this amazing library, it is really easy-to-use and very helpful. I'm getting different results for some locations in my local and AzureML environment. For istance; I...
Hello, Hope you're good! We use your API for matching disasters and atmospheric conditions. However, we rely on proxies to retrieve some data. Any chance we could get some proxy...
Manual test: ``` # Import Meteostat library from meteostat import Stations # Set a public proxy Stations.cache_dir = './test/filtered/' Stations.proxy = '81.255.13.197:8080' #Stations.max_age = 0 # Get nearby weather stations...
I'm getting the following error: `DeprecationWarning: In a future version, `df.iloc[:, i] = newvals` will attempt to set the values inplace instead of always setting a new array. To retain...