summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-polyclip/package.py
blob: 55c5ff6f81d59f278e3f72cf355d019a4a90015b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class RPolyclip(RPackage):
    """Polygon Clipping.

    R port of Angus Johnson's open source library Clipper. Performs polygon
    clipping operations (intersection, union, set minus, set difference) for
    polygonal regions of arbitrary complexity, including holes. Computes offset
    polygons (spatial buffer zones, morphological dilations, Minkowski
    dilations) for polygonal regions and polygonal lines. Computes Minkowski
    Sum of general polygons. There is a function for removing
    self-intersections from polygon data."""

    cran = "polyclip"

    license("BSL-1.0")

    version("1.10-4", sha256="84d2c9778771d3759b49d7d16fb54c8ddc5397da3b1d21074bc4aa42c02e6f56")
    version("1.10-0", sha256="74dabc0dfe5a527114f0bb8f3d22f5d1ae694e6ea9345912909bae885525d34b")

    depends_on("r@3.0.0:", type=("build", "run"))