Skip to content
Closed
Changes from all commits
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
6 changes: 3 additions & 3 deletions pvlib/solarposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def spa_python(time, latitude, longitude,
avg. yearly air pressure in Pascals.
temperature : int or float, optional, default 12.0
avg. yearly air temperature in degrees C.
delta_t : float or array, optional, default 67.0
delta_t : numeric, optional, default 67.0
Difference between terrestrial time and UT1.
If delta_t is None, uses spa.calculate_deltat
using time.year and time.month from pandas.DatetimeIndex.
Expand Down Expand Up @@ -414,7 +414,7 @@ def sun_rise_set_transit_spa(times, latitude, longitude, how='numpy',
Options are 'numpy' or 'numba'. If numba >= 0.17.0
is installed, how='numba' will compile the spa functions
to machine code and run them multithreaded.
delta_t : float or array, optional, default 67.0
delta_t : numeric, optional, default 67.0
Difference between terrestrial time and UT1.
If delta_t is None, uses spa.calculate_deltat
using times.year and times.month from pandas.DatetimeIndex.
Expand Down Expand Up @@ -969,7 +969,7 @@ def nrel_earthsun_distance(time, how='numpy', delta_t=67.0, numthreads=4):
is installed, how='numba' will compile the spa functions
to machine code and run them multithreaded.

delta_t : float or array, optional, default 67.0
delta_t : numeric, optional, default 67.0
Difference between terrestrial time and UT1.
If delta_t is None, uses spa.calculate_deltat
using time.year and time.month from pandas.DatetimeIndex.
Expand Down
Loading