diff options
author | Wiktor Żelazny <wz@freeshell.de> | 2022-06-08 19:05:13 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-07-01 10:33:01 +0200 |
commit | e008aee36f34a400e11695a94778550f920dcf82 (patch) | |
tree | 4751fe6bee0d91e53980afe2bee87d71199e31e9 | |
parent | 525457cc8b534cde0d98abee458248706ebb455a (diff) | |
download | guix-e008aee36f34a400e11695a94778550f920dcf82.tar guix-e008aee36f34a400e11695a94778550f920dcf82.tar.gz |
gnu: Add r-automap.
* gnu/packages/cran.scm (r-automap): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index fdf4a3cc31..de08aa4745 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33580,3 +33580,28 @@ universal point or block (co)kriging; spatio-temporal kriging; and sequential Gaussian or indicator (co)simulation. It includes variogram and variogram map plotting utility functions, and supports @command{sf} and @command{stars}.") (license license:gpl2+))) + +(define-public r-automap + (package + (name "r-automap") + (version "1.0-16") + (source (origin + (method url-fetch) + (uri (cran-uri "automap" version)) + (sha256 + (base32 + "0jz0p28gmx9cpzv4cz0xhbml3w1inf2nsd2ynbhmfxg5rm2f7dca")))) + (properties `((upstream-name . "automap"))) + (build-system r-build-system) + (propagated-inputs (list r-ggplot2 + r-gstat + r-lattice + r-maptools + r-reshape + r-sp)) + (home-page "https://cran.r-project.org/package=automap") + (synopsis "Automatic interpolation package") + (description + "@command{automap} performs an automatic interpolation by automatically +estimating the variogram and then calling @command{gstat}.") + (license (list license:gpl2+ license:gpl3+)))) |