Thomas Robitaille
Thomas Robitaille
Perhaps a more general question is whether we should be emitting a warning at all if the unit is provided explicitly? How should users silence the warning if they definitely...
Oh I just realized that of course this is not a warning, it is a logger message so it is a bit trickier to filter out for users. But good...
@giang-nghg - I think it would make more sense to focus on a different issue, as this one does require a good understanding of the use cases for ``plot_coord``. As...
I think we should update this section: https://docs.astropy.org/en/stable/visualization/wcsaxes/overlays.html to first mention plot_coord and scatter_coord, and then continue to show the current examples as a more general/advanced way.
Another example ``` users\vssadministrator\appdata\local\temp\tmp2fypdvoz\lib\site-packages\hypothesis\core.py:849: Flaky --------------------------------- Hypothesis ---------------------------------- Highest target scores: 9.59233e-12 (label=' (a-b).to_value(u.s), from TimeDelta') 9.59233e-12 (label=' (b-a).to_value(u.s), from TimeDelta') Falsifying example: test_datetime_difference_agrees_with_timedelta( scale='tt', dt1=datetime.datetime(1631, 3, 23, 13, 1,...
I have not checked yet
Just some notes on some initial hacking: one thing we were interested in was whether it's possible to construct a quantity-like object based on dask. Doing this is pretty simple...
Well at the moment it's not super useful as not usable in astropy functions, so no point in worrying about performance yet :)
@maxnoe - since this is a change in API, we should get this in today or tomorrow if possible. I think this can be treated as a bug really since...
The fractional precision is basically the 64-bit floating point accuracy: ```python >>> Time(1126259462, format='gps').gps - 1126259462 2.384185791015625e-07 >>> np.spacing(1126259462.) 2.384185791015625e-07 ``` Do we expect this to be any better? I...