diff --git a/pvlib/solarposition.py b/pvlib/solarposition.py index 7284191d68..4d612b5490 100644 --- a/pvlib/solarposition.py +++ b/pvlib/solarposition.py @@ -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. @@ -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. @@ -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.