Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
3 changes: 3 additions & 0 deletions docs/sphinx/source/whatsnew/v0.15.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ Documentation
* Clarifies how Linke turbidity values can be provided to
:py:func:`pvlib.clearsky.ineichen` via
:py:func:`pvlib.clearsky.lookup_linke_turbidity` (:issue:`2598`, :pull:`2746`)
* Documented that timestamps returned by :py:func:`~pvlib.iotools.get_era5`

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* Documented that timestamps returned by :py:func:`~pvlib.iotools.get_era5`
* Document that timestamps returned by :py:func:`~pvlib.iotools.get_era5`

represent the end of the averaging interval, consistent with ERA5
conventions. (:issue:`2772`, :pull:`2773`)


Testing
Expand Down
2 changes: 1 addition & 1 deletion pvlib/iotools/era5.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_era5(latitude, longitude, start, end, variables, api_key,
Returns
-------
data : pd.DataFrame
Time series data. The index corresponds to the start of the interval.
Time series data. The index corresponds to the end of the interval.
meta : dict
Metadata.

Expand Down
Loading