File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
docs/sphinx/source/whatsnew Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ Bug fixes
129
129
* Fix issue with unbounded clearness index calculation in disc. (:issue: `540 `)
130
130
* Limit pvwatts_ac results to be greater than or equal to 0. (:issue: `541 `)
131
131
* Fix bug in get_relative_airmass(model='youngirvine1967'). (:issue: `545 `)
132
+ * Fix bug in variable names returned by forecast.py's HRRR_ESRL model.
133
+ (:issue: `557 `)
132
134
133
135
134
136
Documentation
Original file line number Diff line number Diff line change @@ -747,8 +747,8 @@ class HRRR_ESRL(ForecastModel):
747
747
"""
748
748
749
749
def __init__ (self , set_type = 'best' ):
750
- import warnings
751
- warnings . warn ( 'HRRR_ESRL is an experimental model and is not always available.' )
750
+ warnings . warn ( 'HRRR_ESRL is an experimental model and is not '
751
+ ' always available.' )
752
752
753
753
model_type = 'Forecast Model Data'
754
754
model = 'GSD HRRR CONUS 3km surface'
@@ -764,7 +764,7 @@ def __init__(self, set_type='best'):
764
764
765
765
self .output_variables = [
766
766
'temp_air' ,
767
- 'wind_speed'
767
+ 'wind_speed' ,
768
768
'ghi_raw' ,
769
769
'ghi' ,
770
770
'dni' ,
You can’t perform that action at this time.
0 commit comments