Thomas Robitaille

Results 433 issues of Thomas Robitaille

It would be nice to set up Travis CI for continuous integration. The only problem with this is that an API key is required to run the tests - however,...

... as an alternative to the API token. I can try and open a pull request if you like.

The following should work to change e.g. the astrometry.net server: ```python from astroquery.astrometry_net import AstrometryNet, conf conf.server = 'http://localhost:8080 ast = AstrometryNet(...) ``` but does not, because configuration settings are...

If I run the following in IPython: ``` from pywwt.qt import WWTQtClient %gui qt wwt = WWTQtClient() wwt.set_view('Earth') ``` with PyQt 6.6 installed on MacOS X, if I try and...

If I use PyWWT with PyQt5 5.14 and PyQtWebEngine 5.14, the following example: ```python from pywwt.qt import WWTQtClient wwt = WWTQtClient(block_until_ready=True) wwt.wait() ``` raises the following warnings/errors: ``` [11741:48899:0721/165650.545296:ERROR:context_group.cc(151)] ContextResult::kFatalFailure:...

If I try and run PyWWT with PyQt6 I run into the following issue: ``` File "/Users/tom/python/dev/lib/python3.10/site-packages/pywwt/qt.py", line 153, in __init__ self.page.setView(self.web) AttributeError: 'WWTQWebEnginePage' object has no attribute 'setView' ```...

The following example now crashes: ```python import numpy as np from astropy.table import Table from pywwt.qt import WWTQtClient N = 200_000 table = Table() table['x'] = np.random.uniform(-10, 10, N) table['y']...

I'm not 100% sure if we want to support this but to get WWT to work correctly in glue under Big Sur I had to pass ``--disable-gpu`` to QtWebEngine. As...

The following example from the docs: ```python from pywwt.qt import WWTQtClient wwt = WWTQtClient(block_until_ready=True) from astropy.table import Table OEC = 'https://worldwidetelescope.github.io/pywwt/data/open_exoplanet_catalogue.csv' table = Table.read(OEC, delimiter=',', format='ascii.basic') wwt.layers.add_table_layer(table=table, frame='Sky', lon_att='ra', lat_att='dec',...

At the moment, the name of all layers is set to 'PyWWT Layer': https://github.com/WorldWideTelescope/pywwt/blob/cee80d8bda003531da7f69ce13d14a7df676cac5/pywwt/nbextension/static/wwt_json_api.js#L253 This isn't really an issue when using PyWWT alone, but if we ever try and export...

enhancement