summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-mapplots/package.py
blob: a62de93e4eba8460a9a6425447e876d60c0c02bb (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
# Copyright 2013-2023 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 RMapplots(RPackage):
    """Data Visualisation on Maps.

    Create simple maps; add sub-plots like pie plots to a map or any other
    plot; format, plot and export gridded data. The package was developed for
    displaying fisheries data but most functions can be used for more generic
    data visualisation."""

    cran = "mapplots"

    license("GPL-2.0-or-later")

    version("1.5.1", sha256="37e96d34f37922180e07bb63b4514e07d42eee5bbf0885b278286ee48cf142a3")

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