Thomas Robitaille
Thomas Robitaille
This is a 'big picture' issue but we should in general make sure that anywhere that accepts filenames/paths in astropy can accept ``pathlib.Path`` objects. This is in the standard library...
Currently setting ``decimal=True`` in ``Angle.to_string`` results in values that don't have any units: ```python In [31]: a = Angle(3.1 * u.deg) In [32]: a.to_string(unit='deg', decimal=True) Out[32]: '3.1' In [33]: a.to_string(unit='mas',...
Now that glue-jupyter is picking up steam, we should press ahead with the plan to split glue-core out into glue-core and glue-qt, so that packages relying on glue-core for Jupyter...
As described in https://github.com/glue-viz/glue-astronomy/pull/76 we should: * Document that applications relying on glue should execute ``load_plugins`` to have access to plugins - perhaps we can add a new page in...
Currently the API in the developer docs covers a lot of classes and functions in glue but many were never really intended to be public API as such. I think...
I think fast-histogram should be formally listed as a dependency
Some of the documentation here about architecture or pure-Python linking, data access etc can be moved to the glue-core documentation, so that we can reference it from both the Qt...
Companion to https://github.com/glue-viz/glue-jupyter/pull/346
I am trying to use vispy with PyQt 6.4 in an application where I also need to use ``QtWebEngineWidgets``. This used to work fine with PyQt5 but no longer works....
The following example shows that if a NaN value is present in the original data being compressed, the whole tile will be NaN when read in again: ``` In [1]:...