From cbf19acb2c674ada9cc9a2bd254a8af16b01af36 Mon Sep 17 00:00:00 2001 From: Kyle H Date: Wed, 25 Aug 2021 17:21:40 -0400 Subject: [PATCH 1/2] Update forecast.py The HRRR CONUS 2.5km forecast model data name has changed. --- pvlib/forecast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvlib/forecast.py b/pvlib/forecast.py index 74f533a62b..4b90ca3e05 100644 --- a/pvlib/forecast.py +++ b/pvlib/forecast.py @@ -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', From 3e11c85ad3d15e9f2ed6f9d3b67e96968239b789 Mon Sep 17 00:00:00 2001 From: Kyle H Date: Thu, 26 Aug 2021 08:24:20 -0400 Subject: [PATCH 2/2] Update v0.9.0.rst Update v0.9.0.rst with bug fix documentation --- docs/sphinx/source/whatsnew/v0.9.0.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/sphinx/source/whatsnew/v0.9.0.rst b/docs/sphinx/source/whatsnew/v0.9.0.rst index fc5c9a1fde..0ae268d416 100644 --- a/docs/sphinx/source/whatsnew/v0.9.0.rst +++ b/docs/sphinx/source/whatsnew/v0.9.0.rst @@ -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 ~~~~~~~