diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-24 23:22:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-24 23:44:12 +0100 |
commit | 66c08ff4c307300fd47239fe1aa4225bbbf98c3b (patch) | |
tree | 36292b6e1c90a244a38aa1163f2aa0b48a8c4e54 | |
parent | 518c1dea10760cb226471b5c43c1de6fbf485637 (diff) | |
download | patches-66c08ff4c307300fd47239fe1aa4225bbbf98c3b.tar patches-66c08ff4c307300fd47239fe1aa4225bbbf98c3b.tar.gz |
gnu: Add r-spdata.
* gnu/packages/cran.scm (r-spdata): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3fe4286a69..d4c7ef0388 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -12071,3 +12071,28 @@ classes.") "This package provides selected commonly used methods for choosing univariate class intervals for mapping or other graphics purposes.") (license license:gpl2+))) + +(define-public r-spdata + (package + (name "r-spdata") + (version "0.3.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "spData" version)) + (sha256 + (base32 + "162cqb331ki43jx4r8lpkjpn2l712figd896rnawg9j1jmjyl96y")))) + (properties `((upstream-name . "spData"))) + (build-system r-build-system) + (home-page "https://github.com/Nowosad/spData") + (synopsis "Datasets for spatial analysis") + (description + "This a package containing diverse spatial datasets for demonstrating, +benchmarking and teaching spatial data analysis. It includes R data of class +@code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a +range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some +of the datasets are designed to illustrate specific analysis techniques. +@code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to +illustrate point pattern analysis techniques.") + (license license:cc0))) |