fitsmap


Namefitsmap JSON
Version 0.10.5 PyPI version JSON
download
home_pagehttps://github.com/ryanhausen/fitsmap
SummaryTurn fits files/catalogs into a leafletjs map
upload_time2023-04-10 19:20:57
maintainer
docs_urlNone
authorRyan Hausen
requires_python
licenseMIT
keywords tools fits leaflet
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            .. Variables to ensure the hyperlink gets used
.. |convert| replace:: `fitsmap.convert <https://fitsmap.readthedocs.io/en/latest/source/fitsmap.html#module-fitsmap.convert>`__
.. |files_to_map| replace:: `fitsmap.convert.files_to_map <https://fitsmap.readthedocs.io/en/latest/source/fitsmap.html#fitsmap.convert.files_to_map>`__
.. |dir_to_map| replace:: `fitsmap.convert.dir_to_map <https://fitsmap.readthedocs.io/en/latest/source/fitsmap.html#fitsmap.convert.dir_to_map>`__

.. image:: docs/logo.svg.png
    :alt: FitsMap
    :align: center

FitsMap
=======

.. image:: https://github.com/ryanhausen/fitsmap/actions/workflows/build-linux.yml/badge.svg
    :target: https://github.com/ryanhausen/fitsmap/actions/workflows/build-linux.yml

.. image:: https://github.com/ryanhausen/fitsmap/actions/workflows/build-osx.yml/badge.svg
    :target: https://github.com/ryanhausen/fitsmap/actions/workflows/build-osx.yml

.. image:: https://github.com/ryanhausen/fitsmap/actions/workflows/build-windows.yml/badge.svg
    :target: https://github.com/ryanhausen/fitsmap/actions/workflows/build-windows.yml

.. image:: https://readthedocs.org/projects/fitsmap/badge/?version=latest
    :target: https://fitsmap.readthedocs.io

.. image:: https://codecov.io/gh/ryanhausen/fitsmap/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/ryanhausen/fitsmap/

.. image:: https://img.shields.io/badge/python-3.7-blue.svg
    :target: https://www.python.org/downloads/release/python-370/

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/ambv/black

.. image:: https://badgen.net/badge/doi/10.1016%2Fj.ascom.2022.100586/yellow
    :target: https://doi.org/10.1016/j.ascom.2022.100586


FitsMap is a tool developed in the `Computational Astrophysics Research Group
<https://robertson.sites.ucsc.edu/research/>`_ at UC Santa Cruz for displaying
astronomical images and their associated catalogs, powered by `LeafletJS
<https://leafletjs.com>`_.

Survey images can have dimensions in the tens of thousands of pixels in multiple
bands. Examining images of this size can be difficult, especially in multiple
bands. Memory constraints and highly specialized tools like DS9 can make simple
high-level analysis infeasible or cumbersome. FitsMap addresses these two issues
by converting large fits files and images into tiles that can be presented using
`LeafletJS <https://leafletjs.com>`_. Another issue in examining survey images
is examining a catalog of sources in the context of the images. FitsMap
addresses this by converting a catalog of sources into JSON map markers, which
can be viewed in the webpage. Additionally, these sources are searchable using
the web interface by the column ``id``.

Some sample websites that leverage FitsMap are:

- `DREaM Galaxy Catalogs <https://purl.org/fitsmap/dream>`_ `(Drakos, et al., 2022) <https://iopscience.iop.org/article/10.3847/1538-4357/ac46fb>`_
- `Morpheus <https://purl.org/fitsmap/morpheus>`_ `(Hausen & Robertson 2020) <https://iopscience.iop.org/article/10.3847/1538-4365/ab8868>`_

Additional examples are welcome! If you'd like to add your use case here, submit
an issue with the title "Use Case Example", and in the description, include the
URL to the FitsMap along with a title and also a link to an associated paper if
you'd like.


