mirror of
https://github.com/appelmar/gdalcubes.git
synced 2025-06-16 11:30:22 +02:00
31 lines
No EOL
828 B
R
31 lines
No EOL
828 B
R
#!/usr/bin/env r
|
|
|
|
args = commandArgs(trailingOnly=TRUE)
|
|
if (length(args) < 1) {
|
|
stop("Missing input argument(s)")
|
|
}
|
|
|
|
json = args[1]
|
|
#json = ".test_worker_description.json" # for testing
|
|
|
|
if (!requireNamespace("jsonlite", quietly = TRUE)) {
|
|
stop("package jsonlite required; please install first")
|
|
}
|
|
j = jsonlite::fromJSON(json)
|
|
|
|
|
|
library(gdalcubes)
|
|
# set gdalcubes options
|
|
do.call(gdalcubes_options,args = j$gdalcubes_options)
|
|
|
|
# set GDAL config options
|
|
gdal_options = j$gdal_options
|
|
if (!is.null(gdal_options)) {
|
|
for (key in names(gdal_options)) {
|
|
gdalcubes_set_gdal_config(key, gdal_options[key])
|
|
}
|
|
}
|
|
gdalcubes_set_gdal_config("CPL_TMPDIR", tempdir()) # use separate dirs for temporary files
|
|
|
|
gdalcubes:::gc_exec_worker(j$cube, j$worker_id, j$worker_count, j$workdir, gdalcubes_options()$ncdf_compression_level)
|
|
|