Metadata-Version: 2.4
Name: pypolyclip
Version: 1.2.0
Summary: A python driver to the polyclip functions
Author: Pypolyclip Developers
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://github.com/spacetelescope/pypolyclip
Keywords: computational geometry,polygon clipping,polygon intersection,pixelated images,CUBISM,polyclip
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Astronomy
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE.rst
Requires-Dist: numpy>=2.0
Provides-Extra: test
Requires-Dist: matplotlib>=3.9; extra == "test"
Requires-Dist: pytest-astropy>=0.11; extra == "test"
Dynamic: license-file

# pypolyclip

[![CI Tests](https://github.com/spacetelescope/pypolyclip/actions/workflows/ci_tests.yml/badge.svg?branch=main)](https://github.com/spacetelescope/pypolyclip/actions/workflows/ci_tests.yml) [![coverage](https://codecov.io/github/spacetelescope/pypolyclip/branch/main/graph/badge.svg?token=8xpNHaI9wD)](https://codecov.io/github/spacetelescope/pypolyclip) [![Zenodo](https://zenodo.org/badge/DOI/10.5281/zenodo.10076768.svg)](https://doi.org/10.5281/zenodo.10076768)


A Python package to clip polygons against a pixel grid.

The polyclip functions were originally developed for the CUBISM
project [Smith et al. 2007 (PASP 119, 1133)](https://ui.adsabs.harvard.edu/abs/2007PASP..119.1133S/).

## Installation

The package can be installed using pip from the command line:
```
pip install pypolyclip
```

## Description
The [polyclip](http://tir.astro.utoledo.edu/jdsmith/code/idl.php)
code employs the [Sutherland-Hodgman
algorithm](https://en.wikipedia.org/wiki/Sutherland–Hodgman_algorithm)
to clip simple polygons against a tessellated grid of square pixels.
Therefore, this differs from similar packages, which often clip between
two arbitrary polygons.

The test module
[test_pypolyclip.py](https://github.com/spacetelescope/pypolyclip/blob/main/pypolyclip/tests/test_pypolyclip.py) can be run to produce the following
example figures:

<img src="https://raw.githubusercontent.com/larrybradley/pypolyclip/main/docs/_static/polygons.png" width="350" height="350">
<img src="https://raw.githubusercontent.com/larrybradley/pypolyclip/main/docs/_static/quadrilaterals.png" width="350" height="350">

In each figure, the Cartesian coordinates for each pixel that overlaps
with a given polygon are labeled with the area of that pixel that is
covered (the area of a pixel is defined as 1). Therefore, the sum of the
areas of the individual pixels for each polygon should be the total area
of the polygon.

Pypolyclip uses a coordinate grid where integer pixel coordinates are
located at the lower-left corner of each pixel, starting from zero. To
clip polygons on a coordinate grid where integer pixel coordinates are
located at the center of pixels, one will need to add 0.5 pixel to both
the x and y vertices of the input polygons.

The first figure shows clipping of polygons with differing numbers of
vertices, which internally requires the use of "for loops". However, if
the number of vertices is the same for all polygons (such as the second
figure), then [NumPy](https://numpy.org/) is used internally to improve
performance by several percent.


## Example usage
This first example demonstrates polygons with the same number of
vertices:

```
import numpy as np
from pypolyclip import clip_multi

# define the size of the pixel grid
naxis = (100, 100)

# create 3 polygons to clip

# the x-vertices of the polygon
px = np.array([[3.4, 3.4, 4.4, 4.4],
               [3.5, 3.5, 4.3, 4.3],
               [3.1, 3.1, 3.9, 3.9]])

# the y-vertices of the polygon
py = np.array([[1.4, 1.9, 1.9, 1.4],
               [3.7, 4.4, 4.4, 3.7],
               [2.1, 2.9, 2.9, 2.1]])

# call the clipper
xc, yc, area, slices = clip_multi(px, py, naxis)

# xc, yc are the grid indices with overlapping pixels.
# area is the overlapping area on a given pixel.
# slices is a list of slice objects to link between the input polygons
# and the clipped pixel grid.

# the slices object can be used to get the area of each polygon
for i, s in enumerate(slices):
    print(f'total area for polygon {i}={np.sum(area[s])}')
```

This second example demonstrates clipping polygons that have a different
number of vertices.  Note that `px` and `py` are lists of lists instead
of NumPy arrays as in the first example.

```
import numpy as np
from pypolyclip import clip_multi

# define the size of the pixel grid
naxis = (100, 100)

# create 3 polygons to clip

# the x-vertices of the polygon
px = [[3.4, 3.4, 4.4, 4.8, 4.4],
      [3.5, 3.5, 4.3, 4.3],
      [3.1, 3.8, 3.1]]

# the y-vertices of the polygon
py = [[1.4, 1.9, 1.9, 1.65, 1.4],
      [3.7, 4.4, 4.4, 3.7],
      [2.1, 2.1, 3.4]]

# call the clipper
xc, yc, area, slices = clip_multi(px, py, naxis)

# xc, yc are the grid indices with overlapping pixels.
# area is the overlapping area on a given pixel.
# slices is a list of slice objects to link between the input polygons
# and the clipped pixel grid.

# the slices object can be used to get the area of each polygon
for i, s in enumerate(slices):
    print(f'total area for polygon {i}={np.sum(area[s])}')
```
