Skip to content

Simple Python interface to the Swedish Meteorological and Hydrological Institute's (SMHI). Modified to allow access to historical data.

License

Notifications You must be signed in to change notification settings

Teeldt/smhi-open-data

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SMHI Open Data API

Simple Python interface to the Swedish Meteorological and Hydrological Institute's (SMHI) Open Data API.

Weather data from Sweden are publicly available through SMHI's Open Data API. Fetch raw weather observations from all available weather stations in Sweden. Parameters available include temperature, windspeed, humidity, pressure, precipitation_, and many more.

Requirements

  • Python 3.6+

Installation

$ pip install smhi-open-data

Example

from smhi_open_data import SMHIOpenDataClient, Parameter


# Get 10 stations
client = SMHIOpenDataClient()

# Get all stations
stations = client.get_stations()

# Get closest station
closest_station = client.get_closest_station(
    latitude=55.707722,
    longitude=12.562119)

# Get available parameters
parameters = client.list_parameters()

# Get available parameters at station
parameters_station = client.get_station_parameters(station_id=173010)

# Get temperature observations from available stations from past hour
observations = client.get_latest_observations(
    parameter=Parameter.TemperaturePast1h)

Tests

Run tests

$ python -m unittest discover tests

About

Simple Python interface to the Swedish Meteorological and Hydrological Institute's (SMHI). Modified to allow access to historical data.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%