chopin
automatically distributes geospatial data
computation over multiple threads.chopin
workflowpar_pad_*
functions to par_grid
,
or running par_hierarchy
, or par_multirasters
functions at once.par_*
functions operate on
future
backends, users should define the future plan before
running the functions. multicore
plan supports
terra
objects which may lead to faster computation, but it
is not supported in Windows. An alternative is
future.mirai
’s mirai_multisession
plan, which
is supported in many platforms and generally faster than plain future
multisession plan.workers
argument should be defined with an integer
value to specify the number of threads to be used.extract_at
runs on the grid
polygons.## Reading layer `county' from data source
## `/tmp/Rtmp98Tj94/Rinst1adb383ef800/chopin/extdata/nc_hierarchy.gpkg'
## using driver `GPKG'
## Simple feature collection with 100 features and 1 field
## Geometry type: POLYGON
## Dimension: XY
## Bounding box: xmin: 1054155 ymin: 1341756 xmax: 1838923 ymax: 1690176
## Projected CRS: NAD83 / Conus Albers
## Reading layer `tracts' from data source
## `/tmp/Rtmp98Tj94/Rinst1adb383ef800/chopin/extdata/nc_hierarchy.gpkg'
## using driver `GPKG'
## Simple feature collection with 2672 features and 1 field
## Geometry type: MULTIPOLYGON
## Dimension: XY
## Bounding box: xmin: 1054155 ymin: 1341756 xmax: 1838923 ymax: 1690176
## Projected CRS: NAD83 / Conus Albers
px <-
par_hierarchy(
# from here the par_hierarchy-specific arguments
regions = nctrct,
regions_id = "GEOID",
length_left = 5,
pad = 10000,
pad_y = FALSE,
.debug = TRUE,
# from here are the dispatched function definition
# for parallel workers
fun_dist = extract_at,
# below should follow the arguments of the dispatched function
x = ncelev,
y = sf::st_as_sf(ncsamp),
id = "pid",
radius = 1e4,
func = "mean"
)
dim(px)
## [1] 10000 2
## pid mean
## 1 41 8.817408
## 2 313 13.226359
## 3 318 8.574569
## 4 381 -1.509414
## 5 469 15.428749
## 6 491 9.126508
## pid mean
## 9995 9182 3.564007
## 9996 9317 5.493004
## 9997 9479 -3.363616
## 9998 9531 3.991127
## 9999 9797 7.116028
## 10000 9863 4.943126
ncelev <-
system.file("extdata/nc_srtm15_otm.tif", package = "chopin")
ncelev <- terra::rast(ncelev)
tdir <- tempdir(check = TRUE)
terra::writeRaster(ncelev, file.path(tdir, "test1.tif"), overwrite = TRUE)
terra::writeRaster(ncelev, file.path(tdir, "test2.tif"), overwrite = TRUE)
terra::writeRaster(ncelev, file.path(tdir, "test3.tif"), overwrite = TRUE)
terra::writeRaster(ncelev, file.path(tdir, "test4.tif"), overwrite = TRUE)
terra::writeRaster(ncelev, file.path(tdir, "test5.tif"), overwrite = TRUE)
rasts <- list.files(tdir, pattern = "tif$", full.names = TRUE)
pm <-
par_multirasters(
filenames = rasts,
fun_dist = extract_at,
x = NA,
y = sf::st_as_sf(ncsamp)[1:500, ],
id = "pid",
radius = 1e4,
func = "mean",
.debug = TRUE
)
dim(pm)
## [1] 2500 2
## mean base_raster
## 1 161.93254 /tmp/RtmpPAxxbR/test1.tif
## 2 27.01298 /tmp/RtmpPAxxbR/test1.tif
## 3 52.22775 /tmp/RtmpPAxxbR/test1.tif
## 4 1114.79175 /tmp/RtmpPAxxbR/test1.tif
## 5 871.28333 /tmp/RtmpPAxxbR/test1.tif
## 6 47.10661 /tmp/RtmpPAxxbR/test1.tif
## mean base_raster
## 2495 15.38290 /tmp/RtmpPAxxbR/test5.tif
## 2496 27.74776 /tmp/RtmpPAxxbR/test5.tif
## 2497 168.56837 /tmp/RtmpPAxxbR/test5.tif
## 2498 291.13727 /tmp/RtmpPAxxbR/test5.tif
## 2499 760.81891 /tmp/RtmpPAxxbR/test5.tif
## 2500 439.23389 /tmp/RtmpPAxxbR/test5.tif
chopin
works best with two-dimensional
(planar) geometries. Users should disable
s2
spherical geometry mode in sf
by setting
sf::sf_use_s2(FALSE)
. Running any chopin
functions at spherical or three-dimensional (e.g., including M/Z
dimensions) geometries may produce incorrect or unexpected results.