Metadata-Version: 1.1
Name: fitsmap
Version: 0.0.4
Summary: Turn fits files/catalogs into a leafletjs map
Home-page: https://github.com/ryanhausen/fitsmap
Author: Ryan Hausen
Author-email: ryan.hausen@gmail.com
License: MIT
Description: FitsMap
        =======
        
        FitsMap is a tool for displaying astronomical images and their associated
        catalogs, powered by `LeafletJS <https://leafletjs.com>`_.
        
        Installation
        ------------
        
        Requirements:
        
        - `astropy`
        - `imageio`
        - `numpy`
        - `matplotlib`
        - `pillow`
        - `scikit-image`
        - `sharedmem`
        - `tqdm`
        
        Use ``pip`` to install
        
        .. code-block:: bash
        
            pip install fitsmap
        
        Usuage
        ------
        
        Import the ``mapmaker`` module
        
        .. code-block:: python
        
            from fitsmap import mapmaker
        
        
        Pass a list of files to ``files_to_map``:
        
        .. code-block:: python
        
            some_files = ...
        
            mapmaker.files_to_map(some_files)
        
        OR, pass a directory to ``dir_to_map``:
        
        .. code-block:: python
        
            mammaker.dir_to_map("path/to/files/")
        
        
        
Keywords: models tools
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
