diff options
author | mef <mef@pkgsrc.org> | 2021-06-06 14:45:22 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2021-06-06 14:45:22 +0000 |
commit | ed9881c4b8b8626621f27f4abcc6fde06012d42d (patch) | |
tree | 09011692f6ca8ff62e6d588033a2d05d914f576e | |
parent | b27de7b98d631e750afeeed3322886118d441dab (diff) | |
download | pkgsrc-ed9881c4b8b8626621f27f4abcc6fde06012d42d.tar.gz |
(geography/R-sf) Updated 0.9.5 to 0.9.8
# version 0.9-8
* add `st_as_sf` method for terra's `SpatVector` class; #1567
* `distinct.sf` works by default on all variables, and keeps active geometry
afctive; #1613
* improve (fix?) polygonize/contour code; #1608
* `sf_proj_network()` reports whether PROJ uses network (CDN) grids, can switch
it on or off, and can set the CDN url.
* `st_write` returns obj, invisibly; #1597
* fix regression in n-ary `st_intersection()`, #1595, introduced at #1549
* `st_inscribed_circle` computes the maximum inscribed circle for polygons
(requires GEOS >= 3.9.0)
* allow to `st_cast` COMPOUNDCURVE, MULTISURFACE or CURVEPOLYGON to
GEOMETRYCOLLECTION (and back); #1573
* Fixed a bug in `st_as_grob()` when plotting a mix of MULTI and non-MULTI
geometries of the same base type
# version 0.9-7
* n-ary `st_intersection` skips failing geometries, rather than returning an
error; #1549
* use `s2_centroid` for geographical coordinates if `sf_use_s2()` is `TRUE`.
* `st_as_text` method for `crs` objects can return projjson (if GDAL >= 3.1.0
and PROJ > 6.2.0)
* `st_transform` no longer warns on conversions like `"+proj=ob_tran
+o_proj=longlat +o_lat_p=45 +o_lon_p=30"`
* `st_as_wkb` takes `srid` from `wkt` field of `crs` when `input` field doesn't
contain it; #1490
* `plot.sf` adds `key.pos=0` option to run the logic behind the key without
plotting it; #1487
* fix bug in `select.sf` when selected variables were renamed; #1483
* `st_as_sf.stars` with `merge = TRUE` now works if crs is `NA`; #1389
* add (dynamically loaded) `as_wkb` methods for `sf`, `sfc` and `sfg`, making
`st_as_s2()` unnecessary
* `st_as_s2` transforms non-longlat objects to EPSG:4326 first
# version 0.9-6
* `gdal_utils` print (GDAL-style) progress bar if `quiet = FALSE` (except for
`info` and `mdiminfo`)
* fix `CPL_gdal_warper` for multi bands; https://github.com/r-spatial/stars/issues/320
* `sf_proj_search_paths()` retrieves and sets the proj search path (if GDAL > 3.0.3)
* when loading sf, `sf_use_s2` is set to `FALSE` unless environment variable
`_SF_USE_S2` equals `true`
* resolve GDAL/PROJ version vulnerabilities in CRS-crs conversion; #1479
* `st_sample` gains an argument, `by_polygon`, to more clevery sample
`MULTIPOLYGON` geometries; #1480
* `st_sample` accepts non-integer sample sizes, with a (suppressable) warning
and handles values of sizes that would round to zero; #1480
* `gdal_utils` adds utils `mdiminfo` and `mdimtranslate` (requires GDAL >= 3.1)
* `st_union` gains an argument `is_coverage`, which, when set to `TRUE`, leads
to much faster unioning in case features form a coverage (polygons don't
overlap); #1462 by Don Baston
* fix `gdal_utils("translate")` locking input file; #1452
* `st_make_grid` no longer selects cells intersecting with `x`; #1447
* use `s2::s2_dwithin_matrix` in `st_is_within_distance`; #1367
-rw-r--r-- | geography/R-sf/Makefile | 16 | ||||
-rw-r--r-- | geography/R-sf/distinfo | 10 |
2 files changed, 18 insertions, 8 deletions
diff --git a/geography/R-sf/Makefile b/geography/R-sf/Makefile index 4a91850581c..ffbf3b61e4a 100644 --- a/geography/R-sf/Makefile +++ b/geography/R-sf/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2021/05/03 16:28:46 gdt Exp $ +# $NetBSD: Makefile,v 1.7 2021/06/06 14:45:22 mef Exp $ R_PKGNAME= sf -R_PKGVER= 0.9-5 -PKGREVISION= 5 +R_PKGVER= 0.9-8 CATEGORIES= geography MAINTAINER= pkgsrc-users@NetBSD.org @@ -17,6 +16,17 @@ DEPENDS+= R-DBI>=0.8:../../math/R-DBI DEPENDS+= R-classInt>=0.4.1:../../math/R-classInt DEPENDS+= R-units>=0.6.0:../../math/R-units +# Packages suggested but not available: +# 'lwgeom', 'mapview', 'odbc', 'pool', 'rgdal', 'RPostgres', +# 'RPostgreSQL', 'RSQLite', 's2', 'spatstat', 'spatstat.geom', +# 'spatstat.core', 'spatstat.linnet', 'spatstat.utils', 'stars', +# 'terra', 'tidyr', 'tmap' + +TEST_DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2 +TEST_DEPENDS+= R-blob-[0-9]*:../../devel/R-blob +TEST_DEPENDS+= R-raster-[0-9]*:../../geography/R-raster +TEST_DEPENDS+= R-microbenchmark-[0-9]*:../../benchmarks/R-microbenchmark + .include "../../math/R/Makefile.extension" .include "../../devel/R-Rcpp/buildlink3.mk" .include "../../geography/gdal-lib/buildlink3.mk" diff --git a/geography/R-sf/distinfo b/geography/R-sf/distinfo index de710f294d0..d8921e83a00 100644 --- a/geography/R-sf/distinfo +++ b/geography/R-sf/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2020/08/08 23:12:18 brook Exp $ +$NetBSD: distinfo,v 1.2 2021/06/06 14:45:22 mef Exp $ -SHA1 (R/sf_0.9-5.tar.gz) = 40dc58bc65cd7730dc9f10767ba34f83f6e8d09f -RMD160 (R/sf_0.9-5.tar.gz) = 7c8b3203f3053a529ba7c8d1ade21eebe6bfd940 -SHA512 (R/sf_0.9-5.tar.gz) = f70fbdeaa2de7fb55444002d2f38ed9eee646dd7fdfd82428a7fd5346c1e493c0b1ac653aa27b8f3661dea0dc3610b22a63199ccd636569ddae8466e83a937a6 -Size (R/sf_0.9-5.tar.gz) = 9001885 bytes +SHA1 (R/sf_0.9-8.tar.gz) = f473644811645cd79d1a4d0155e446a9ca581e4c +RMD160 (R/sf_0.9-8.tar.gz) = fc27a7e162db61558a50d09c60a8c344c5bca093 +SHA512 (R/sf_0.9-8.tar.gz) = 97fc24ade2557096e2c5974015683cbcb76b07311ca55ee4aaed860e6962de6793550cc17c24498c4f52e548b4363784b18aeae88f8a7622232375a67bb0afae +Size (R/sf_0.9-8.tar.gz) = 4213253 bytes |