Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions pvlib/solarposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def spa_python(time, latitude, longitude,
Calculate the solar position using a python implementation of the
NREL SPA algorithm.

The details of the NREL SPA algorithm are described in [1]_.
The details of the NREL SPA algorithm are described in [1]_, [2]_.

If numba is installed, the functions can be compiled to
machine code and the function can be multithreaded.
Expand Down Expand Up @@ -328,25 +328,26 @@ def spa_python(time, latitude, longitude,
-------
DataFrame
The DataFrame will have the following columns:
apparent_zenith (degrees),
zenith (degrees),
apparent_elevation (degrees),
elevation (degrees),
azimuth (degrees),
equation_of_time (minutes).

- apparent_zenith (degrees),
- zenith (degrees),
- apparent_elevation (degrees),
- elevation (degrees),
- azimuth (degrees),
- equation_of_time (minutes).

References
----------
.. [1] I. Reda and A. Andreas, Solar position algorithm for solar
radiation applications. Solar Energy, vol. 76, no. 5, pp. 577-589, 2004.
:doi:`10.1016/j.solener.2003.12.003`.

.. [2] I. Reda and A. Andreas, Corrigendum to Solar position algorithm for
solar radiation applications. Solar Energy, vol. 81, no. 6, p. 838,
2007.
2007. :doi:`10.1016/j.solener.2007.01.003`.

.. [3] USNO delta T:
https://maia.usno.navy.mil/products/deltaT
.. [3] `USNO delta T:
<https://maia.usno.navy.mil/products/deltaT>`_

See also
--------
Expand Down
Loading