summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-bfastspatial/package.py
blob: c7bcaf5b3a2026f1a8c2be15a9f961f2159287ae (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
# 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 RBfastspatial(RPackage):
    """Pre-process gridded time-series data in order for them to be
    analyzed with change detection algorithms such as bfast. Uses classes
    from the raster package and includes utilities to run the algorithms and
    post-process the results."""

    homepage = "https://github.com/loicdtx/bfastSpatial"
    url = "https://github.com/loicdtx/bfastSpatial/archive/0.6.2.tar.gz"

    version("0.6.2", sha256="2c6220a5d04d6e4531b0b022a015651e630433f8d6864fa8b820aed5af5c1897")

    depends_on("r@3.0.0:", type=("build", "run"))
    depends_on("r-raster", type=("build", "run"))
    depends_on("r-bfast", type=("build", "run"))
    depends_on("r-gdalutils", type=("build", "run"))
    depends_on("r-stringr", type=("build", "run"))
    depends_on("r-rgdal", type=("build", "run"))
    depends_on("r-bitops", type=("build", "run"))
    depends_on("r-zoo", type=("build", "run"))
    depends_on("r-sp", type=("build", "run"))