Here is an example using FitsMap to render a 32,727² image and ~33 million
sources from the `DReAM Galaxy Catalog <https://arxiv.org/abs/2110.10703>`_:

.. image:: docs/dream_map.gif
    :alt: FitsMap
    :align: center

Installation
************

Requirements:

- ``astropy``
- ``cbor2``
- ``click``
- ``mapbox_vector_tile``
- ``matplotlib``
- ``numpy``
- ``pillow``
- ``scikit-image``
- ``ray``
- ``tqdm``

Use ``pip`` to install

.. code-block:: bash

    pip install fitsmap

Usage
*****

FitsMap is designed to address the following example. A user has multiple FITS
files or PNG files that represent multiple bands of the same area of the sky,
along with a catalog of sources within that area. For example, the directory
might look like:

.. code-block::

  - path/to/data/
    - F125W.fits
    - F160W.fits
    - RGB.png
    - catalog.cat

There are two FITS files (``F125W.fits``, ``F160W.fits``), a PNG file
(``RGB.png``), and catalog (``catalog.cat``) containing sources visible in the
image files. To render these files using FitsMap you can use
|dir_to_map| or |files_to_map|.

After the FitsMap has been generated you can view it in your web browser by
navigating to the directory containing the map (``index.html``) and running the
following command in the terminal:

.. code-block:: bash

    fitsmap serve

This will start up a webserver and open your browser to the page containing the
map. When your done with the map you can close your browser window and kill the
process running in the terminal.


``dir_to_map``
--------------

To convert this directory into a FitsMap using |dir_to_map|:

.. code-block:: python

    from fitsmap import convert

    convert.dir_to_map.(
        "path/to/data",
        out_dir="path/to/data/map",
        cat_wcs_fits_file="path/to/data/F125W.fits",
        norm_kwargs=dict(stretch="log", max_percent=99.5),
    )

The first argument is which directory contains the files that we would like to
convert into a map. In our case, this is ``path/to/dir``.  The next argument is
the ``out_dir`` keyword argument that tells FitsMap where to put the generated
webpage and supporting directories. In this example, the website will be built
in a new subdirectory called ``map`` within ``path/to/data``. The argument
``cat_wcs_fits_file`` keyword argument tells FitsMap which header to use to
parse any catalog files and convert them into map markers. The ``norm_kwargs``
argument should be a dictionary of kwargs that get passed to
`astropy.visulization.simple_norm
<https://docs.astropy.org/en/stable/api/astropy.visualization.mpl_normalize.simple_norm.html>`_
which is used to scale the FITS files before rendering.

Equivalently, using the FitsMap command line interface:

.. code-block::

  fitsmap dir --out_dir /path/to/data/map \
              --cat_wcs_fits_file "path/to/header_file.fits" \
              path/to/data

**Note:** The command line interface doesn't currently support ``norm_kwargs``.

Run ``fitsmap --help`` for more information


Once FitsMap is finished, the following will have been generated:

.. code-block::

  - path/to/data/map/
    - F125W/
    - F160W/
    - RGB/
    - catalog/
    - css/
    - catalog_assets/
    - imgs/
    - js/
    - index.html

The directories ``F125W``, ``F160W``, ``RGB``, ``catalog`` contain tiled
versions of the input fits files. The ``css`` directory contains some supporting
CSS files for clustering the markers and rendering pixels. The ``imgs``
directory contains supporting images. The ``js`` directory contains supporting
JavaScript for the map. ``catalog_assets`` contains JSON files for each source
in each that are rendered when the marker associated with that source is
clicked. Finally, ``index.html`` is the webpage that contains the map.

To use the map, run ``fitsmap serve`` in the same directory as ``index.html``


``files_to_map``
----------------

If you want to specify the files that get used to generate the map you can use
function |files_to_map|:

