1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
.. doctest-skip-all
.. _astroquery.heasarc:
**************************************
HEASARC Queries (`astroquery.heasarc`)
**************************************
Getting started
===============
This is a python interface for querying the
`HEASARC <http://heasarc.gsfc.nasa.gov/>`__
archive web service.
The capabilities are currently very limited ... feature requests and contributions welcome!
Getting lists of available datasets
-----------------------------------
.. code-block:: python
>>> from astroquery.heasarc import Heasarc
>>> heasarc = Heasarc()
>>> mission = 'rospublic'
>>> object_name = '3c273'
>>> table = heasarc.query_object(object_name, mission=mission)
>>> table[:3].pprint()
Downloading identified datasets
-------------------------------
Not implemented yet.
Reference/API
=============
.. automodapi:: astroquery.heasarc
:no-inheritance-diagram:
|