Tools for downloading Oregon DEQ Air Quality data
Project description
Install with pip:
pip install deq-tools
deq_tools is a limited functionality Python library for accessing Oregon DEQ Air Quality data with a Python script.
Usage:
import deq_tools
print(deq_tools.get_station_names()) # Dump a list of names of stations where data may be available
print(deq_tools.get_station_data()) # Dump all station info, including data available for each station
station_id = 2 # Get this value from get_station_names()
from_ts = "2018/05/03T00:00" # ISO datetime format: YYYY/MM/DDTHH:MM
to_ts = "2018/05/10T23:59"
print(deq_tools.get_data(station_id, from_ts, to_ts)) # Get the data
In addition to the required positional parameters shown above, get_deq_data()
also takes these optional named parameters:
- resolution:
- Default = 60. 60 for hourly data, 1440 for daily values. Higher resolutions don't work, sorry, but lower-resolutions, such as 120, 180, 480, 720 will.
- agg_method:
- Default = "Average". These will probably all work: Average, MinAverage, MaxAverage, RunningAverage, MinRunningAverage, MaxRunningAverage, RunningForword, MinRunningForword, MaxRunningForword.
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
deq_tools-0.3.0.tar.gz
(5.9 kB
view details)
File details
Details for the file deq_tools-0.3.0.tar.gz
.
File metadata
- Download URL: deq_tools-0.3.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.20.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1305efb0c7d4b85f198ad75b656ddc51f530ed629466d6b4c113572f1f8092cc |
|
MD5 | abc1c508a319c3bbb01b4def777c4000 |
|
BLAKE2b-256 | 2a0f721cef1afd53f5dc3a4ea4d64878cc0ed5e3ccb00ea25038314b243142fb |