mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
gnu: Add r-tmaptools.
* gnu/packages/cran.scm (r-tmaptools): New variable.
This commit is contained in:
parent
82344f5936
commit
3095255b7b
1 changed files with 32 additions and 0 deletions
|
@ -27909,3 +27909,35 @@ (define-public r-stars
|
|||
(raster and vector data cubes) in @code{R}, using @code{GDAL} bindings provided
|
||||
by @code{sf}, and @code{NetCDF} bindings by @code{ncmeta} and @code{RNetCDF}.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public r-tmaptools
|
||||
(package
|
||||
(name "r-tmaptools")
|
||||
(version "3.1-1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "tmaptools" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0bal3czrdr93qig8s5cf5szld5vjbbks67rismfhlkmlgw6wp2gx"))))
|
||||
(properties `((upstream-name . "tmaptools")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-dichromat" ,r-dichromat)
|
||||
("r-lwgeom" ,r-lwgeom)
|
||||
("r-magrittr" ,r-magrittr)
|
||||
("r-rcolorbrewer" ,r-rcolorbrewer)
|
||||
("r-sf" ,r-sf)
|
||||
("r-stars" ,r-stars)
|
||||
("r-units" ,r-units)
|
||||
("r-viridislite" ,r-viridislite)
|
||||
("r-xml" ,r-xml)))
|
||||
(home-page
|
||||
"https://github.com/mtennekes/tmaptools")
|
||||
(synopsis "Thematic Map Tools")
|
||||
(description
|
||||
"Set of tools for reading and processing spatial data. The aim is to
|
||||
supply the workflow to create thematic maps. This package also facilitates
|
||||
@code{tmap}, the package for visualizing thematic maps.")
|
||||
(license license:gpl3)))
|
||||
|
|
Loading…
Reference in a new issue