@@ -304,13 +304,13 @@ def spa_python(time, latitude, longitude,
304304 temperature : int or float, optional, default 12
305305 avg. yearly air temperature in degrees C.
306306 delta_t : float, optional, default 67.0
307+ Difference between terrestrial time and UT1.
307308 If delta_t is None, uses spa.calculate_deltat
308309 using time.year and time.month from pandas.DatetimeIndex.
309- For most simulations specifing delta_t is sufficient.
310- Difference between terrestrial time and UT1.
310+ For most simulations the default delta_t is sufficient.
311311 *Note: delta_t = None will break code using nrel_numba,
312312 this will be fixed in a future version.*
313- The USNO has historical and forecasted delta_t [3].
313+ The USNO has historical and forecasted delta_t [3]_ .
314314 atmos_refrac : None or float, optional, default None
315315 The approximate atmospheric refraction (in degrees)
316316 at sunrise and sunset.
@@ -405,18 +405,17 @@ def sun_rise_set_transit_spa(times, latitude, longitude, how='numpy',
405405 Latitude in degrees, positive north of equator, negative to south
406406 longitude : float
407407 Longitude in degrees, positive east of prime meridian, negative to west
408- delta_t : float, optional
409- If delta_t is None, uses spa.calculate_deltat
410- using times.year and times.month from pandas.DatetimeIndex.
411- For most simulations specifing delta_t is sufficient.
412- Difference between terrestrial time and UT1.
413- delta_t = None will break code using nrel_numba,
414- this will be fixed in a future version.
415- By default, use USNO historical data and predictions
416408 how : str, optional, default 'numpy'
417409 Options are 'numpy' or 'numba'. If numba >= 0.17.0
418410 is installed, how='numba' will compile the spa functions
419411 to machine code and run them multithreaded.
412+ delta_t : float, optional, default 67.0
413+ Difference between terrestrial time and UT1.
414+ If delta_t is None, uses spa.calculate_deltat
415+ using times.year and times.month from pandas.DatetimeIndex.
416+ For most simulations the default delta_t is sufficient.
417+ *Note: delta_t = None will break code using nrel_numba,
418+ this will be fixed in a future version.*
420419 numthreads : int, optional, default 4
421420 Number of threads to use if how == 'numba'.
422421
@@ -972,13 +971,12 @@ def nrel_earthsun_distance(time, how='numpy', delta_t=67.0, numthreads=4):
972971 to machine code and run them multithreaded.
973972
974973 delta_t : float, optional, default 67.0
974+ Difference between terrestrial time and UT1.
975975 If delta_t is None, uses spa.calculate_deltat
976976 using time.year and time.month from pandas.DatetimeIndex.
977- For most simulations specifing delta_t is sufficient.
978- Difference between terrestrial time and UT1.
977+ For most simulations the default delta_t is sufficient.
979978 *Note: delta_t = None will break code using nrel_numba,
980979 this will be fixed in a future version.*
981- By default, use USNO historical data and predictions
982980
983981 numthreads : int, optional, default 4
984982 Number of threads to use if how == 'numba'.
0 commit comments