diff options
author | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2021-03-15 10:40:21 +0100 |
---|---|---|
committer | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2021-03-15 10:53:16 +0100 |
commit | 83b6d7a33e559b688f34822ec7ef28d63ab28924 (patch) | |
tree | 7f32d1d0c711fb7a03a4205d7e86b3cbf68f23ee /gnu/packages/cran.scm | |
parent | 3095255b7bdb194479dbc58d6d51dff752b3352f (diff) | |
download | guix-83b6d7a33e559b688f34822ec7ef28d63ab28924.tar guix-83b6d7a33e559b688f34822ec7ef28d63ab28924.tar.gz |
gnu: Add r-rworldmap.
* gnu/packages/cran.scm (r-rworldmap): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index a539042a24..bd3c040d1d 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -27941,3 +27941,27 @@ by @code{sf}, and @code{NetCDF} bindings by @code{ncmeta} and @code{RNetCDF}.") supply the workflow to create thematic maps. This package also facilitates @code{tmap}, the package for visualizing thematic maps.") (license license:gpl3))) + +(define-public r-rworldmap + (package + (name "r-rworldmap") + (version "1.3-6") + (source + (origin + (method url-fetch) + (uri (cran-uri "rworldmap" version)) + (sha256 + (base32 + "1q1h0n9qr0m5pdx10swrh9ddsvdj8kv5nqngrf3lnx9rg9iwivjk")))) + (properties `((upstream-name . "rworldmap"))) + (build-system r-build-system) + (propagated-inputs + `(("r-fields" ,r-fields) + ("r-maptools" ,r-maptools) + ("r-sp" ,r-sp))) + (home-page + "https://github.com/AndySouth/rworldmap/") + (synopsis "Mapping Global Data") + (description + "Enables mapping of country level and gridded user datasets.") + (license license:gpl2+))) |