gnu: Add r-revgeo.

* gnu/packages/cran.scm (r-revgeo): New variable.
This commit is contained in:
Ricardo Wurmus 2021-04-23 15:07:48 +02:00
parent f35e419b57
commit a9b01b7582
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -28283,6 +28283,30 @@ (define-public r-rjsonio
package.")
(license license:bsd-3)))
(define-public r-revgeo
(package
(name "r-revgeo")
(version "0.15")
(source
(origin
(method url-fetch)
(uri (cran-uri "revgeo" version))
(sha256
(base32
"1ns7d1817475lriss6wwgvdm6lj760p40yxqaifla13c2xb73a55"))))
(properties `((upstream-name . "revgeo")))
(build-system r-build-system)
(propagated-inputs
`(("r-rcurl" ,r-rcurl)
("r-rjsonio" ,r-rjsonio)))
(home-page "https://cran.r-project.org/package=revgeo")
(synopsis "Reverse geocoding")
(description
"The @code{revgeo} procedure allows you to use the Photon geocoder for
OpenStreetMap, Google Maps, and Bing to reverse geocode coordinate pairs with
minimal hassle.")
(license license:gpl3+)))
(define-public r-textplot
(package
(name "r-textplot")