@@ -63,13 +63,13 @@ def get_pvgis_hourly(latitude, longitude, start=None, end=None,
6363 In decimal degrees, between -90 and 90, north is positive (ISO 19115)
6464 longitude : float
6565 In decimal degrees, between -180 and 180, east is positive (ISO 19115)
66- start : int or datetime like, default None
66+ start : int or datetime like, optional
6767 First year of the radiation time series. Defaults to first year
6868 available.
69- end : int or datetime like, default None
69+ end : int or datetime like, optional
7070 Last year of the radiation time series. Defaults to last year
7171 available.
72- raddatabase : str, default None
72+ raddatabase : str, optional
7373 Name of radiation database. Options depend on location, see [3]_.
7474 components : bool, default True
7575 Output solar radiation components (beam, diffuse, and reflected).
@@ -87,14 +87,14 @@ def get_pvgis_hourly(latitude, longitude, start=None, end=None,
8787 PVGIS website and pvlib<=0.9.5 is offset by 180 degrees.
8888 usehorizon : bool, default True
8989 Include effects of horizon
90- userhorizon : list of float, default None
90+ userhorizon : list of float, optional
9191 Optional user specified elevation of horizon in degrees, at equally
9292 spaced azimuth clockwise from north, only valid if ``usehorizon`` is
9393 true, if ``usehorizon`` is true but ``userhorizon`` is ``None`` then
9494 PVGIS will calculate the horizon [4]_
9595 pvcalculation : bool, default False
9696 Return estimate of hourly PV production.
97- peakpower : float, default None
97+ peakpower : float, optional
9898 Nominal power of PV system in kW. Required if pvcalculation=True.
9999 pvtechchoice : {'crystSi', 'CIS', 'CdTe', 'Unknown'}, default 'crystSi'
100100 PV technology.
@@ -309,7 +309,7 @@ def read_pvgis_hourly(filename, pvgis_format=None, map_variables=True):
309309 ----------
310310 filename : str, pathlib.Path, or file-like buffer
311311 Name, path, or buffer of hourly data file downloaded from PVGIS.
312- pvgis_format : str, default None
312+ pvgis_format : str, optional
313313 Format of PVGIS file or buffer. Equivalent to the ``outputformat``
314314 parameter in the PVGIS API. If ``filename`` is a file and
315315 ``pvgis_format`` is ``None`` then the file extension will be used to
@@ -409,14 +409,14 @@ def get_pvgis_tmy(latitude, longitude, outputformat='json', usehorizon=True,
409409 documentation [2]_ for more info.
410410 usehorizon : bool, default True
411411 include effects of horizon
412- userhorizon : list of float, default None
412+ userhorizon : list of float, optional
413413 optional user specified elevation of horizon in degrees, at equally
414414 spaced azimuth clockwise from north, only valid if ``usehorizon`` is
415415 true, if ``usehorizon`` is true but ``userhorizon`` is ``None`` then
416416 PVGIS will calculate the horizon [3]_
417- startyear : int, default None
417+ startyear : int, optional
418418 first year to calculate TMY
419- endyear : int, default None
419+ endyear : int, optional
420420 last year to calculate TMY, must be at least 10 years from first year
421421 url : str, default :const:`pvlib.iotools.pvgis.URL`
422422 base url of PVGIS API, append ``tmy`` to get TMY endpoint
@@ -573,7 +573,7 @@ def read_pvgis_tmy(filename, pvgis_format=None, map_variables=True):
573573 ----------
574574 filename : str, pathlib.Path, or file-like buffer
575575 Name, path, or buffer of file downloaded from PVGIS.
576- pvgis_format : str, default None
576+ pvgis_format : str, optional
577577 Format of PVGIS file or buffer. Equivalent to the ``outputformat``
578578 parameter in the PVGIS TMY API. If ``filename`` is a file and
579579 ``pvgis_format`` is ``None`` then the file extension will be used to
0 commit comments