spack/var/spack/repos/builtin/packages/r-bfastspatial/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files
- [x] update all licensed files to say 2013-2021 using
      `spack license update-copyright-year`
- [x] appease mypy with some additions to package.py that needed
      for oneapi.py
2021-01-02 12:12:00 -08:00

29 lines
1.2 KiB
Python

# Copyright 2013-2021 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'))