Skip to content

Commit fef827b

Browse files
authored
fix broken seealso docstring entries (#946)
1 parent a28d819 commit fef827b

File tree

5 files changed

+33
-33
lines changed

5 files changed

+33
-33
lines changed

pvlib/clearsky.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ def bird(zenith, airmass_relative, aod380, aod500, precipitable_water,
855855
See also
856856
--------
857857
pvlib.atmosphere.bird_hulstrom80_aod_bb
858-
pvlib.atmosphere.relativeairmass
858+
pvlib.atmosphere.get_relative_airmass
859859
860860
References
861861
----------

pvlib/iam.py

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ def ashrae(aoi, b=0.05):
7373
7474
See Also
7575
--------
76-
iam.physical
77-
iam.martin_ruiz
78-
iam.interp
76+
pvlib.iam.physical
77+
pvlib.iam.martin_ruiz
78+
pvlib.iam.interp
7979
"""
8080

8181
iam = 1 - b * ((1 / np.cos(np.radians(aoi)) - 1))
@@ -143,10 +143,10 @@ def physical(aoi, n=1.526, K=4., L=0.002):
143143
144144
See Also
145145
--------
146-
iam.martin_ruiz
147-
iam.ashrae
148-
iam.interp
149-
iam.sapm
146+
pvlib.iam.martin_ruiz
147+
pvlib.iam.ashrae
148+
pvlib.iam.interp
149+
pvlib.iam.sapm
150150
"""
151151
zeroang = 1e-06
152152

@@ -248,11 +248,11 @@ def martin_ruiz(aoi, a_r=0.16):
248248
249249
See Also
250250
--------
251-
iam.martin_ruiz_diffuse
252-
iam.physical
253-
iam.ashrae
254-
iam.interp
255-
iam.sapm
251+
pvlib.iam.martin_ruiz_diffuse
252+
pvlib.iam.physical
253+
pvlib.iam.ashrae
254+
pvlib.iam.interp
255+
pvlib.iam.sapm
256256
'''
257257
# Contributed by Anton Driesse (@adriesse), PV Performance Labs. July, 2019
258258

@@ -334,11 +334,11 @@ def martin_ruiz_diffuse(surface_tilt, a_r=0.16, c1=0.4244, c2=None):
334334
335335
See Also
336336
--------
337-
iam.martin_ruiz
338-
iam.physical
339-
iam.ashrae
340-
iam.interp
341-
iam.sapm
337+
pvlib.iam.martin_ruiz
338+
pvlib.iam.physical
339+
pvlib.iam.ashrae
340+
pvlib.iam.interp
341+
pvlib.iam.sapm
342342
'''
343343
# Contributed by Anton Driesse (@adriesse), PV Performance Labs. Oct. 2019
344344

@@ -424,10 +424,10 @@ def interp(aoi, theta_ref, iam_ref, method='linear', normalize=True):
424424
425425
See Also
426426
--------
427-
iam.physical
428-
iam.ashrae
429-
iam.martin_ruiz
430-
iam.sapm
427+
pvlib.iam.physical
428+
pvlib.iam.ashrae
429+
pvlib.iam.martin_ruiz
430+
pvlib.iam.sapm
431431
'''
432432
# Contributed by Anton Driesse (@adriesse), PV Performance Labs. July, 2019
433433

@@ -507,10 +507,10 @@ def sapm(aoi, module, upper=None):
507507
508508
See Also
509509
--------
510-
iam.physical
511-
iam.ashrae
512-
iam.martin_ruiz
513-
iam.interp
510+
pvlib.iam.physical
511+
pvlib.iam.ashrae
512+
pvlib.iam.martin_ruiz
513+
pvlib.iam.interp
514514
"""
515515

516516
aoi_coeff = [module['B5'], module['B4'], module['B3'], module['B2'],

pvlib/location.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class Location(object):
5454
5555
See also
5656
--------
57-
pvsystem.PVSystem
57+
pvlib.pvsystem.PVSystem
5858
"""
5959

6060
def __init__(self, latitude, longitude, tz='UTC', altitude=0,

pvlib/pvsystem.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -955,8 +955,8 @@ def systemdef(meta, surface_tilt, surface_azimuth, albedo, modules_per_string,
955955
956956
See also
957957
--------
958-
pvlib.tmy.readtmy3
959-
pvlib.tmy.readtmy2
958+
pvlib.iotools.read_tmy3
959+
pvlib.iotools.read_tmy2
960960
'''
961961

962962
try:
@@ -1689,8 +1689,8 @@ def sapm(effective_irradiance, temp_cell, module):
16891689
See Also
16901690
--------
16911691
retrieve_sam
1692-
temperature.sapm_cell
1693-
temperature.sapm_module
1692+
pvlib.temperature.sapm_cell
1693+
pvlib.temperature.sapm_module
16941694
'''
16951695

16961696
# TODO: someday, change temp_ref and irrad_ref to reference_temperature and

pvlib/solarposition.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ def equation_of_time_pvcdrom(dayofyear):
11261126
11271127
See Also
11281128
--------
1129-
equation_of_time_Spencer71
1129+
equation_of_time_spencer71
11301130
"""
11311131
# day angle relative to Vernal Equinox, typically March 22 (day number 81)
11321132
bday = \
@@ -1380,7 +1380,7 @@ def hour_angle(times, longitude, equation_of_time):
13801380
13811381
See Also
13821382
--------
1383-
equation_of_time_Spencer71
1383+
equation_of_time_spencer71
13841384
equation_of_time_pvcdrom
13851385
"""
13861386
naive_times = times.tz_localize(None) # naive but still localized

0 commit comments

Comments
 (0)