me
/
guix
Archived
1
0
Fork 0

gnu: Add r-exactextractr.

* gnu/packages/cran.scm (r-exactextractr): New variable.
Ricardo Wurmus 2021-08-03 10:39:31 +02:00
parent 10f554700c
commit eb632a28db
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 28 additions and 0 deletions

View File

@ -29958,3 +29958,31 @@ applications. The OpenCPU server runs either as a single-user development
server within the interactive R session, or as a multi-user stack based on
Apache2.")
(license license:asl2.0)))
(define-public r-exactextractr
(package
(name "r-exactextractr")
(version "0.6.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "exactextractr" version))
(sha256
(base32
"1xnccadbj03h7m81ix5qn0hx918xc9hbxnzgv5lr3hf8b26i9wni"))))
(properties `((upstream-name . "exactextractr")))
(build-system r-build-system)
(inputs `(("geos" ,geos)))
(propagated-inputs
`(("r-raster" ,r-raster)
("r-rcpp" ,r-rcpp)
("r-sf" ,r-sf)))
(native-inputs
`(("r-knitr" ,r-knitr)))
(home-page "https://isciences.gitlab.io/exactextractr/")
(synopsis "Fast extraction from raster datasets using polygons")
(description
"This package provides a replacement for the @code{extract} function from
the @code{raster} package that is suitable for extracting raster values using
@code{sf} polygons.")
(license license:asl2.0)))