summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-gstat/package.py
blob: a747cab40fe4d7bfb1acc8b91cd01b37b11f48c2 (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
30
31
32
33
34
35
36
37
38
# 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 RGstat(RPackage):
    """Spatial and Spatio-Temporal Geostatistical Modelling, Predictionand
    Simulation.

    Variogram modelling; simple, ordinary and universal point or block
    (co)kriging; spatio-temporal kriging; sequential Gaussian or indicator
    (co)simulation; variogram and variogram map plotting utility functions;
    supports sf and stars."""

    cran = "gstat"

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

    version("2.1-1", sha256="48b205e65155effb6827fca062f2a409a0922241b7714cc6c8248f141b125d25")
    version("2.1-0", sha256="57a6eb46fa601f159ace1e56ebe8928d210a62d85552a4eb5a5ca4ada48f2d6f")
    version("2.0-9", sha256="122c032c2e15388496853597ebcb5664e76cda96b164e9917ee66d1c24fba4a6")
    version("2.0-8", sha256="57cb9e8235a39379a96af0a5651c82e02fdd608375917939948c3dbf170668e8")
    version("2.0-6", sha256="6711e68aa2444cf2927879a03a976d8caeca5eac98d806b19a6a7178b90bfcab")
    version("2.0-3", sha256="20a93fe6bf89221a5888de273bddf9a98187806d507cd3cd6297c2b13e7acce1")

    depends_on("r@2.10:", type=("build", "run"))
    depends_on("r-lattice", type=("build", "run"))
    depends_on("r-sp@0.9-72:", type=("build", "run"))
    depends_on("r-zoo", type=("build", "run"))
    depends_on("r-stars", type=("build", "run"), when="@2.1-0:")
    depends_on("r-sftime", type=("build", "run"), when="@2.1-0:")
    depends_on("r-sf@0.7-2:", type=("build", "run"), when="@2.1-0:")
    depends_on("r-spacetime@1.0-0:", type=("build", "run"))
    depends_on("r-spacetime@1.2-8:", type=("build", "run"), when="@2.1-0:")
    depends_on("r-fnn", type=("build", "run"))