27 lines
999 B
Python
27 lines
999 B
Python
# 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 RStars(RPackage):
|
|
"""Spatiotemporal Arrays, Raster and Vector Data Cubes.
|
|
|
|
Reading, manipulating, writing and plotting spatiotemporal arrays (raster
|
|
and vector data cubes) in 'R', using 'GDAL' bindings provided by 'sf', and
|
|
'NetCDF' bindings by 'ncmeta' and 'RNetCDF'."""
|
|
|
|
cran = "stars"
|
|
|
|
version("0.5-6", sha256="e0413c95423635f7f7b2520813382e911257da8ace9b743da9fe3eab568a9461")
|
|
|
|
depends_on("r@3.3.0:", type=("build", "run"))
|
|
depends_on("r-abind", type=("build", "run"))
|
|
depends_on("r-sf@1.0-8:", type=("build", "run"))
|
|
depends_on("r-classint@0.4-1:", type=("build", "run"))
|
|
depends_on("r-lwgeom", type=("build", "run"))
|
|
depends_on("r-rlang", type=("build", "run"))
|
|
depends_on("r-units", type=("build", "run"))
|