Skip to content

Latest commit

 

History

History
112 lines (83 loc) · 4.56 KB

README.rst

File metadata and controls

112 lines (83 loc) · 4.56 KB

Documentation | View on Github | Download Stable ZIP | Download Stable TAR

Accessing Online Astronomical Data

Astroquery is an astropy affiliated package that contains a collection of tools to access online Astronomical data. Each web service has its own sub-package. For example, to interface with the SIMBAD website, use the simbad sub-package:

>>> from astroquery.simbad import Simbad
>>> theta1c = Simbad.query_object('tet01 Ori C')
>>> theta1c.pprint()
   MAIN_ID          RA           DEC      ... COO_QUAL COO_WAVELENGTH     COO_BIBCODE
------------- ------------- ------------- ... -------- -------------- -------------------
* tet01 Ori C 05 35 16.4637 -05 23 22.848 ...        A              O 2007A&A...474..653V

Installation and Requirements

As an astropy affiliate, astroquery requires astropy. However, because astroquery relies heavily upon the astropy.coordinates module, the development version of astropy is required. astropy can be installed from pip:

$ pip install git+http://github.com/astropy/astropy.git#egg=astropy

astroquery uses the requests module to communicate with the internet. requests can also be installed with pip.

The first beta release of astroquery can be downloaded or pip installed:

$ pip install https://github.com/astropy/astroquery/archive/v0.1.tar.gz

If you'd like the latest development version, you can install it with the following commands:

$ git clone git@github.com:astropy/astroquery.git
$ cd astroquery
$ python setup.py install

pip install also works:

$ pip install git+http://github.com/astropy/astroquery.git#egg=astroquery

Using astroquery

Importing astroquery on its own doesn't get you much: you need to import each sub-module specifically. Check out the docs to find a list of the tools available. The API shows the standard suite of tools common to most modules, e.g. query_object and query_region.

To report bugs and request features, please use the issue tracker. Code contributions are very welcome, though we encourage you to follow the API and contributing guidelines as much as possible.

List of Modules

Additional Links

Download Development ZIP | Download Development TAR

Maintained by Adam Ginsburg (adam.g.ginsburg@gmail.com)