HEASARC Queries (astroquery.heasarc
)¶
Getting started¶
This is a python interface for querying the HEASARC archive web service.
The capabilities are currently very limited … feature requests and contributions welcome!
Getting lists of available datasets¶
>>> 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¶
astroquery.heasarc Package¶
HEASARC¶
The High Energy Astrophysics Science Archive Research Center (HEASARC) is the primary archive for NASA’s (and other space agencies’) missions.
The initial version of this was coded in a sprint at the “Python in astronomy” workshop in April 2015 by Jean-Christophe Leyder, Abigail Stevens, Antonio Martin-Carrillo and Christoph Deil.
Classes¶
HeasarcClass () |
HEASARC query class. |
Conf |
Configuration parameters for astroquery.heasarc . |