Metadata-Version: 2.1
Name: hscquery
Version: 0.2
Summary: Module for accessing the HSC-SSP database
Home-page: https://github.com/ruizca/hscquery
Author: Angel Ruiz
Author-email: angel.ruizca@gmail.com
License: UNKNOWN
Description: hscquery
        ========
        .. inclusion-marker-main-readme
        
        ``hscquery`` is a Python 2/3 module for querying the 
        *Hyper Suprime-Cam Subaru Strategic Program* database. `HSC-SSP`_
        
        Based on the python script developed by michitaro, NAOJ / HSC
        Collaboration. `Source`_
        
        Dependencies
        ------------
        
        ``hscquery`` depends on ``astropy`` and ``future`` packages.
        
        Installation
        ------------
        
        ``hscquery`` can be easily installed using ``pip``::
        
            pip install hscquery
        
        Example
        -------
        A simple example of using ``hscquery``::
        
            from hscquery import HSC
            from astropy import units as u
            from astropy.coordinates import SkyCoord
            
            coords = SkyCoord(34.0, -5.0, unit='deg')
            radius = 5.0 * u.arcsec
            
            h = HSC(survey='wide')
            data = h.query_region(coords, radius)
            print data
        
        |astropy|
        
        .. _HSC-SSP: https://hsc.mtk.nao.ac.jp/ssp/
        .. _Source: https://hsc-gitlab.mtk.nao.ac.jp/snippets/17
        
        .. |astropy| image:: http://img.shields.io/badge/powered%20by-AstroPy-orange.svg?style=flat
           :target: http://www.astropy.org/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Database :: Front-Ends
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/x-rst
