Skip to content

Update forecast.HRRR model name to match server update #1292

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 2 commits into from
Aug 26, 2021
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