https://github.com/adrn/astroquery

Functions and classes to access online data resources. Maintainer: @keflavich

https://github.com/adrn/astroquery

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 3 DOI reference(s) in README
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.6%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Functions and classes to access online data resources. Maintainer: @keflavich

Basic Info
Statistics
  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Fork of astropy/astroquery
Created about 12 years ago · Last pushed over 3 years ago
Metadata Files
Readme Changelog Contributing License

README.rst

`Documentation`_ | Blog_ |  `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:

.. code-block:: python

    >>> 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:

.. code-block:: bash

    $ 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:

.. code-block:: bash

   $ pip install astroquery 
   

Or if pypi is down:   
   
.. code-block:: bash
   
   $ 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:

.. code-block:: bash

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

pip install also works:

.. code-block:: bash

    $ 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
---------------

  * `Simbad `_:           Basic data, cross-identifications, bibliography and measurements for astronomical objects outside the solar system.
  * `Vizier `_:           Set of 11,000+ published, multiwavelength catalogues hosted by the CDS.
  * `IRSA dust `_:     Galactic dust reddening and extinction maps from IRAS 100 um data.
  * `NED `_:                 NASA/IPAC Extragalactic Database. Multiwavelength data from both surveys and publications.
  * `IRSA `_:               NASA/IPAC Infrared Science Archive. Science products for all of NASA's infrared and sub-mm missions.
  * `UKIDSS `_:           UKIRT Infrared Deep Sky Survey. JHK images of 7500 sq deg. in the northern sky.
  * `MAGPIS `_:           Multi-Array Galactic Plane Imaging Survey. 6 and 20-cm radio images of the Galactic plane from the VLA.
  * `NRAO `_:               Science data archive of the National Radio Astronomy Observatory. VLA, JVLA, VLBA and GBT data products.
  * `Besancon `_:       Model of stellar population synthesis in the Galaxy.
  * `NIST `_:               National Institute of Standards and Technology (NIST) atomic lines database.
  * `Fermi `_:             Fermi gamma-ray telescope archive.
  * `SDSS `_:               Sloan Digital Sky Survey data, including optical images, spectra, and spectral templates.
  * `Alfalfa `_:         Arecibo Legacy Fast ALFA survey; extragalactic HI radio data.
  * `SHA `_:                 Spitzer Heritage Archive; infrared data products from the Spitzer Space Telescope
  * `Lamda `_:             Leiden Atomic and Molecular Database; energy levels, radiative transitions, and collisional rates for astrophysically relevant atoms and molecules.
  * `Ogle `_:               Optical Gravitational Lensing Experiment III; information on interstellar extinction towards the Galactic bulge.
  * `Splatalogue `_: National Radio Astronomy Observatory (NRAO)-maintained (mostly) molecular radio and millimeter line list service.

Additional Links
----------------

`Download Development ZIP`_  |  `Download Development TAR`_  

Maintained by `Adam Ginsburg`_ (`astropy.astroquery@gmail.com`_)

To cite, use our `figshare`_ DOI (http://dx.doi.org/10.6084/m9.figshare.805208).

.. image:: https://d2weczhvl823v0.cloudfront.net/keflavich/astroquery/trend.png
   :alt: Bitdeli badge
   :target: https://bitdeli.com/free


.. _Download Development ZIP: https://github.com/astropy/astroquery/zipball/master
.. _Download Development TAR: https://github.com/astropy/astroquery/tarball/master
.. _Download Stable ZIP: https://github.com/astropy/astroquery/zipball/stable
.. _Download Stable TAR: https://github.com/astropy/astroquery/tarball/stable
.. _View on Github: https://github.com/astropy/astroquery/
.. _docs: http://astroquery.readthedocs.org
.. _Documentation: http://astroquery.readthedocs.org
.. _first beta release: https://github.com/astropy/astroquery/tarball/v0.1
.. _astropy.astroquery@gmail.com: mailto:astropy.astroquery@gmail.com
.. _Adam Ginsburg: http://www.adamgginsburg.com
.. _Blog: http://astropy.org/astroquery-blog
.. _API: http://astroquery.readthedocs.org/en/latest/api.html
.. _figshare: http://figshare.com/articles/Astroquery_v0_1/805208

Owner

  • Name: Adrian Price-Whelan
  • Login: adrn
  • Kind: user
  • Location: NYC
  • Company: Flatiron Institute

GitHub Events

Total
Last Year