@@ -63,20 +63,20 @@ 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, default None
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, default None
70
70
Last year of the radiation time series. Defaults to last year
71
71
available.
72
- raddatabase : str, default: None
72
+ raddatabase : str, default None
73
73
Name of radiation database. Options depend on location, see [3]_.
74
- components : bool, default: True
74
+ components : bool, default True
75
75
Output solar radiation components (beam, diffuse, and reflected).
76
76
Otherwise only global irradiance is returned.
77
- surface_tilt : float, default: 0
77
+ surface_tilt : float, default 0
78
78
Tilt angle from horizontal plane. Ignored for two-axis tracking.
79
- surface_azimuth : float, default: 180
79
+ surface_azimuth : float, default 180
80
80
Orientation (azimuth angle) of the (fixed) plane. Counter-clockwise
81
81
from north (north=0, south=180). This is offset 180 degrees from
82
82
the convention used by PVGIS. Ignored for tracking systems.
@@ -85,45 +85,45 @@ def get_pvgis_hourly(latitude, longitude, start=None, end=None,
85
85
The `surface_azimuth` parameter now follows the pvlib convention, which
86
86
is counterclockwise from north. However, the convention used by the
87
87
PVGIS website and pvlib<=0.9.5 is offset by 180 degrees.
88
- usehorizon : bool, default: True
88
+ usehorizon : bool, default True
89
89
Include effects of horizon
90
- userhorizon : list of float, default: None
90
+ userhorizon : list of float, default None
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
- pvcalculation : bool, default: False
95
+ pvcalculation : bool, default False
96
96
Return estimate of hourly PV production.
97
- peakpower : float, default: None
97
+ peakpower : float, default None
98
98
Nominal power of PV system in kW. Required if pvcalculation=True.
99
- pvtechchoice : {'crystSi', 'CIS', 'CdTe', 'Unknown'}, default: 'crystSi'
99
+ pvtechchoice : {'crystSi', 'CIS', 'CdTe', 'Unknown'}, default 'crystSi'
100
100
PV technology.
101
- mountingplace : {'free', 'building'}, default: free
101
+ mountingplace : {'free', 'building'}, default free
102
102
Type of mounting for PV system. Options of 'free' for free-standing
103
103
and 'building' for building-integrated.
104
- loss : float, default: 0
104
+ loss : float, default 0
105
105
Sum of PV system losses in percent. Required if pvcalculation=True
106
- trackingtype : {0, 1, 2, 3, 4, 5}, default: 0
106
+ trackingtype : {0, 1, 2, 3, 4, 5}, default 0
107
107
Type of suntracking. 0=fixed, 1=single horizontal axis aligned
108
108
north-south, 2=two-axis tracking, 3=vertical axis tracking, 4=single
109
109
horizontal axis aligned east-west, 5=single inclined axis aligned
110
110
north-south.
111
- optimal_surface_tilt : bool, default: False
111
+ optimal_surface_tilt : bool, default False
112
112
Calculate the optimum tilt angle. Ignored for two-axis tracking
113
- optimalangles : bool, default: False
113
+ optimalangles : bool, default False
114
114
Calculate the optimum tilt and azimuth angles. Ignored for two-axis
115
115
tracking.
116
- outputformat : str, default: 'json'
116
+ outputformat : str, default 'json'
117
117
Must be in ``['json', 'csv']``. See PVGIS hourly data
118
118
documentation [2]_ for more info.
119
- url : str, default: :const:`pvlib.iotools.pvgis.URL`
119
+ url : str, default :const:`pvlib.iotools.pvgis.URL`
120
120
Base url of PVGIS API. ``seriescalc`` is appended to get hourly data
121
121
endpoint. Note, a specific PVGIS version can be specified, e.g.,
122
122
https://re.jrc.ec.europa.eu/api/v5_2/
123
- map_variables : bool, default: True
123
+ map_variables : bool, default True
124
124
When true, renames columns of the Dataframe to pvlib variable names
125
125
where applicable. See variable :const:`VARIABLE_MAP`.
126
- timeout : int, default: 30
126
+ timeout : int, default 30
127
127
Time in seconds to wait for server response before timeout
128
128
129
129
Returns
@@ -418,7 +418,7 @@ def get_pvgis_tmy(latitude, longitude, outputformat='json', usehorizon=True,
418
418
first year to calculate TMY
419
419
endyear : int, default None
420
420
last year to calculate TMY, must be at least 10 years from first year
421
- url : str, default: :const:`pvlib.iotools.pvgis.URL`
421
+ url : str, default :const:`pvlib.iotools.pvgis.URL`
422
422
base url of PVGIS API, append ``tmy`` to get TMY endpoint
423
423
map_variables : bool, default True
424
424
When true, renames columns of the Dataframe to pvlib variable names
@@ -678,7 +678,7 @@ def get_pvgis_horizon(latitude, longitude, url=URL, **kwargs):
678
678
Latitude in degrees north
679
679
longitude : float
680
680
Longitude in degrees east
681
- url : str, default: :const:`pvlib.iotools.pvgis.URL`
681
+ url : str, default :const:`pvlib.iotools.pvgis.URL`
682
682
Base URL for PVGIS
683
683
kwargs:
684
684
Passed to requests.get
0 commit comments