Modeling channel degradation over time#

This example demonstrates how to model the degradation of the AIA channels as a function of time over the entire lifetime of the instrument.

import matplotlib.pyplot as plt
import numpy as np

import astropy.time
import astropy.units as u
from astropy.visualization import time_support

from aiapy.calibrate import degradation
from aiapy.calibrate.util import get_correction_table

The sensitivity of the AIA channels degrade over time. Possible causes include the deposition of organic molecules from the telescope structure onto the optical elements and the decrease in detector sensitivity following (E)UV exposure. When looking at AIA images over the lifetime of the mission, it is important to understand how the degradation of the instrument impacts the measured intensity. For monitoring brightness changes over months and years, degradation correction is an important step in the data normalization process. For instance, the SDO Machine Learning Dataset (Galvez et al., 2019) includes this correction.

The AIA team models the change in transmission as a function of time (see Boerner et al., 2012) and the table of correction parameters is publicly available via the Joint Science Operations Center (JSOC).

First, fetch this correction table. It is not strictly necessary to do this explicitly, but will significantly speed up the calculation by only fetching the table once.

correction_table = get_correction_table()
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/erfa/core.py:154: ErfaWarning: ERFA function "taiutc" yielded 1 of "dubious year (Note 4)"
  warnings.warn('ERFA function "{}" yielded {}'.format(func_name, wmsg),
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/erfa/core.py:154: ErfaWarning: ERFA function "utctai" yielded 1 of "dubious year (Note 3)"
  warnings.warn('ERFA function "{}" yielded {}'.format(func_name, wmsg),
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/erfa/core.py:154: ErfaWarning: ERFA function "dtf2d" yielded 100 of "dubious year (Note 6)"
  warnings.warn('ERFA function "{}" yielded {}'.format(func_name, wmsg),

We want to compute the degradation for each EUV channel.

channels = [94, 131, 171, 193, 211, 304, 335] * u.angstrom

We can use the time subpackage to create an array of times between now and the start of the mission with a cadence of one week.

time_0 = astropy.time.Time("2010-03-25T00:00:00", scale="utc")
now = astropy.time.Time.now()
time = time_0 + np.arange(0, (now - time_0).to(u.day).value, 7) * u.day

Finally, we can use the aiapy.calibrate.degradation function to compute the degradation for a particular channel and observation time. This is modeled as the ratio of the effective area measured at a particular calibration epoch over the uncorrected effective area with a polynomial interpolation to the exact time.

deg = {c: degradation(c, time, correction_table=correction_table) for c in channels}
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-10-13T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-10-20T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-10-27T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-11-03T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-11-10T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-11-17T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-11-24T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-12-01T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-12-08T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-12-15T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-12-22T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2011-12-29T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-01-05T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-01-12T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-01-19T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-01-26T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-02-02T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-02-09T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-02-16T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-02-23T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-03-01T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-03-08T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-03-15T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-03-22T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-03-29T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-04-05T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-04-12T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-04-19T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-04-26T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-05-03T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-05-10T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-05-17T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-05-24T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-05-31T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-06-07T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-06-14T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-06-21T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-06-28T00:00:00.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-07-04T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-07-11T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-07-18T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-07-25T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-08-01T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-08-08T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-08-15T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-08-22T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-08-29T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-09-05T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-09-12T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-09-19T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-09-26T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-10-03T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-10-10T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-10-17T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-10-24T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-10-31T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-11-07T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-11-14T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-11-21T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-11-28T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-12-05T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-12-12T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-12-19T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2012-12-26T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-01-02T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-01-09T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-01-16T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-01-23T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-01-30T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-02-06T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-02-13T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-02-20T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-02-27T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-03-06T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-03-13T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-03-20T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-03-27T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-04-03T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-04-10T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-04-17T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-04-24T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-05-01T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-05-08T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-05-15T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-05-22T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-05-29T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-06-05T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-06-12T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-06-19T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-06-26T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-07-03T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-07-10T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-07-17T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-07-24T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-07-31T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-08-07T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-08-14T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-08-21T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-08-28T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-09-04T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-09-11T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-09-18T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-09-25T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-10-02T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-10-09T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-10-16T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-10-23T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-10-30T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-11-06T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-11-13T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-11-20T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-11-27T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-12-04T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-12-11T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-12-18T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2013-12-25T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-01-01T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-01-08T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-01-15T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-01-22T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-01-29T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-02-05T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-02-12T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-02-19T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-02-26T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-03-05T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-03-12T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-03-19T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-03-26T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-04-02T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-04-09T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-04-16T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-04-23T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-04-30T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-05-07T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-05-14T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-05-21T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-05-28T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-06-04T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-06-11T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-06-18T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-06-25T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-07-02T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-07-09T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-07-16T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-07-23T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-07-30T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-08-06T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-08-13T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-08-20T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-08-27T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-09-03T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-09-10T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-09-17T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-09-24T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-10-01T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-10-08T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-10-15T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-10-22T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-10-29T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-11-05T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-11-12T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-11-19T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-11-26T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-12-03T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-12-10T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-12-17T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-12-24T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2014-12-31T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-01-07T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-01-14T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-01-21T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-01-28T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-02-04T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-02-11T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-02-18T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-02-25T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-03-04T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-03-11T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-03-18T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-03-25T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-04-01T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-04-08T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-04-15T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-04-22T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-04-29T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-05-06T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-05-13T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-05-20T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-05-27T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-06-03T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-06-10T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-06-17T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-06-24T23:59:59.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-07-01T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-07-08T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-07-15T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-07-22T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-07-29T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-08-05T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-08-12T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-08-19T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-08-26T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-09-02T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-09-09T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-09-16T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-09-23T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-09-30T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-10-07T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-10-14T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-10-21T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-10-28T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-11-04T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-11-11T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-11-18T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-11-25T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-12-02T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-12-09T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-12-16T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-12-23T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2015-12-30T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-01-06T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-01-13T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-01-20T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-01-27T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-02-03T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-02-10T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-02-17T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-02-24T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-03-02T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-03-09T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-03-16T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-03-23T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-03-30T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-04-06T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-04-13T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-04-20T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-04-27T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-05-04T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-05-11T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-05-18T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-05-25T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-06-01T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-06-08T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-06-15T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-06-22T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-06-29T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-07-06T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-07-13T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-07-20T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-07-27T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-08-03T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-08-10T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-08-17T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-08-24T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-08-31T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-09-07T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-09-14T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-09-21T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-09-28T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-10-05T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-10-12T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-10-19T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-10-26T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-11-02T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-11-09T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-11-16T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-11-23T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-11-30T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-12-07T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-12-14T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-12-21T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2016-12-28T23:59:58.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-01-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-01-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-01-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-01-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-02-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-02-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-02-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-02-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-03-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-03-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-03-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-03-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-03-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-04-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-04-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-04-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-04-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-05-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-05-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-05-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-05-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-05-31T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-06-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-06-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-06-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-06-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-07-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-07-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-07-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-07-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-08-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-08-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-08-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-08-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-08-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-09-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-09-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-09-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-09-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-10-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-10-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-10-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-10-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-11-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-11-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-11-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-11-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-11-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-12-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-12-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-12-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2017-12-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-01-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-01-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-01-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-01-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-01-31T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-02-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-02-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-02-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-02-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-03-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-03-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-03-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-03-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-04-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-04-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-04-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-04-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-05-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-05-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-05-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-05-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-05-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-06-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-06-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-06-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-06-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-07-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-07-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-07-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-07-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-08-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-08-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-08-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-08-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-08-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-09-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-09-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-09-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-09-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-10-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-10-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-10-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-10-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-10-31T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-11-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-11-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-11-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-11-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-12-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-12-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-12-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2018-12-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-01-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-01-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-01-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-01-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-01-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-02-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-02-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-02-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-02-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-03-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-03-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-03-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-03-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-04-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-04-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-04-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-04-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-05-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-05-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-05-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-05-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-05-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-06-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-06-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-06-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-06-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-07-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-07-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-07-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-07-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-07-31T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-08-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-08-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-08-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-08-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-09-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-09-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-09-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-09-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-10-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-10-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-10-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-10-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-10-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-11-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-11-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-11-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-11-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-12-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-12-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-12-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2019-12-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-01-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-01-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-01-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-01-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-01-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-02-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-02-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-02-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-02-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-03-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-03-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-03-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-03-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-04-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-04-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-04-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-04-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-04-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-05-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-05-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-05-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-05-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-06-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-06-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-06-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-06-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-07-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-07-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-07-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-07-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-07-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-08-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-08-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-08-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-08-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-09-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-09-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-09-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-09-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-09-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-10-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-10-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-10-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-10-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-11-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-11-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-11-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-11-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-12-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-12-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-12-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-12-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2020-12-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-01-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-01-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-01-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-01-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-02-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-02-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-02-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-02-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-03-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-03-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-03-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-03-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-03-31T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-04-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-04-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-04-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-04-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-05-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-05-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-05-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-05-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-06-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-06-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-06-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-06-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-06-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-07-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-07-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-07-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-07-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-08-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-08-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-08-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-08-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-09-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-09-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-09-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-09-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-09-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-10-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-10-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-10-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-10-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-11-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-11-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-11-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-11-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-12-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-12-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-12-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-12-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2021-12-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-01-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-01-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-01-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-01-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-02-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-02-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-02-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-02-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-03-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-03-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-03-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-03-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-03-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-04-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-04-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-04-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-04-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-05-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-05-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-05-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-05-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-06-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-06-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-06-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-06-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-06-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-07-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-07-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-07-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-07-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-08-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-08-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-08-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-08-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-08-31T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-09-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-09-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-09-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-09-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-10-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-10-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-10-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-10-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-11-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-11-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-11-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-11-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-11-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-12-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-12-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-12-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2022-12-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-01-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-01-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-01-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-01-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-02-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-02-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-02-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-02-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-03-01T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-03-08T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-03-15T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-03-22T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-03-29T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-04-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-04-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-04-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-04-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-05-03T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-05-10T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-05-17T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-05-24T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-05-31T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-06-07T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-06-14T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-06-21T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-06-28T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-07-05T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-07-12T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-07-19T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-07-26T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-08-02T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-08-09T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-08-16T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-08-23T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-08-30T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-09-06T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-09-13T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-09-20T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-09-27T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-10-04T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-10-11T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-10-18T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)
/home/docs/checkouts/readthedocs.org/user_builds/aiapy/conda/stable/lib/python3.10/site-packages/astropy/units/decorators.py:313: AiapyUserWarning: Multiple valid epochs for 2023-10-25T23:59:57.000. Using the most recent one
  return_ = wrapped_function(*func_args, **func_kwargs)

Plotting the different degradation curves as a function of time, we can easily visualize how the different channels have degraded over time.

time_support(format="jyear")  # This lets you pass astropy.time.Time objects directly to matplotlib
fig = plt.figure()
ax = fig.gca()
for c in channels:
    ax.plot(time, deg[c], label=f"{c.value:.0f} Å")
ax.set_xlim(time[[0, -1]])
ax.legend(frameon=False, ncol=4, bbox_to_anchor=(0.5, 1), loc="lower center")
ax.set_xlabel("Time")
ax.set_ylabel("Degradation")
plt.show()
instrument degradation

Total running time of the script: (0 minutes 53.137 seconds)

Gallery generated by Sphinx-Gallery