guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

47/55: gnu: Add r-maptools.


From: Ricardo Wurmus
Subject: 47/55: gnu: Add r-maptools.
Date: Sat, 21 Apr 2018 17:08:24 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 08dac3d9e674b1412edd000f55caaef45ae0ab4c
Author: Ricardo Wurmus <address@hidden>
Date:   Sat Apr 21 09:23:50 2018 +0200

    gnu: Add r-maptools.
    
    * gnu/packages/cran.scm (r-maptools): New variable.
---
 gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 0b54ed0..12f8489 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -3820,3 +3820,31 @@ without explicit decompression, and fast import packages 
are used where
 appropriate.  An additional convenience function, @code{convert}, provides a
 simple method for converting between file types.")
     (license license:gpl2)))
+
+(define-public r-maptools
+  (package
+    (name "r-maptools")
+    (version "0.9-2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "maptools" version))
+       (sha256
+        (base32
+         "075lmb3b62171cw2dg8fv1vwmvfzg39r1ji7jwb8s5k9dz88ry1v"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-foreign" ,r-foreign)
+       ("r-lattice" ,r-lattice)
+       ("r-sp" ,r-sp)))
+    (home-page "http://r-forge.r-project.org/projects/maptools/";)
+    (synopsis "Tools for reading and handling spatial objects")
+    (description
+     "This package provides a set of tools for manipulating and reading
+geographic data, in particular ESRI Shapefiles.  It includes binary access to
+GSHHG shoreline files.  The package also provides interface wrappers for
+exchanging spatial objects with other R packages.")
+    ;; The C source files from shapelib are released under the Expat license.
+    ;; The R code is released under GPL version 2 or later.
+    (license (list license:gpl2+
+                   license:expat))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]