Python API for public IMGW data - atmospheric measurement from Polish weather stations
Project description
imgw-data-loader
Python API for IMGW (Polish: Instytut Meteorologii i Gospodarki Wodnej) public data access.
Setup
pip install imgw-data
Usage
get_current_weather()
Function gets current weather from IMGW website. Monitored variables (polish: english):
- 'id_stacji': 'station_id'
- 'stacja': 'station_name'
- 'data_pomiaru': 'observation_date'
- 'godzina_pomiaru': 'observation_hour'
- 'temperatura': 'temperature'
- 'predkosc_wiatru': 'wind_speed'
- 'kierunek_wiatru': 'wind_direction'
- 'wilgotnosc_wzgledna': 'relative_humidity'
- 'suma_opadu': 'precipitation'
- 'cisnienie': 'pressure'
Download as a Python object
from imgw_data import get_current_weather
current_weather_json = get_current_weather() # downloads data as JSON
current_weather_csv = get_current_weather(as_csv=True) # downloads data as string csv
current_weather_xml = get_current_weather(as_xml=True) # downloads data as string xml
current_weather_html = get_current_weather(as_html=True) # downloads data as string html
current_weather_pl = get_current_weather(translate_to_english=False) # downloads original data with Polish sentences
print(current_weather_json)
[
{'station_id': '12295',
'station_name': 'Białystok',
'observation_date': '2024-04-12',
'observation_hour': '7',
'temperature': '12.2',
'wind_speed': '2',
'wind_direction': '250',
'relative_humidity': '68.8',
'precipitation': '0',
'pressure': '1028.6'},
{...},
]
Download and export to file
from imgw_data import get_current_weather
current_weather_json = get_current_weather(fname='data.json') # stores data as JSON
current_weather_csv = get_current_weather(fname='data.csv', as_csv=True) # stores data as string csv
current_weather_xml = get_current_weather(fname='data.xml', as_xml=True) # stores data as string xml
current_weather_html = get_current_weather(fname='data.html', as_html=True) # stores data as string html
Dependencies
- Python >= 3.8
requests
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
imgw_data-0.1.1.tar.gz
(9.0 kB
view details)
Built Distribution
File details
Details for the file imgw_data-0.1.1.tar.gz
.
File metadata
- Download URL: imgw_data-0.1.1.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d056297ac28492986ba1356aa79ba542680ed09271fb36fd9faa4e1e9381a0a |
|
MD5 | 2b5b3776cb0da9fa18c75e6a994e4ee5 |
|
BLAKE2b-256 | 05dc8563117471f4d3765c6f534bd49c53a953964b32aae218a4b5f036d44234 |
File details
Details for the file imgw_data-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: imgw_data-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a32660876ef8f8f055f9a08fa4e75f6becebc1161878fa5dc5fbe2f1d6e713fa |
|
MD5 | 0b2bf2280c7f0a36e62c3ee8155d621a |
|
BLAKE2b-256 | e7d57da729869cc15540aa1cc3afb594fadb33b7ed6df092f5af18757bdde388 |