Metadata-Version: 2.1
Name: fitsmap
Version: 0.0.3
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
Keywords: models tools
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: astropy
Requires-Dist: imageio
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: pillow
Requires-Dist: scikit-image
Requires-Dist: sharedmem
Requires-Dist: tqdm

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/")




