@@ -63,13 +63,13 @@ def get_pvgis_hourly(latitude, longitude, start=None, end=None,
63
63
In decimal degrees, between -90 and 90, north is positive (ISO 19115)
64
64
longitude : float
65
65
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
67
67
First year of the radiation time series. Defaults to first year
68
68
available.
69
- end : int or datetime like, default None
69
+ end : int or datetime like, optional
70
70
Last year of the radiation time series. Defaults to last year
71
71
available.
72
- raddatabase : str, default None
72
+ raddatabase : str, optional
73
73
Name of radiation database. Options depend on location, see [3]_.
74
74
components : bool, default True
75
75
Output solar radiation components (beam, diffuse, and reflected).
@@ -87,14 +87,14 @@ def get_pvgis_hourly(latitude, longitude, start=None, end=None,
87
87
PVGIS website and pvlib<=0.9.5 is offset by 180 degrees.
88
88
usehorizon : bool, default True
89
89
Include effects of horizon
90
- userhorizon : list of float, default None
90
+ userhorizon : list of float, optional
91
91
Optional user specified elevation of horizon in degrees, at equally
92
92
spaced azimuth clockwise from north, only valid if ``usehorizon`` is
93
93
true, if ``usehorizon`` is true but ``userhorizon`` is ``None`` then
94
94
PVGIS will calculate the horizon [4]_
95
95
pvcalculation : bool, default False
96
96
Return estimate of hourly PV production.
97
- peakpower : float, default None
97
+ peakpower : float, optional
98
98
Nominal power of PV system in kW. Required if pvcalculation=True.
99
99
pvtechchoice : {'crystSi', 'CIS', 'CdTe', 'Unknown'}, default 'crystSi'
100
100
PV technology.
@@ -309,7 +309,7 @@ def read_pvgis_hourly(filename, pvgis_format=None, map_variables=True):
309
309
----------
310
310
filename : str, pathlib.Path, or file-like buffer
311
311
Name, path, or buffer of hourly data file downloaded from PVGIS.
312
- pvgis_format : str, default None
312
+ pvgis_format : str, optional
313
313
Format of PVGIS file or buffer. Equivalent to the ``outputformat``
314
314
parameter in the PVGIS API. If ``filename`` is a file and
315
315
``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,
409
409
documentation [2]_ for more info.
410
410
usehorizon : bool, default True
411
411
include effects of horizon
412
- userhorizon : list of float, default None
412
+ userhorizon : list of float, optional
413
413
optional user specified elevation of horizon in degrees, at equally
414
414
spaced azimuth clockwise from north, only valid if ``usehorizon`` is
415
415
true, if ``usehorizon`` is true but ``userhorizon`` is ``None`` then
416
416
PVGIS will calculate the horizon [3]_
417
- startyear : int, default None
417
+ startyear : int, optional
418
418
first year to calculate TMY
419
- endyear : int, default None
419
+ endyear : int, optional
420
420
last year to calculate TMY, must be at least 10 years from first year
421
421
url : str, default :const:`pvlib.iotools.pvgis.URL`
422
422
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):
573
573
----------
574
574
filename : str, pathlib.Path, or file-like buffer
575
575
Name, path, or buffer of file downloaded from PVGIS.
576
- pvgis_format : str, default None
576
+ pvgis_format : str, optional
577
577
Format of PVGIS file or buffer. Equivalent to the ``outputformat``
578
578
parameter in the PVGIS TMY API. If ``filename`` is a file and
579
579
``pvgis_format`` is ``None`` then the file extension will be used to
0 commit comments