A package to access meteorological data from Environment Canada
Project description
Environment Canada (env_canada)
This package provides access meteorological data published by Environment Canada.
Weather
ECWeather provides current conditions and forecast. It automatically determines which weather station to use based on latitude/longitude provided. It is also possible to specify a specific station code of the form AB/s0000123 based on those listed in this CSV file. For example:
from env_canada import ECWeather
ec_en = ECWeather(coordinates=(lat, long))
ec_fr = ECWeather(station_id='ON/s0000430', language='french')
# current conditions
ec_en.conditions
# daily forecasts
ec_en.daily_forecasts
# hourly forecasts
ec_en.hourly_forecasts
# alerts
ec_en.alerts
# AQHI air quality
ec_en.aqhi
# Update
ec_en.update()
Radar
ECRadar provides Environment Canada meteorological radar imagery.
from env_canada import ECRadar
radar_coords = ECRadar(coordinates=(lat, lon))
# Conditions Available
radar_coords.get_loop()
radar_station.get_latest_frame()
License
The code is available under terms of MIT License
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
env_canada-0.3.1.tar.gz
(14.1 kB
view details)
File details
Details for the file env_canada-0.3.1.tar.gz.
File metadata
- Download URL: env_canada-0.3.1.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/47.1.1.post20200604 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbc178c6b15919ea68751d228374760e7918ee3bbcd0c44406a48d84effc7378
|
|
| MD5 |
4f8d94bca8f0850afd8f8838ef538f0c
|
|
| BLAKE2b-256 |
6792ca0a676ab824e94a5f71f6bfaaafc01fcc2a2b64c7ff9f863440ef63c589
|