Metadata-Version: 2.4
Name: skysegmentor
Version: 1.0.0
Summary: SkySegmentor: Splits a binary map into several regions using the binary space partition algorithm.
Author-email: Krishna Naidoo <krishna.naidoo.11@ucl.ac.uk>
Maintainer-email: Krishna Naidoo <krishna.naidoo.11@ucl.ac.uk>
License: MIT
Project-URL: Homepage, https://github.com/knaidoo29/SkySegmentor
Project-URL: Repository, https://github.com/knaidoo29/SkySegmentor
Project-URL: Documentation, https://skysegmentor.readthedocs.io/en/latest/
Project-URL: Bug Tracker, https://github.com/knaidoo29/SkySegmentor/issues
Project-URL: Changelog, https://github.com/knaidoo29/SkySegmentor/blob/main/CHANGELOG.md
Keywords: astronomy,partitioning,skymaps
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy<1.27,>=1.22
Requires-Dist: healpy>=1.15.0
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: ipython; extra == "dev"
Requires-Dist: jupyter; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Provides-Extra: docs
Requires-Dist: numpydoc; extra == "docs"
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: sphinx-rtd-theme; extra == "docs"
Provides-Extra: test
Requires-Dist: nose; extra == "test"
Requires-Dist: pytest>=6.0; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Dynamic: license-file

![biglogo](docs/source/_static/SkySegmentor_logo_large_github.jpg)

<p align="center">
    <a href="https://github.com/knaidoo29/SkySegmentor/actions/workflows/python-tests.yml">
    <img src="https://github.com/knaidoo29/SkySegmentor/actions/workflows/python-tests.yml/badge.svg" alt="Python Tests">
    </a>
    <a href="https://codecov.io/github/knaidoo29/SkySegmentor" > 
    <img src="https://codecov.io/github/knaidoo29/SkySegmentor/graph/badge.svg?token=C9MXIA22X2"/> 
    </a>
    <a href="https://img.shields.io/badge/Python-3.9%20|%203.10%20|%203.11%20|%203.12-blue">
    <img src="https://img.shields.io/badge/Python-3.9%20|%203.10%20|%203.11%20|%203.12-blue" alt="Python Version Support">
    </a>
    <a href="https://img.shields.io/github/v/release/knaidoo29/skysegmentor">
    <img src="https://img.shields.io/github/v/release/knaidoo29/skysegmentor" alt="Version">
    </a>
    <a href="https://pypi.org/project/skysegmentor/">
    <img src="https://img.shields.io/pypi/v/skysegmentor.svg" alt="PyPI version">
    </a>
    <a href="https://skysegmentor.readthedocs.io/en/latest/">
    <img src="https://readthedocs.org/projects/skysegmentor/badge/?version=latest" alt="Documentation Status">
    </a>
    <a href="https://github.com/knaidoo29/SkySegmentor">
    <img src="https://img.shields.io/badge/GitHub-repo-blue?logo=github" alt="GitHub repository">
    </a>
    <a href="https://opensource.org/licenses/MIT">
    <img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT">
    </a>
    <a href="https://github.com/psf/black">
    <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black">
    </a>
</p>

<!-- <a href="https://img.shields.io/github/stars/knaidoo29/skysegmentor">
<img src="https://img.shields.io/github/stars/knaidoo29/skysegmentor" alt="github: stars">
</a>
<a href="https://img.shields.io/github/stars/knaidoo29/skysegmentor">
<img src="https://img.shields.io/github/forks/knaidoo29/skysegmentor" alt="github: forks">
</a> -->

## Introduction

**SkySegmentor** is a ``python`` package for dividing points or maps (in ``HEALPix``
format) on the celestial sphere into equal-sized segments. It employs a sequential 
binary space partitioning scheme -- a generalization of the *k*-d tree algorithm -- 
that supports segmentation of arbitrarily shaped sky regions. By design, all 
partitions are approximately equal in area, with discrepancies no larger than the 
``HEALPix`` pixel scale.

## Dependencies

* `numpy>=1.22,<1.27`
* `healpy>=1.15.0`

## Installation

### Pip installation:

```
pip install skysegmentor
```

### From the source:

Clone the repository

```
git clone https://github.com/knaidoo29/SkySegmentor.git
cd SkySegmentor
```

and install by running

```
pip install . [--user]
```

## Documentation

Documentation, including tutorials and explanation of API, can be found here ``https://skysegmentor.readthedocs.io/``. Alternatively a PDF version of the documentation is located in the ``docs/`` folder called ``skysegmentor.pdf``. Offline documentation can be generating by running ``make html`` in the ``docs/`` folder which will generate html documentation in the ``docs/build/html`` folder that can be accessed by opening the ``index.html`` file in a browser.

## Tutorial

### Basic Usage

#### Segmenting Healpix Maps

```python
import healpy
import skysegmentor

# Healpix mask, where zeros are regions outside of the mask and ones inside the
# mask. You can also input a weighted map, where instead of 1s you give weights.
mask = # define mask values

Npartitions = 100 # Number of partitions
partitionmap = skysegmentor.segmentmapN(mask, Npartitions)
```

#### Segmenting Points on the Sphere

```python
import skysegmentor

# Define points on the sphere to be segmented.
phi = # longitude defined in radians from [0, 2*pi]
the = # latitude defined in radians from [0, pi], where 0 = North Pole.

Npartitions = 100 # Number of partitions
partitionIDs = skysegmentor.segmentpointsN(phi, the, Npartitions)
```

if using RA and Dec in degrees you can convert to phi and the using

```python
phi = np.deg2rad(ra)
the = np.deg2rad(90. - dec)
```

if not all points are equal, you can specify a weight

```python
weights = # define point weights
partitionIDs = skysegmentor.segmentpointsN(phi, the, Npartitions, weights=weights)
```

## Citing

``SkySegmentor`` was developed as part of the Euclid angular power spectra internal covariance pipeline. If you use ``SkySegmentor`` please cite this paper, which can be found here:

**--THESE ARE PLACEHOLDERS TO BE UPDATED LATER--**
* NASA ADS:
* ArXiv: 
* BibTex:
    ```
    @ARTICLE{Naidoo2025,
            author = {{Euclid Collaboration} and {Naidoo}, K. and 
            {Ruiz-Zapatero}, J. and {Tessore}, N. and 
            {Joachimi}, B. and {Loureiro}, A. and
            others ...}
            title = "{Euclid preparation: TBD. Accurate and precise data-driven angular power spectrum covariances}
    }
    ```

and include a link to the SkySegmentor documentation page:

    https://skysegmentor.readthedocs.io/

## Support

If you have any issues with the code or want to suggest ways to improve it please open a new issue ([here](https://github.com/knaidoo29/SkySegmentor/issues))
or (if you don't have a github account) email _krishna.naidoo.11@ucl.ac.uk_.
