8000 Add retrieval functions for daily precip, snow, and temperature data from NOAA RCC ACIS by kandersolar · Pull Request #1767 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Add retrieval functions for daily precip, snow, and temperature data from NOAA RCC ACIS #1767

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Jun 29, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add degree days to df descriptions
  • Loading branch information
kandersolar committed Jun 27, 2023
commit fa85d3add0a77bb16e67cf553a8c524864dbad8d
9 changes: 6 additions & 3 deletions pvlib/iotools/acis.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ def get_acis_prism(latitude, longitude, start, end, map_variables=True,
Returns
-------
data : pandas.DataFrame
Daily precipitation [mm] and temperature [Celsius] data
Daily precipitation [mm], temperature [Celsius], and degree day
[Celsius-days] data
metadata : dict
Metadata of the selected grid cell

Expand Down Expand Up @@ -193,7 +194,8 @@ def get_acis_nrcc(latitude, longitude, start, end, grid, map_variables=True,
Returns
-------
data : pandas.DataFrame
Daily precipitation [mm] and temperature [Celsius] data
Daily precipitation [mm], temperature [Celsius], and degree day
[Celsius-days] data
metadata : dict
Metadata of the selected grid cell

Expand Down Expand Up @@ -355,7 +357,8 @@ def get_acis_station_data(station, start, end, trace_val=0.001,
Returns
-------
data : pandas.DataFrame
Daily precipitation [mm], temperature [Celsius], and snow [cm] data
Daily precipitation [mm], temperature [Celsius], snow [cm], and degree day
[Celsius-days] data data
metadata : dict
station metadata

Expand Down
0