Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 4 additions & 0 deletions docs/sphinx/source/whatsnew/v0.15.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ Bug fixes
introduced in v0.15.1 (:pull:`2702`) that caused a broadcasting
``ValueError`` when ``tracker_theta`` was a 2-D (or higher rank) array.
(:issue:`2747`, :pull:`2749`)
* 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`)


Enhancements
~~~~~~~~~~~~
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