diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-13 11:11:52 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-13 11:14:44 +0100 |
commit | 82acd43cbd0b80b161c2cad266852002a788bd04 (patch) | |
tree | ac2947c83587751c1374667f6c0dc0f81154edc2 /gnu | |
parent | 104e7c3c923e943b7e7c8b9fd24d2fc05c6f6445 (diff) | |
download | patches-82acd43cbd0b80b161c2cad266852002a788bd04.tar patches-82acd43cbd0b80b161c2cad266852002a788bd04.tar.gz |
gnu: Add r-raster.
* gnu/packages/cran.scm (r-raster): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5945d6fa16..4ba6699ab8 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6504,6 +6504,29 @@ while providing the intuitive capabilities of @code{r-ggplot2}.") used to teach mathematics, statistics, computation and modeling.") (license license:gpl2+))) +(define-public r-raster + (package + (name "r-raster") + (version "2.8-4") + (source + (origin + (method url-fetch) + (uri (cran-uri "raster" version)) + (sha256 + (base32 + "14pcfznxm5kdwd908axkr9v1l0hzxlrwd8kwrz0liqnfh9cx5rsa")))) + (build-system r-build-system) + (propagated-inputs + `(("r-rcpp" ,r-rcpp) + ("r-sp" ,r-sp))) + (home-page "http://www.rspatial.org/") + (synopsis "Geographic data analysis and modeling") + (description + "The package implements basic and high-level functions for reading, +writing, manipulating, analyzing and modeling of gridded spatial data. +Processing of very large files is supported.") + (license license:gpl3+))) + (define-public r-mosaic (package (name "r-mosaic") |