diff options
author | mef <mef@pkgsrc.org> | 2021-09-20 12:51:19 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2021-09-20 12:51:19 +0000 |
commit | 8f091d76b1463750e9803997a9a69a5cbf1ee930 (patch) | |
tree | 7fc44a6d92f952ab57283cac0eb2a540214b3e9b /geography/R-raster/Makefile | |
parent | 140f5e31977708bd7a22ed94dfcced974065ee6d (diff) | |
download | pkgsrc-8f091d76b1463750e9803997a9a69a5cbf1ee930.tar.gz |
(geography/R-raster) Updated 3.0.12 to 3.4.13
(From: NEWS)
--- 17-July-2020, version 3.3-13
overhaul of crs to be ready for PROJ6
several bug fixes (see https://github.com/rspatial/raster/issues?q=is%3Aissue+)
--- 18-April-2020, version 3.1-5
improvements:
new arguments "smin", "smax" and "samplesize" to "stretch"; and bug
fixes. See https://github.com/rspatial/raster/issues/70
layer names in GTiff files are now read from file. Requested by Kyle Taylor
https://github.com/rspatial/raster/issues/88
bug fixes:
parallel version of extract with polygons and "fun" messed up the
order of the values (reported by
Jacory). https://github.com/rspatial/raster/issues/79
raster::predict bug when using factors (reported by
vvirkki). https://github.com/rspatial/raster/issues/73
distanceFromPoints with large files:
https://github.com/rspatial/raster/issues/103
colortable lost when cropping RasterBrick:
https://github.com/rspatial/raster/issues/105
Error in stack() when providing both bands and varname:
https://github.com/rspatial/raster/issues/97
rasterize and multi-polygon containing hole: https://github.com/rspatial/raster/issues/93
Upside down raster: https://github.com/rspatial/raster/issues/95 (a
warning is given, not really fixed yet)
Extract to data.frame bug:
https://stackoverflow.com/questions/61174280/r-rasterextract-fails-to-create-data-frame
Diffstat (limited to 'geography/R-raster/Makefile')
-rw-r--r-- | geography/R-raster/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/geography/R-raster/Makefile b/geography/R-raster/Makefile index 3bc53539e6b..b8376c966ce 100644 --- a/geography/R-raster/Makefile +++ b/geography/R-raster/Makefile @@ -1,17 +1,23 @@ -# $NetBSD: Makefile,v 1.1 2020/08/08 23:28:07 brook Exp $ +# $NetBSD: Makefile,v 1.2 2021/09/20 12:51:19 mef Exp $ R_PKGNAME= raster -R_PKGVER= 3.0-12 +R_PKGVER= 3.4-13 CATEGORIES= geography MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Geographic Data Analysis and Modeling LICENSE= gnu-gpl-v3 -USE_LANGUAGES+= c c++ - DEPENDS+= R-sp>=1.2.0:../../math/R-sp +# Packages suggested but not available: +# 'rasterVis', 'fields', 'exactextractr' +TEST_DEPENDS+= R-ncdf4-[0-9]*:../../math/R-ncdf4 +TEST_DEPENDS+= R-igraph-[0-9]*:../../math/R-igraph +TEST_DEPENDS+= R-tinytest-[0-9]*:../../devel/R-tinytest + +USE_LANGUAGES+= c c++ + .include "../../math/R/Makefile.extension" .include "../../devel/R-Rcpp/buildlink3.mk" .include "../../math/R-sp/buildlink3.mk" |