pywwt-old-branches/README.rst

125 строки
3.4 KiB
ReStructuredText
Исходник Обычный вид История

2017-11-30 12:51:28 +03:00
.. image:: https://travis-ci.org/WorldWideTelescope/pywwt.svg?branch=tests
:target: https://travis-ci.org/WorldWideTelescope/pywwt
2017-11-17 18:42:58 +03:00
.. image:: https://ci.appveyor.com/api/projects/status/hqacnus6g197uo2d/branch/master?svg=true
2017-11-30 12:51:28 +03:00
:target: https://ci.appveyor.com/project/WorldWideTelescope/pywwt
2017-11-14 20:01:28 +03:00
WorldWideTelescope from Python/Jupyter
======================================
2017-11-13 14:59:52 +03:00
2017-11-30 13:11:36 +03:00
**IMPORTANT NOTE ABOUT THIS PACKAGE:** this package is under heavy development
and is not ready for general use. It will replace, once released, the existing
`pywwt <https://github.com/jzuhone/pywwt>`_ package. The new package will include
2017-11-30 13:11:36 +03:00
both a way to drive the web version of WWT, and the Windows version (using, for
the latter, code from the original pywwt package).
2017-11-17 18:42:58 +03:00
2017-11-30 13:11:36 +03:00
About
-----
The pywwt package aims to make it easy to use WorldWideTelescope from Python,
including from the Jupyter notebook. Only a very small subset of functionality
is implemented for now, and we will be adding functionality over the coming
weeks.
2017-11-17 17:11:00 +03:00
Installation
------------
2017-11-17 17:14:07 +03:00
conda
^^^^^
2017-11-17 17:11:00 +03:00
If you normally use conda and
just want to try out the latest developer version, you can do this with::
2017-11-30 12:51:28 +03:00
conda install -c conda-forge -c astrofrog/label/dev pywwt
2017-11-17 17:11:00 +03:00
This will install a version built in the last 24 hours so may not strictly be
the absolute latest version.
2017-11-17 17:14:07 +03:00
pip
^^^
2017-11-17 17:11:00 +03:00
If you don't use conda and/or want to use the very latest version, you can clone
this repository and install the package manually (note that this requires
`npm <https://www.npmjs.com>`_ to be installed)::
2017-11-30 12:51:28 +03:00
git clone https://github.com/WorldWideTelescope/pywwt.git
cd pywwt
2017-11-17 17:11:00 +03:00
pip install -e .
If you want to use the Jupyter widget, you will also need to run::
2017-11-30 13:11:36 +03:00
jupyter nbextension install --py --symlink --sys-prefix pywwt
jupyter nbextension enable --py --sys-prefix pywwt
2017-11-17 17:11:00 +03:00
(this is not needed if you install the conda package).
2017-11-17 18:39:04 +03:00
Creating a widget
-----------------
2017-11-17 18:39:04 +03:00
Jupyter widget
^^^^^^^^^^^^^^
The Jupyter widget can be used as follows in the Jupyter notebook:
.. code-block:: python
2017-11-17 18:39:04 +03:00
2017-11-30 12:51:28 +03:00
In [1]: from pywwt.jupyter_widget import WWTJupyterWidget
2017-11-17 18:39:04 +03:00
In [2]: wwt = WWTJupyterWidget()
...: wwt
This will then look like:
.. image:: jupyter.png
Qt widget
^^^^^^^^^
To use the Qt widget, start up an IPython session and do:
.. code-block:: python
2017-11-30 12:51:28 +03:00
In [1]: from pywwt.qt_widget import WWTQtWidget
In [2]: %gui qt
In [3]: wwt = WWTQtWidget()
(note that the order is important - for now ``WWTQtWidget`` has to be imported before ``%gui qt`` is run).
Using the widgets
-----------------
Once a Jupyter or Qt widget has been created, the programmatic user interface is the same. The widget objects should include properties that can be changed, e.g:
.. code-block:: python
In [4]: wwt.constellation_figures = True
2017-11-30 12:51:28 +03:00
and methods that can be called:
.. code-block:: python
In [4]: from astropy.coordinates import SkyCoord
In [5]: from astropy import units as u
In [6]: coord = SkyCoord.from_name('M42')
In [7]: widget.center_on_coordinates(coord, fov=10 * u.deg)
2017-11-30 13:11:36 +03:00
We are in the process of writing documentation that includes a full list of
available properties and methods that can be used.
2017-11-17 18:39:04 +03:00
Reporting issues
----------------
If you run into any issues, please open an issue `here
2017-11-30 12:51:28 +03:00
<https://github.com/WorldWideTelescope/pywwt/issues>`_
2017-11-17 18:46:18 +03:00
Acknowledgments
---------------
This work is funded through the American Astronomical Society WorldWideTelescope
project.