@@ -216,11 +216,11 @@ def get_data(self, latitude, longitude, start, end,
216216 The start time.
217217 end: datetime or timestamp
218218 The end time.
219- vert_level: None, float or integer
219+ vert_level: None, float or integer, default None
220220 Vertical altitude of interest.
221- variables : None or list
221+ query_variables : None or list, default None
222222 If None, uses self.variables.
223- close_netcdf_data: bool
223+ close_netcdf_data: bool, default True
224224 Controls if the temporary netcdf data file should be closed.
225225 Set to False to access the raw data.
226226
@@ -309,7 +309,7 @@ def rename(self, data, variables=None):
309309 Parameters
310310 ----------
311311 data: DataFrame
312- variables: None or dict
312+ variables: None or dict, default None
313313 If None, uses self.variables
314314
315315 Returns
@@ -381,7 +381,7 @@ def cloud_cover_to_ghi_linear(self, cloud_cover, ghi_clear, offset=35,
381381 Cloud cover in %.
382382 ghi_clear: numeric
383383 GHI under clear sky conditions.
384- offset: numeric
384+ offset: numeric, default 35
385385 Determines the minimum GHI.
386386 kwargs
387387 Not used.
@@ -421,7 +421,7 @@ def cloud_cover_to_irradiance_clearsky_scaling(self, cloud_cover,
421421 ----------
422422 cloud_cover : Series
423423 Cloud cover in %.
424- method : str
424+ method : str, default 'linear'
425425 Method for converting cloud cover to GHI.
426426 'linear' is currently the only option.
427427 **kwargs
@@ -463,7 +463,7 @@ def cloud_cover_to_transmittance_linear(self, cloud_cover, offset=0.75,
463463 ----------
464464 cloud_cover : numeric
465465 Cloud cover in %.
466- offset : numeric
466+ offset : numeric, default 0.75
467467 Determines the maximum transmittance.
468468 kwargs
469469 Not used.
@@ -520,7 +520,7 @@ def cloud_cover_to_irradiance(self, cloud_cover, how='clearsky_scaling',
520520 Parameters
521521 ----------
522522 cloud_cover : Series
523- how : str
523+ how : str, default 'clearsky_scaling'
524524 Selects the method for conversion. Can be one of
525525 clearsky_scaling or liujordan.
526526 **kwargs
@@ -633,9 +633,9 @@ class GFS(ForecastModel):
633633
634634 Parameters
635635 ----------
636- resolution: string
636+ resolution: string, default 'half'
637637 Resolution of the model, either 'half' or 'quarter' degree.
638- set_type: string
638+ set_type: string, default 'best'
639639 Type of model to pull data from.
640640
641641 Attributes
@@ -700,7 +700,7 @@ def process_data(self, data, cloud_cover='total_clouds', **kwargs):
700700 ----------
701701 data: DataFrame
702702 Raw forecast data
703- cloud_cover: str
703+ cloud_cover: str, default 'total_clouds'
704704 The type of cloud cover used to infer the irradiance.
705705
706706 Returns
@@ -727,7 +727,7 @@ class HRRR_ESRL(ForecastModel):
727727
728728 Parameters
729729 ----------
730- set_type: string
730+ set_type: string, default 'best'
731731 Type of model to pull data from.
732732
733733 Attributes
@@ -785,7 +785,7 @@ def process_data(self, data, cloud_cover='total_clouds', **kwargs):
785785 ----------
786786 data: DataFrame
787787 Raw forecast data
788- cloud_cover: str
788+ cloud_cover: str, default 'total_clouds'
789789 The type of cloud cover used to infer the irradiance.
790790
791791 Returns
@@ -812,7 +812,7 @@ class NAM(ForecastModel):
812812
813813 Parameters
814814 ----------
815- set_type: string
815+ set_type: string, default 'best'
816816 Type of model to pull data from.
817817
818818 Attributes
@@ -866,7 +866,7 @@ def process_data(self, data, cloud_cover='total_clouds', **kwargs):
866866 ----------
867867 data: DataFrame
868868 Raw forecast data
869- cloud_cover: str
869+ cloud_cover: str, default 'total_clouds'
870870 The type of cloud cover used to infer the irradiance.
871871
872872 Returns
@@ -893,7 +893,7 @@ class HRRR(ForecastModel):
893893
894894 Parameters
895895 ----------
896- set_type: string
896+ set_type: string, default 'best'
897897 Type of model to pull data from.
898898
899899 Attributes
@@ -949,7 +949,7 @@ def process_data(self, data, cloud_cover='total_clouds', **kwargs):
949949 ----------
950950 data: DataFrame
951951 Raw forecast data
952- cloud_cover: str
952+ cloud_cover: str, default 'total_clouds'
953953 The type of cloud cover used to infer the irradiance.
954954
955955 Returns
@@ -976,7 +976,7 @@ class NDFD(ForecastModel):
976976
977977 Parameters
978978 ----------
979- set_type: string
979+ set_type: string, default 'best'
980980 Type of model to pull data from.
981981
982982 Attributes
@@ -1045,9 +1045,9 @@ class RAP(ForecastModel):
10451045
10461046 Parameters
10471047 ----------
1048- resolution: string or int
1048+ resolution: string or int, default '20'
10491049 The model resolution, either '20' or '40' (km)
1050- set_type: string
1050+ set_type: string, default 'best'
10511051 Type of model to pull data from.
10521052
10531053 Attributes
@@ -1104,7 +1104,7 @@ def process_data(self, data, cloud_cover='total_clouds', **kwargs):
11041104 ----------
11051105 data: DataFrame
11061106 Raw forecast data
1107- cloud_cover: str
1107+ cloud_cover: str, default 'total_clouds'
11081108 The type of cloud cover used to infer the irradiance.
11091109
11101110 Returns
0 commit comments