summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-hydrotsm/package.py
blob: 2fd5cde5e956cc4fb2f0be49422be9ff9843c874 (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
# 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 RHydrotsm(RPackage):
    """Time Series Management, Analysis and Interpolation for Hydrological
    Modelling.

    S3 functions for management, analysis, interpolation and plotting of time
    series used in hydrology and related environmental sciences. In particular,
    this package is highly oriented to hydrological modelling tasks. The focus
    of this package has been put in providing a collection of tools useful for
    the daily work of hydrologists (although an effort was made to optimise
    each function as much as possible, functionality has had priority over
    speed). Bugs / comments / questions / collaboration of any kind are very
    welcomed, and in particular, datasets that can be included in this package
    for academic purposes."""

    cran = "hydroTSM"

    version("0.6-0", sha256="5be759845ce05ca579ed2657c85d497b78c3060d737e84fcd457153045db4ad7")

    depends_on("r@2.10.0:", type=("build", "run"))
    depends_on("r-zoo@1.7-2:", type=("build", "run"))
    depends_on("r-xts@0.9-7:", type=("build", "run"))
    depends_on("r-e1071", type=("build", "run"))
    depends_on("r-gstat", type=("build", "run"))
    depends_on("r-automap", type=("build", "run"))
    depends_on("r-sp@1.1-0:", type=("build", "run"))
    depends_on("r-lattice", type=("build", "run"))
    depends_on("r-maptools", type=("build", "run"))