API Wrapper for the Ambient Weather Station API with meteorological units and pandas functionality as well
Project description
Ambient Weather Station API Wrapper
There are a couple of great packages that do a great job but this package introduces units. It also serves as a side-project for me. ☺️
This is currently a work in progress to get it in a package and with the proper tests and CI.
Units
Units are set for these fields using the pint python library:
- windspeedmph - mph
- windgustmph - mph
- maxdailygust - mph
- tempf - degF
- baromrelin - Hg
- baromabsin - Hg
- tempinf - degF
- hourlyrainin - inches
- dailyrainin - inches
- monthlyrainin - inches
- yearlyrainin - inches
- feelsLike - degF
- dewPoint - degF
- winddir - degrees
- winddir_avg10m - degrees
- humidity - percent
- humidityin - percent
Setup the API object
from ambient_wx import AmbientApi
api_key = "123"
app_key = "456"
api = AmbientApi(api_key, app_key)
Get Devices
from ambient_wx import WxDeviceCollection
devices = WxDeviceCollection(api)
devices.get_devices()
device = devices.devices[0] # first device
print(device.mac_addr)
Get Device Obervations
from ambient_wx import WxObservationCollection
# with a device object
obs = WxObservationCollection(api, device=device)
# or with a known device mac addr to skip an api call for a device
obs = WxObservationCollection(api, mac_addr="some_mac_addr")
# get the last 5 observations this populates obs.data as a
# list of WxObservation objects
obs.get_observations(limit=5)
# iterate through observations
for o in obs.data:
print(o.tempf, o.winddir, o.humidity)
Get data for an end date
obs = WxObservationCollection(api, device)
obs.get_observations(end_date=datetime(2024, 4, 25))
for o in obs.data:
print(o.tempf, o.winddir, o.humidity)
Perform Unit Conversions
# convert deg F to deg C
degc = obs.data[0].tempf.to('degC')
print(degc)
Create pandas Dataframe from Observations
df = obs.to_dataframe()
print(df)
Write csv from Observations
obs.write_csv("/some_path/my_observations.csv")
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ambient_wx-0.1.0.tar.gz
(7.4 kB
view details)
Built Distribution
File details
Details for the file ambient_wx-0.1.0.tar.gz
.
File metadata
- Download URL: ambient_wx-0.1.0.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.3 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec2ef41cd6b2e1e90f158309df47c99fc2d3433460e50b3562ef6a2ba26f70e3 |
|
MD5 | 83b0eaa8630e099b5e3ed5201a845508 |
|
BLAKE2b-256 | ea48f625496f61f969942da7af80b0df62e5abed31e9bcd5614f368ac103d7e1 |
File details
Details for the file ambient_wx-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: ambient_wx-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.3 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73519172c2ae984e791f5fc5167b013f3e3d8619c76e50e699d7f98b4015bf1c |
|
MD5 | 547cbdcbcbe54902a981ae6ff1aec1c6 |
|
BLAKE2b-256 | 01a85353f6bbdb4a470e86b7eb2c2c270d583836e83e9647634f18f3487b0189 |