[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: Add r-sungeo.
From: |
guix-commits |
Subject: |
06/06: gnu: Add r-sungeo. |
Date: |
Fri, 1 Jul 2022 04:41:36 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 1eeecb2b5ad6dd74a5341006a447af0c69137bde
Author: Wiktor Żelazny <wz@freeshell.de>
AuthorDate: Wed Jun 8 19:05:16 2022 +0200
gnu: Add r-sungeo.
* gnu/packages/cran.scm (r-sungeo): New variable.
---
gnu/packages/cran.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 5699495c6e..d5017a05c8 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -33644,3 +33644,52 @@ non-contiguous area cartograms.")
measurements easier. One can convert between metric and imperial units, or
calculate a dimension's unknown value from other dimensions' measurements.")
(license license:gpl3)))
+
+(define-public r-sungeo
+ (package
+ (name "r-sungeo")
+ (version "0.2.288")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "SUNGEO" version))
+ (sha256
+ (base32
+ "0c8y0ngx1020rw2v00rxmq8syd72f41ckik5sg7gigg7d80gi31w"))
+ (modules '((guix build utils)))
+ (snippet '(begin
+ ;; Fortunately, the package does not actually use
+ ;; rmapshaper, which has got a js/node dependency.
+ ;; The only occurrence is in R/point2poly_tess.R,
+ ;; where it is commented out.
+ (substitute* "DESCRIPTION"
+ (("rmapshaper,") ""))
+ (substitute* "NAMESPACE"
+ (("importFrom\\(rmapshaper,ms_dissolve\\)
+") ""))
+ #t))))
+ (properties `((upstream-name . "SUNGEO")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-automap
+ r-cartogram
+ r-data-table
+ r-dplyr
+ r-fasterize
+ r-httr
+ r-jsonlite
+ r-measurements
+ r-packcircles
+ r-purrr
+ r-rann
+ r-raster
+ r-rcpp
+ r-rcurl
+ r-rlang
+ r-sf
+ r-sp
+ r-spdep))
+ (home-page "https://github.com/zhukovyuri/SUNGEO/")
+ (synopsis "Sub-National Geospatial Data Archive: Geoprocessing Toolkit")
+ (description
+ "Tools for integrating spatially-misaligned GIS datasets. Part of the
+Sub-National Geospatial Data Archive System.")
+ (license license:gpl2)))
- branch master updated (ec23d7caa8 -> 1eeecb2b5a), guix-commits, 2022/07/01
- 01/06: gnu: Add r-spacetime., guix-commits, 2022/07/01
- 02/06: gnu: Add r-gstat., guix-commits, 2022/07/01
- 04/06: gnu: Add r-cartogram., guix-commits, 2022/07/01
- 03/06: gnu: Add r-automap., guix-commits, 2022/07/01
- 05/06: gnu: Add r-measurements., guix-commits, 2022/07/01
- 06/06: gnu: Add r-sungeo.,
guix-commits <=