Simple Python interface to the The Danish Meteorological Institute's (DMI) Open Data API metObs v2.
Project description
DMI Open Data API
Simple Python interface to the The Danish Meteorological Institute's (DMI) v2 Open Data API.
Weather data from Denmark and Greenland are publicly available through DMI's Open Data API. Fetch raw weather observations from all available weather stations in Denmark and Greenland. Parameters available include temperature, windspeed, humidity, pressure, _precipitation__, and many more.
Requirements
- Python 3.10+
- API Key for metObs v2 from DMI Open Data
- (Optional) API Key for climateData v2 from DMI Open Data
- (Optional) API Key for oceanObs v2 from DMI Open Data
Installation
$ pip install dmi-open-data
Example
from datetime import datetime
import os
from dmi_open_data import DMIOpenDataClient, Parameter, ClimateDataParameter, OceanographicDataParameter
# Get 10 stations
client = DMIOpenDataClient(api_key=os.getenv('DMI_API_KEY'))
stations = client.get_stations(limit=10)
# Get all stations
stations = client.get_stations()
# Get DMI station
dmi_station = next(
station
for station in stations
if station['properties']['name'].lower() == 'dmi')
# Get closest station
closest_station = client.get_closest_station(
latitude=55.707722,
longitude=12.562119)
# Get available parameters
parameters = client.list_parameters()
# Get temperature observations from DMI station in given time period
observations = client.get_observations(
parameter=Parameter.TempDry,
station_id=dmi_station['properties']['stationId'],
from_time=datetime(2021, 7, 20),
to_time=datetime(2021, 7, 24),
limit=1000)
# Init climate data client
climate_data_client = DMIOpenDataClient(api_key=os.getenv('DMI_CLIMATE_DATA_API_KEY'))
# Get climate data
climate_data = climate_data_client.get_climate_data(
parameter=ClimateDataParameter.MeanTemp,
station_id=dmi_station['properties']['stationId'],
from_time=datetime(2021, 7, 20),
to_time=datetime(2021, 7, 24),
time_resolution='day',
limit=1000)
# Init oceanographic data client
ocean_data_client = DMIOpenDataClient(api_key=os.getenv('DMI_OCEAN_DATA_API_KEY'))
# Get oceanographic data
ocean_data = ocean_data_client.get_ocean_data(
parameter=OceanographicDataParameter.Tw,
station_id="31061",
from_time=datetime(2025, 9, 8),
to_time=datetime(2025, 9, 10),
limit=1000)
API Key
API Key can be obtained for free at the DMI Open Data.
Tests
Run tests
$ python -m unittest discover tests
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dmi_open_data-0.1.5.tar.gz.
File metadata
- Download URL: dmi_open_data-0.1.5.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed46b7d991b483d979242eb56b4b562f24aa9f25bea0198532062a03d3cec097
|
|
| MD5 |
9868634b7ec195f9ff72f76041b9fc60
|
|
| BLAKE2b-256 |
e28ed9bdbbba4ac728801aa2cf301831d6dfa6c8794952d8bc8730a782dcfb44
|
File details
Details for the file dmi_open_data-0.1.5-py3-none-any.whl.
File metadata
- Download URL: dmi_open_data-0.1.5-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e350f4280d07e0a88970aeea6e1e6e87f657711012e49288228f89e20d44262
|
|
| MD5 |
067be3732d21bff9c75ae78298955145
|
|
| BLAKE2b-256 |
67d549c00ccbee97ca893f8f173d178ff3dffab302cbdaca3020f0af3837e3d5
|