.. code-block:: python

    from fitsmap import convert

    paths_to_files = [
        ...,
    ]

    convert.files_to_map.(
        paths_to_files,
        out_dir="path/to/data/map",
        cat_wcs_fits_file="path/to/header_file.fits",
        norm_kwargs=dict(stretch="log", max_percent=99.5),
    )

This will produce a map in ``out_dir`` using the files that were passed in using
the ``paths_to_files`` variable.


File Specific ``norm_kwargs``
-----------------------------

The ``norm_kwargs`` argument to |dir_to_map| and |files_to_map| can be a
dictionary of kwargs where the keys are the filenames (not paths) and the values
are the ``simple_norm`` kwargs for that file. For example:

.. code-block:: python

    from fitsmap import convert

    paths_to_files = [
        "fits_images/F125W.fits",
        "fits_images/F160W.fits",
    ]

    convert.files_to_map.(
        paths_to_files,
        out_dir="path/to/data/map",
        cat_wcs_fits_file="path/to/header_file.fits",
        norm_kwargs={
            "F125W.fits":dict(stretch="log", max_percent=99.5),
            "F160W.fits":dict(stretch="log", max_percent=99.9, min_percent=0.1),
        }
    )


Saveable Views
**************

FitsMap stores the current view (location/zoom) in the url. You can then
share the view with others by sharing the url.


Search
**************

You can search the catalogs by the ``id`` column from the catalog and FitsMap
will locate and pan to the source in the map.


Parallelization
**********************************

FitsMap supports the parallelization(via `ray <ray.io>`_) of map creation in two
ways:

- splitting images/catalogs into parallel tasks
- parallel tiling of an image
- parallel reading/tiling of a catalog

The settings for parallelization are set using the following keyword arguments:

- ``procs_per_task``: Sets how many layers/catalogs to convert in parallel at a
  time.
- ``task_procs``: How many processes can work on a single task.

You can use both keyword arguments at the same time, but keep in mind the number
of CPUs available. For example, if ``procs_per_task=2`` and ``task_procs=2``
then that will generate 6 new processes, 2 new processes for each task, and each
of those will generate 2 new processes to tile an image in parallel.

Parallelization can offer a significant speed up, so if there are cores available
it makes sense to use them.

**NOTE: ray's support for Windows is currently in beta, so you may experience
some bugs running in parallel on Windows machines. Feel free to submit an issue
if you run into any problems.**

Notes
*****

Notes on Image Conversion
-------------------------

FITS images are rendered into PNG map tiles using Matplotlib colormaps. The
default colormap used when rendering tiles is "gray". This can be changed by
setting the value of ``convert.MPL_CMAP`` to any valid `Matplotlib colormap
<https://matplotlib.org/3.1.0/tutorials/colors/colormaps.html>`_.

To ensure that pixels are rendered correctly and that map markers are placed
correctly, any image that is not square is squared by padding the array with NaN
values that are converted into transparent pixels in the PNG. As a consequence,
if a FITS file contains NaNs when it is converted, those pixels will be
converted into transparent pixels.

Notes on Catalog Conversion
---------------------------

Catalogs should be delimited text files with the first line containing the
column names, and the following lines containing values. Catalogs need to have
an ``id`` column with a unique value for each row. It also needs to have
coordinates for each source, which can be one of the following pairs of columns
(``ra`` / ``dec``) or (``x`` / ``y``). **Note fitsmap assumes that the origin of
the image starts at (1,1), but this can be changed to (0,0) by setting the
kwarg** ``catalog_starts_at_one=False``.

Some catalogs have many columns for each row, which will create very tall
pop-ups when the markers are clicked. To avoid this, you can pass an integer
value using ``rows_per_column`` to either |dir_to_map| or |files_to_map|. This
will break the information into ``rows_per_column`` sized columns.

Catalog pop-ups are rendered as a simple HTML table, so you can put any HTML
friendly things, for example <img> tags, in the catalog and they should be
rendered appropriately.

