summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-automap/package.py
blob: 712fe46eef6933319bcd00d6059809282cea4d79 (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
28
29
# 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 RAutomap(RPackage):
    """Automatic Interpolation Package.

    An automatic interpolation is done by automatically estimating the
    variogram and then calling gstat. An overview is given by Hiemstra et al
    (2008) <doi:10.1016/j.cageo.2008.10.011>."""

    cran = "automap"

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

    version("1.1-9", sha256="f3070aed385352d2595ceddd74cb03cd71965f2e60b675832d16ec2ead6f3a43")

    depends_on("r@2.10.0:", type=("build", "run"))
    depends_on("r-gstat", type=("build", "run"))
    depends_on("r-lattice", type=("build", "run"))
    depends_on("r-reshape", type=("build", "run"))
    depends_on("r-ggplot2", type=("build", "run"))
    depends_on("r-sp", type=("build", "run"))
    depends_on("r-sf", type=("build", "run"))
    depends_on("r-stars", type=("build", "run"))