Open bsipocz opened 5 years ago
Another related example (from #1652) where it would be nice to understand more time units in the epoch steps (it works with e.g. 'h'
, 'm'
, 'd'
, and maybe 's'
doesn't even make much sense anyway :
from astroquery.jplhorizons import Horizons
s = Horizons(id='10', location='geo', id_type='majorbody', epochs={'start':'2020-01-01 00:00', 'stop':'2020-01-01 00:01', 'step':'1s'})
t = s.ephemerides(quantities='31')
'epochs'
should beTime
objects or at least be able to acceptTime
objects.Some discussion was here: #1488