Skip to content

Commit c1bbf71

Browse files
authored
Update forecast.HRRR model name to match server update (pvlib#1292)
* Update forecast.py The HRRR CONUS 2.5km forecast model data name has changed. * Update v0.9.0.rst Update v0.9.0.rst with bug fix documentation
1 parent 65782fd commit c1bbf71

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/sphinx/source/whatsnew/v0.9.0.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,8 @@ Bug fixes
208208
(:pull:`1273`, :issue:`1221`)
209209
* Fix :py:meth:`~pvlib.forecast.ForecastModel.get_data` failure to correct for
210210
non-UTC timezones. (:issue:`1237`, :pull:`1285`)
211+
* Fixed :py:class:`~pvlib.forecast.HRRR` by changing model name to reflect change on the server. (:issue:`1291`,
212+
:pull:`1292`)
211213

212214
Testing
213215
~~~~~~~

pvlib/forecast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ class HRRR(ForecastModel):
986986

987987
def __init__(self, set_type='best'):
988988
model_type = 'Forecast Model Data'
989-
model = 'NCEP HRRR CONUS 2.5km'
989+
model = 'HRRR CONUS 2.5km Forecasts'
990990

991991
self.variables = {
992992
'temp_air': 'Temperature_height_above_ground',

0 commit comments

Comments
 (0)