@@ -304,13 +304,13 @@ def spa_python(time, latitude, longitude,
304
304
temperature : int or float, optional, default 12
305
305
avg. yearly air temperature in degrees C.
306
306
delta_t : float, optional, default 67.0
307
+ Difference between terrestrial time and UT1.
307
308
If delta_t is None, uses spa.calculate_deltat
308
309
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.
311
311
*Note: delta_t = None will break code using nrel_numba,
312
312
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]_ .
314
314
atmos_refrac : None or float, optional, default None
315
315
The approximate atmospheric refraction (in degrees)
316
316
at sunrise and sunset.
@@ -405,18 +405,17 @@ def sun_rise_set_transit_spa(times, latitude, longitude, how='numpy',
405
405
Latitude in degrees, positive north of equator, negative to south
406
406
longitude : float
407
407
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
416
408
how : str, optional, default 'numpy'
417
409
Options are 'numpy' or 'numba'. If numba >= 0.17.0
418
410
is installed, how='numba' will compile the spa functions
419
411
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.*
420
419
numthreads : int, optional, default 4
421
420
Number of threads to use if how == 'numba'.
422
421
@@ -972,13 +971,12 @@ def nrel_earthsun_distance(time, how='numpy', delta_t=67.0, numthreads=4):
972
971
to machine code and run them multithreaded.
973
972
974
973
delta_t : float, optional, default 67.0
974
+ Difference between terrestrial time and UT1.
975
975
If delta_t is None, uses spa.calculate_deltat
976
976
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.
979
978
*Note: delta_t = None will break code using nrel_numba,
980
979
this will be fixed in a future version.*
981
- By default, use USNO historical data and predictions
982
980
983
981
numthreads : int, optional, default 4
984
982
Number of threads to use if how == 'numba'.
0 commit comments