FitsMap will render your markers as Ellipses if you have the following columns
in your catalog: ``a``, ``b``, and ``theta``. Where ``a`` is the major axis
radius in **pixels**, ``b`` is the minor axis radius in **pixels**, and theta
is the rotation of the ellipse in units of degrees starting from the negative
x-axis and moving counter-clockwise.

.. image:: docs/ellipse_fig.png
    :alt: EllipseOrientaton
    :align: center

----

If you use FitsMap in your research please cite it using the following (also in
`CITE.bib <https://github.com/ryanhausen/fitsmap/blob/master/CITE.bib>`_):

.. code-block::

    @article{hausen2022a,
         title = {FitsMap: A simple, lightweight tool for displaying interactive astronomical image and catalog data},
       journal = {Astronomy and Computing},
        volume = {39},
         pages = {100586},
          year = {2022},
          issn = {2213-1337},
           doi = {https://doi.org/10.1016/j.ascom.2022.100586},
           url = {https://www.sciencedirect.com/science/article/pii/S2213133722000257},
        author = {R. Hausen and B.E. Robertson},
      keywords = {Astronomy web services (1856), Astronomy data visualization (1968), Astronomy data analysis (1858), Human-centered computing Scientific visualization (10003120.10003145.10003147.10010364), Human-centered computing Visualization toolkits (10003120.10003145.10003151.10011771)},
      abstract = {The visual inspection of image and catalog data continues to be a valuable aspect of astronomical data analysis. As the scale of astronomical image and catalog data continues to grow, visualizing the data becomes increasingly difficult. In this work, we introduce FitsMap, a simple, lightweight tool for visualizing astronomical image and catalog data. FitsMap uses well-understood image tiling techniques and a novel catalog tiling technique to serve gigapixel images with catalogs containing tens of millions of sources using only a simple web server. Further, the web-based visualizations can be viewed performantly on mobile devices. FitsMap is implemented in Python and is open source (https://github.com/ryanhausen/fitsmap).}
    }



For more information see the `docs <https://fitsmap.readthedocs.io>`__
or the `code <https://github.com/ryanhausen/fitsmap>`__.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ryanhausen/fitsmap",
    "name": "fitsmap",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "tools fits leaflet",
    "author": "Ryan Hausen",
    "author_email": "rhausen@ucsc.edu",
    "download_url": "https://files.pythonhosted.org/packages/7d/37/4484feb80e07affc2d7ec71f82f739af270f30b31b6dc51bcba67c0d7143/fitsmap-0.10.5.tar.gz",
    "platform": null,
    "description": ".. Variables to ensure the hyperlink gets used\n.. |convert| replace:: `fitsmap.convert <https://fitsmap.readthedocs.io/en/latest/source/fitsmap.html#module-fitsmap.convert>`__\n.. |files_to_map| replace:: `fitsmap.convert.files_to_map <https://fitsmap.readthedocs.io/en/latest/source/fitsmap.html#fitsmap.convert.files_to_map>`__\n.. |dir_to_map| replace:: `fitsmap.convert.dir_to_map <https://fitsmap.readthedocs.io/en/latest/source/fitsmap.html#fitsmap.convert.dir_to_map>`__\n\n.. image:: docs/logo.svg.png\n    :alt: FitsMap\n    :align: center\n\nFitsMap\n=======\n\n.. image:: https://github.com/ryanhausen/fitsmap/actions/workflows/build-linux.yml/badge.svg\n    :target: https://github.com/ryanhausen/fitsmap/actions/workflows/build-linux.yml\n\n.. image:: https://github.com/ryanhausen/fitsmap/actions/workflows/build-osx.yml/badge.svg\n    :target: https://github.com/ryanhausen/fitsmap/actions/workflows/build-osx.yml\n\n.. image:: https://github.com/ryanhausen/fitsmap/actions/workflows/build-windows.yml/badge.svg\n    :target: https://github.com/ryanhausen/fitsmap/actions/workflows/build-windows.yml\n\n.. image:: https://readthedocs.org/projects/fitsmap/badge/?version=latest\n    :target: https://fitsmap.readthedocs.io\n\n.. image:: https://codecov.io/gh/ryanhausen/fitsmap/branch/master/graph/badge.svg\n    :target: https://codecov.io/gh/ryanhausen/fitsmap/\n\n.. image:: https://img.shields.io/badge/python-3.7-blue.svg\n    :target: https://www.python.org/downloads/release/python-370/\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/ambv/black\n\n.. image:: https://badgen.net/badge/doi/10.1016%2Fj.ascom.2022.100586/yellow\n    :target: https://doi.org/10.1016/j.ascom.2022.100586\n\n\nFitsMap is a tool developed in the `Computational Astrophysics Research Group\n<https://robertson.sites.ucsc.edu/research/>`_ at UC Santa Cruz for displaying\nastronomical images and their associated catalogs, powered by `LeafletJS\n<https://leafletjs.com>`_.\n\nSurvey images can have dimensions in the tens of thousands of pixels in multiple\nbands. Examining images of this size can be difficult, especially in multiple\nbands. Memory constraints and highly specialized tools like DS9 can make simple\nhigh-level analysis infeasible or cumbersome. FitsMap addresses these two issues\nby converting large fits files and images into tiles that can be presented using\n`LeafletJS <https://leafletjs.com>`_. Another issue in examining survey images\nis examining a catalog of sources in the context of the images. FitsMap\naddresses this by converting a catalog of sources into JSON map markers, which\ncan be viewed in the webpage. Additionally, these sources are searchable using\nthe web interface by the column ``id``.\n\nSome sample websites that leverage FitsMap are:\n\n- `DREaM Galaxy Catalogs <https://purl.org/fitsmap/dream>`_ `(Drakos, et al., 2022) <https://iopscience.iop.org/article/10.3847/1538-4357/ac46fb>`_\n- `Morpheus <https://purl.org/fitsmap/morpheus>`_ `(Hausen & Robertson 2020) <https://iopscience.iop.org/article/10.3847/1538-4365/ab8868>`_\n\nAdditional examples are welcome! If you'd like to add your use case here, submit\nan issue with the title \"Use Case Example\", and in the description, include the\nURL to the FitsMap along with a title and also a link to an associated paper if\nyou'd like.\n\n\nHere is an example using FitsMap to render a 32,727\u00b2 image and ~33 million\nsources from the `DReAM Galaxy Catalog <https://arxiv.org/abs/2110.10703>`_:\n\n.. image:: docs/dream_map.gif\n    :alt: FitsMap\n    :align: center\n\nInstallation\n************\n\nRequirements:\n\n- ``astropy``\n- ``cbor2``\n- ``click``\n- ``mapbox_vector_tile``\n- ``matplotlib``\n- ``numpy``\n- ``pillow``\n- ``scikit-image``\n- ``ray``\n- ``tqdm``\n\nUse ``pip`` to install\n\n.. code-block:: bash\n\n    pip install fitsmap\n\nUsage\n*****\n\nFitsMap is designed to address the following example. A user has multiple FITS\nfiles or PNG files that represent multiple bands of the same area of the sky,\nalong with a catalog of sources within that area. For example, the directory\nmight look like:\n\n.. code-block::\n\n  - path/to/data/\n    - F125W.fits\n    - F160W.fits\n    - RGB.png\n    - catalog.cat\n\nThere are two FITS files (``F125W.fits``, ``F160W.fits``), a PNG file\n(``RGB.png``), and catalog (``catalog.cat``) containing sources visible in the\nimage files. To render these files using FitsMap you can use\n|dir_to_map| or |files_to_map|.\n\nAfter the FitsMap has been generated you can view it in your web browser by\nnavigating to the directory containing the map (``index.html``) and running the\nfollowing command in the terminal:\n\n.. code-block:: bash\n\n    fitsmap serve\n\nThis will start up a webserver and open your browser to the page containing the\nmap. When your done with the map you can close your browser window and kill the\nprocess running in the terminal.\n\n\n``dir_to_map``\n--------------\n\nTo convert this directory into a FitsMap using |dir_to_map|:\n\n.. code-block:: python\n\n    from fitsmap import convert\n\n    convert.dir_to_map.(\n        \"path/to/data\",\n        out_dir=\"path/to/data/map\",\n        cat_wcs_fits_file=\"path/to/data/F125W.fits\",\n        norm_kwargs=dict(stretch=\"log\", max_percent=99.5),\n    )\n\nThe first argument is which directory contains the files that we would like to\nconvert into a map. In our case, this is ``path/to/dir``.  The next argument is\nthe ``out_dir`` keyword argument that tells FitsMap where to put the generated\nwebpage and supporting directories. In this example, the website will be built\nin a new subdirectory called ``map`` within ``path/to/data``. The argument\n``cat_wcs_fits_file`` keyword argument tells FitsMap which header to use to\nparse any catalog files and convert them into map markers. The ``norm_kwargs``\nargument should be a dictionary of kwargs that get passed to\n`astropy.visulization.simple_norm\n<https://docs.astropy.org/en/stable/api/astropy.visualization.mpl_normalize.simple_norm.html>`_\nwhich is used to scale the FITS files before rendering.\n\nEquivalently, using the FitsMap command line interface:\n\n.. code-block::\n\n  fitsmap dir --out_dir /path/to/data/map \\\n              --cat_wcs_fits_file \"path/to/header_file.fits\" \\\n              path/to/data\n\n**Note:** The command line interface doesn't currently support ``norm_kwargs``.\n\nRun ``fitsmap --help`` for more information\n\n\nOnce FitsMap is finished, the following will have been generated:\n\n.. code-block::\n\n  - path/to/data/map/\n    - F125W/\n    - F160W/\n    - RGB/\n    - catalog/\n    - css/\n    - catalog_assets/\n    - imgs/\n    - js/\n    - index.html\n\nThe directories ``F125W``, ``F160W``, ``RGB``, ``catalog`` contain tiled\nversions of the input fits files. The ``css`` directory contains some supporting\nCSS files for clustering the markers and rendering pixels. The ``imgs``\ndirectory contains supporting images. The ``js`` directory contains supporting\nJavaScript for the map. ``catalog_assets`` contains JSON files for each source\nin each that are rendered when the marker associated with that source is\nclicked. Finally, ``index.html`` is the webpage that contains the map.\n\nTo use the map, run ``fitsmap serve`` in the same directory as ``index.html``\n\n\n``files_to_map``\n----------------\n\nIf you want to specify the files that get used to generate the map you can use\nfunction |files_to_map|:\n\n.. code-block:: python\n\n    from fitsmap import convert\n\n    paths_to_files = [\n        ...,\n    ]\n\n    convert.files_to_map.(\n        paths_to_files,\n        out_dir=\"path/to/data/map\",\n        cat_wcs_fits_file=\"path/to/header_file.fits\",\n        norm_kwargs=dict(stretch=\"log\", max_percent=99.5),\n    )\n\nThis will produce a map in ``out_dir`` using the files that were passed in using\nthe ``paths_to_files`` variable.\n\n\nFile Specific ``norm_kwargs``\n-----------------------------\n\nThe ``norm_kwargs`` argument to |dir_to_map| and |files_to_map| can be a\ndictionary of kwargs where the keys are the filenames (not paths) and the values\nare the ``simple_norm`` kwargs for that file. For example:\n\n.. code-block:: python\n\n    from fitsmap import convert\n\n    paths_to_files = [\n        \"fits_images/F125W.fits\",\n        \"fits_images/F160W.fits\",\n    ]\n\n    convert.files_to_map.(\n        paths_to_files,\n        out_dir=\"path/to/data/map\",\n        cat_wcs_fits_file=\"path/to/header_file.fits\",\n        norm_kwargs={\n            \"F125W.fits\":dict(stretch=\"log\", max_percent=99.5),\n            \"F160W.fits\":dict(stretch=\"log\", max_percent=99.9, min_percent=0.1),\n        }\n    )\n\n\nSaveable Views\n**************\n\nFitsMap stores the current view (location/zoom) in the url. You can then\nshare the view with others by sharing the url.\n\n\nSearch\n**************\n\nYou can search the catalogs by the ``id`` column from the catalog and FitsMap\nwill locate and pan to the source in the map.\n\n\nParallelization\n**********************************\n\nFitsMap supports the parallelization(via `ray <ray.io>`_) of map creation in two\nways:\n\n- splitting images/catalogs into parallel tasks\n- parallel tiling of an image\n- parallel reading/tiling of a catalog\n\nThe settings for parallelization are set using the following keyword arguments:\n\n- ``procs_per_task``: Sets how many layers/catalogs to convert in parallel at a\n  time.\n- ``task_procs``: How many processes can work on a single task.\n\nYou can use both keyword arguments at the same time, but keep in mind the number\nof CPUs available. For example, if ``procs_per_task=2`` and ``task_procs=2``\nthen that will generate 6 new processes, 2 new processes for each task, and each\nof those will generate 2 new processes to tile an image in parallel.\n\nParallelization can offer a significant speed up, so if there are cores available\nit makes sense to use them.\n\n**NOTE: ray's support for Windows is currently in beta, so you may experience\nsome bugs running in parallel on Windows machines. Feel free to submit an issue\nif you run into any problems.**\n\nNotes\n*****\n\nNotes on Image Conversion\n-------------------------\n\nFITS images are rendered into PNG map tiles using Matplotlib colormaps. The\ndefault colormap used when rendering tiles is \"gray\". This can be changed by\nsetting the value of ``convert.MPL_CMAP`` to any valid `Matplotlib colormap\n<https://matplotlib.org/3.1.0/tutorials/colors/colormaps.html>`_.\n\nTo ensure that pixels are rendered correctly and that map markers are placed\ncorrectly, any image that is not square is squared by padding the array with NaN\nvalues that are converted into transparent pixels in the PNG. As a consequence,\nif a FITS file contains NaNs when it is converted, those pixels will be\nconverted into transparent pixels.\n\nNotes on Catalog Conversion\n---------------------------\n\nCatalogs should be delimited text files with the first line containing the\ncolumn names, and the following lines containing values. Catalogs need to have\nan ``id`` column with a unique value for each row. It also needs to have\ncoordinates for each source, which can be one of the following pairs of columns\n(``ra`` / ``dec``) or (``x`` / ``y``). **Note fitsmap assumes that the origin of\nthe image starts at (1,1), but this can be changed to (0,0) by setting the\nkwarg** ``catalog_starts_at_one=False``.\n\nSome catalogs have many columns for each row, which will create very tall\npop-ups when the markers are clicked. To avoid this, you can pass an integer\nvalue using ``rows_per_column`` to either |dir_to_map| or |files_to_map|. This\nwill break the information into ``rows_per_column`` sized columns.\n\nCatalog pop-ups are rendered as a simple HTML table, so you can put any HTML\nfriendly things, for example <img> tags, in the catalog and they should be\nrendered appropriately.\n\nFitsMap will render your markers as Ellipses if you have the following columns\nin your catalog: ``a``, ``b``, and ``theta``. Where ``a`` is the major axis\nradius in **pixels**, ``b`` is the minor axis radius in **pixels**, and theta\nis the rotation of the ellipse in units of degrees starting from the negative\nx-axis and moving counter-clockwise.\n\n.. image:: docs/ellipse_fig.png\n    :alt: EllipseOrientaton\n    :align: center\n\n----\n\nIf you use FitsMap in your research please cite it using the following (also in\n`CITE.bib <https://github.com/ryanhausen/fitsmap/blob/master/CITE.bib>`_):\n\n.. code-block::\n\n    @article{hausen2022a,\n         title = {FitsMap: A simple, lightweight tool for displaying interactive astronomical image and catalog data},\n       journal = {Astronomy and Computing},\n        volume = {39},\n         pages = {100586},\n          year = {2022},\n          issn = {2213-1337},\n           doi = {https://doi.org/10.1016/j.ascom.2022.100586},\n           url = {https://www.sciencedirect.com/science/article/pii/S2213133722000257},\n        author = {R. Hausen and B.E. Robertson},\n      keywords = {Astronomy web services (1856), Astronomy data visualization (1968), Astronomy data analysis (1858), Human-centered computing\u00a0Scientific visualization (10003120.10003145.10003147.10010364), Human-centered computing\u00a0Visualization toolkits (10003120.10003145.10003151.10011771)},\n      abstract = {The visual inspection of image and catalog data continues to be a valuable aspect of astronomical data analysis. As the scale of astronomical image and catalog data continues to grow, visualizing the data becomes increasingly difficult. In this work, we introduce FitsMap, a simple, lightweight tool for visualizing astronomical image and catalog data. FitsMap uses well-understood image tiling techniques and a novel catalog tiling technique to serve gigapixel images with catalogs containing tens of millions of sources using only a simple web server. Further, the web-based visualizations can be viewed performantly on mobile devices. FitsMap is implemented in Python and is open source (https://github.com/ryanhausen/fitsmap).}\n    }\n\n\n\nFor more information see the `docs <https://fitsmap.readthedocs.io>`__\nor the `code <https://github.com/ryanhausen/fitsmap>`__.\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Turn fits files/catalogs into a leafletjs map",
    "version": "0.10.5",
    "split_keywords": [
        "tools",
        "fits",
        "leaflet"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84af46e11da7a9457f0860c70cb09824eb2b7d0cc9b83dde63bddcc31a2fe15f",
                "md5": "2b3fd65f59f6d67c05890c237a1827e9",
                "sha256": "1100d572f5fab2f4e93ac83de4eec183b8d85d61513603a8fa0609b33ad81c3b"
            },
            "downloads": -1,
            "filename": "fitsmap-0.10.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2b3fd65f59f6d67c05890c237a1827e9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 65831,
            "upload_time": "2023-04-10T19:20:54",
            "upload_time_iso_8601": "2023-04-10T19:20:54.503845Z",
            "url": "https://files.pythonhosted.org/packages/84/af/46e11da7a9457f0860c70cb09824eb2b7d0cc9b83dde63bddcc31a2fe15f/fitsmap-0.10.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d374484feb80e07affc2d7ec71f82f739af270f30b31b6dc51bcba67c0d7143",
                "md5": "a3c9d8696cd43b829684503665839699",
                "sha256": "ec07180466b72d022e703677294d21f4fcc7bc10e7b47a9eaa53eafc25729dea"
            },
            "downloads": -1,
            "filename": "fitsmap-0.10.5.tar.gz",
            "has_sig": false,
            "md5_digest": "a3c9d8696cd43b829684503665839699",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 60675,
            "upload_time": "2023-04-10T19:20:57",
            "upload_time_iso_8601": "2023-04-10T19:20:57.164136Z",
            "url": "https://files.pythonhosted.org/packages/7d/37/4484feb80e07affc2d7ec71f82f739af270f30b31b6dc51bcba67c0d7143/fitsmap-0.10.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-10 19:20:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "ryanhausen",
    "github_project": "fitsmap",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "fitsmap"
}
        
Elapsed time: 0.10951s