guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/99: gnu: Add r-terra.


From: guix-commits
Subject: 06/99: gnu: Add r-terra.
Date: Tue, 9 Mar 2021 16:07:00 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 7fffee5e34c92359178da67206be348e42957e30
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Mar 9 21:32:48 2021 +0100

    gnu: Add r-terra.
    
    * gnu/packages/cran.scm (r-terra): New variable.
---
 gnu/packages/cran.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 232cea5..6b43707 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -18127,6 +18127,41 @@ stress majorization by Gansner et al. (2004)
 emphasize hidden group structures in networks or focus on specific nodes.")
     (license license:expat)))
 
+(define-public r-terra
+  (package
+    (name "r-terra")
+    (version "1.1-4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "terra" version))
+       (sha256
+        (base32
+         "1vsh55sq56shc8s2vmkl27yvrdbrbn3l6jrigqf2hmvppkb2jsbg"))))
+    (properties `((upstream-name . "terra")))
+    (build-system r-build-system)
+    (inputs
+     `(("gdal" ,gdal)
+       ("geos" ,geos)
+       ("proj" ,proj)
+       ("sqlite" ,sqlite) ; needed for proj
+       ("zlib" ,zlib)))
+    (propagated-inputs
+     `(("r-raster" ,r-raster)
+       ("r-rcpp" ,r-rcpp)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "https://rspatial.org/terra";)
+    (synopsis "Spatial data analysis")
+    (description
+     "This package provides methods for spatial data analysis, especially
+raster data.  The included methods allow for low-level data manipulation as
+well as high-level global, local, zonal, and focal computation.  The predict
+and interpolate methods facilitate the use of regression type (interpolation,
+machine learning) models for spatial prediction.  Processing of very large
+files is supported.")
+    (license license:gpl3+)))
+
 (define-public r-tidygraph
   (package
     (name "r-tidygraph")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]