Last updated on 2025-12-07 01:48:43 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.3.21 | 32.54 | 331.61 | 364.15 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.3.21 | 19.37 | 218.30 | 237.67 | WARN | |
| r-devel-linux-x86_64-fedora-clang | 0.3.21 | 81.00 | 488.07 | 569.07 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.3.21 | 95.00 | 443.15 | 538.15 | OK | |
| r-devel-windows-x86_64 | 0.3.21 | 29.00 | 251.00 | 280.00 | OK | |
| r-patched-linux-x86_64 | 0.3.21 | 31.99 | 308.82 | 340.81 | OK | |
| r-release-linux-x86_64 | 0.3.21 | 28.22 | 307.43 | 335.65 | OK | |
| r-release-macos-arm64 | 0.3.21 | 7.00 | 64.00 | 71.00 | OK | |
| r-release-macos-x86_64 | 0.3.21 | 50.00 | 370.00 | 420.00 | OK | |
| r-release-windows-x86_64 | 0.3.21 | 29.00 | 256.00 | 285.00 | OK | |
| r-oldrel-macos-arm64 | 0.3.21 | 7.00 | 70.00 | 77.00 | OK | |
| r-oldrel-macos-x86_64 | 0.3.21 | 48.00 | 420.00 | 468.00 | OK | |
| r-oldrel-windows-x86_64 | 0.3.21 | 41.00 | 297.00 | 338.00 | ERROR |
Version: 0.3.21
Check: package dependencies
Result: WARN
Cannot process vignettes
Packages suggested but not available for checking:
'knitr', 'rmarkdown', 'bookdown', 'kableExtra'
VignetteBuilder package required for checking but not installed: ‘knitr’
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.3.21
Check: package vignettes
Result: NOTE
Package has ‘vignettes’ subdirectory but apparently no vignettes.
Perhaps the ‘VignetteBuilder’ information is missing from the
DESCRIPTION file?
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.3.21
Check: tests
Result: ERROR
Running 'multiResGrid.R' [16s]
Running the tests in 'tests/multiResGrid.R' failed.
Complete output:
> s1 = Sys.time()
> library(MRG)
> library(tidyr)
> library(dplyr)
Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
> # Neccessary to silence sf startup messages
> suppressMessages(library(sf))
> if (require(giscoR, quietly = TRUE)) {
+ # Read nuts borders, used for extracting smaller data set
+ borders = gisco_get_nuts(nuts_level = 2)
+ dkb = borders[borders$CNTR_CODE == "DK",] %>% st_transform(crs = 3035)
+ } else {
+ mrgpath = find.package("MRG")
+ load(file.path(mrgpath, "ex/dkb.rda"))
+ }
> #'
> # These are SYNTHETIC agricultural FSS data
> data(ifs_dk) # Census data
> ifs_weight = ifs_dk %>% dplyr::filter(Sample == 1) # Extract weighted subsample
>
> # Create spatial data
> ifg = fssgeo(ifs_dk, locAdj = "LL")
> fsg = fssgeo(ifs_weight, locAdj = "LL")
>
> ifg$dkb = st_join(ifg, dkb)$NUTS_ID
> ifg = ifg[!is.na(ifg$dkb) & ifg$dkb == "DK01",]
> fsg$dkb = st_join(fsg, dkb)$NUTS_ID
> fsg = fsg[!is.na(fsg$dkb) & fsg$dkb == "DK01",]
>
> ifg$ft = as.numeric(substr(ifg$FARMTYPE, 3, 4))^2
>
> s2 = Sys.time()
> #'
> # Set the base resolutions, and create a hierarchical list with gridded data
> ress = c(1,5,10,20,40)*1000
> # Gridding Utilized agricultural area (UAA), organic UAA and ft together
> ifl = gridData(ifg, c("UAA", "UAAXK0000_ORG", "ft"), res = ress)
Error: [rast] empty srs
In addition: Warning message:
PROJ: proj_create_from_database: Cannot find proj.db (GDAL error 1)
Execution halted
Flavor: r-oldrel-windows-x86_64