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
2 changes: 2 additions & 0 deletions docs/sphinx/source/whatsnew/v0.9.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ Bug fixes
(:pull:`1273`, :issue:`1221`)
* Fix :py:meth:`~pvlib.forecast.ForecastModel.get_data` failure to correct for
non-UTC timezones. (:issue:`1237`, :pull:`1285`)
* Fixed :py:class:`~pvlib.forecast.HRRR` by changing model name to reflect change on the server. (:issue:`1291`,
:pull:`1292`)

Testing
~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion pvlib/forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ class HRRR(ForecastModel):

def __init__(self, set_type='best'):
model_type = 'Forecast Model Data'
model = 'NCEP HRRR CONUS 2.5km'
model = 'HRRR CONUS 2.5km Forecasts'

self.variables = {
'temp_air': 'Temperature_height_above_ground',
Expand Down