Run
pip install git+https://github.com/congrong-wang/cr-ASOS.gitThere are three types of data for download:
- 1 min weather data
- 5 min weather data
- hourly precipitation data
You can import download functions using:
from cr_asos.io import (
download_asos_1min_data,
download_asos_5min_data,
download_asos_hourly_precip_data,
)These functions are documented with docstring. Call help(function_name) to read it.
There are also three functions to read downloaded CSV files:
from cr_asos.io import (
read_asos_1min_csv,
read_asos_5min_csv,
read_asos_hourly_precip_csv,
)These functions are also documented.
There is currently only one plotting function:
from cr_asos.plotting import daily_plot_w_SMPS