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.6.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ Bug fixes
* Fix issue with unbounded clearness index calculation in disc. (:issue:`540`)
* Limit pvwatts_ac results to be greater than or equal to 0. (:issue:`541`)
* Fix bug in get_relative_airmass(model='youngirvine1967'). (:issue:`545`)
* Fix bug in variable names returned by forecast.py's HRRR_ESRL model.
(:issue:`557`)


Documentation
Expand Down
6 changes: 3 additions & 3 deletions pvlib/forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,8 @@ class HRRR_ESRL(ForecastModel):
"""

def __init__(self, set_type='best'):
import warnings
warnings.warn('HRRR_ESRL is an experimental model and is not always available.')
warnings.warn('HRRR_ESRL is an experimental model and is not '
'always available.')

model_type = 'Forecast Model Data'
model = 'GSD HRRR CONUS 3km surface'
Expand All @@ -764,7 +764,7 @@ def __init__(self, set_type='best'):

self.output_variables = [
'temp_air',
'wind_speed'
'wind_speed',
'ghi_raw',
'ghi',
'dni',
Expand Down