diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2019-03-01 10:18:14 -0600 |
---|---|---|
committer | Levi Baber <baberlevi@gmail.com> | 2019-03-01 10:18:14 -0600 |
commit | 1a8161a9826ffbcdfc1ed3c165461127d85bc937 (patch) | |
tree | 88ee3987ad1343464b0c8cbb74301bcb0cf254d0 | |
parent | cbc6a2070a08a470ed916570d6807c9b7de9564a (diff) | |
download | spack-1a8161a9826ffbcdfc1ed3c165461127d85bc937.tar.gz spack-1a8161a9826ffbcdfc1ed3c165461127d85bc937.tar.bz2 spack-1a8161a9826ffbcdfc1ed3c165461127d85bc937.tar.xz spack-1a8161a9826ffbcdfc1ed3c165461127d85bc937.zip |
r-bfastspatial: new package at 0.6.2 (#10734)
-rw-r--r-- | var/spack/repos/builtin/packages/r-bfastspatial/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-bfastspatial/package.py b/var/spack/repos/builtin/packages/r-bfastspatial/package.py new file mode 100644 index 0000000000..57c201ebba --- /dev/null +++ b/var/spack/repos/builtin/packages/r-bfastspatial/package.py @@ -0,0 +1,28 @@ +# Copyright 2013-2019 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 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')) |