From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37744) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eoaCi-0005Od-IM for guix-patches@gnu.org; Wed, 21 Feb 2018 14:38:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eoaBO-0007gT-TJ for guix-patches@gnu.org; Wed, 21 Feb 2018 14:37:24 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:47002) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eoaBO-0007fr-KI for guix-patches@gnu.org; Wed, 21 Feb 2018 14:36:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eoaBO-0008S6-Bn for guix-patches@gnu.org; Wed, 21 Feb 2018 14:36:02 -0500 Subject: [bug#30570] [PATCH 05/16] gnu: Add Rgooglemaps. Resent-Message-ID: From: Leo Famulari Date: Wed, 21 Feb 2018 14:35:09 -0500 Message-Id: <304546987335c8be80dab87dea95f03066371453.1519241713.git.leo@famulari.name> In-Reply-To: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> References: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> In-Reply-To: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> References: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30570@debbugs.gnu.org * gnu/packages/geo.scm (r-rgooglemaps): New variable. --- gnu/packages/geo.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 8e066197d..88a374fb4 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -421,3 +421,25 @@ coordinates.") (license:non-copyleft ; The C code "https://www.gnu.org/licenses/license-list.en.html#lucent102" "Lucent Public License Version 1.02"))))) + +(define-public r-rgooglemaps + (package + (name "r-rgooglemaps") + (version "1.4.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "RgoogleMaps" version)) + (sha256 + (base32 + "0fsmlnhl4kw2j4972kfanzw9njhnzk695gsyw8g6yppsmz2clcaq")))) + (properties `((upstream-name . "RgoogleMaps"))) + (build-system r-build-system) + (propagated-inputs `(("r-png" ,r-png))) + (home-page "https://cran.r-project.org/web/packages/RgoogleMaps") + (synopsis "Use Google Maps in R") + (description "This package serves two purposes: (i) Provide a comfortable R +interface to query the Google server for static maps, and (ii) Use the map as a +background image to overlay plots within R. This requires proper coordinate +scaling.") + (license license:gpl2+))) -- 2.16.1