mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add r-automap.
* gnu/packages/cran.scm (r-automap): New variable.
This commit is contained in:
parent
525457cc8b
commit
e008aee36f
1 changed files with 25 additions and 0 deletions
|
@ -33580,3 +33580,28 @@ (define-public r-gstat
|
||||||
Gaussian or indicator (co)simulation. It includes variogram and variogram map
|
Gaussian or indicator (co)simulation. It includes variogram and variogram map
|
||||||
plotting utility functions, and supports @command{sf} and @command{stars}.")
|
plotting utility functions, and supports @command{sf} and @command{stars}.")
|
||||||
(license license:gpl2+)))
|
(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+))))
|
||||||
|
|
Loading…
Reference in a new issue