Last updated on 2025-12-03 05:50:14 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 | 18.61 | 230.54 | 249.15 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.3.21 | 77.00 | 496.61 | 573.61 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.3.21 | 30.00 | 254.67 | 284.67 | OK | |
| r-devel-windows-x86_64 | 0.3.10 | 31.00 | 272.00 | 303.00 | OK | |
| r-patched-linux-x86_64 | 0.3.10 | 31.96 | 250.39 | 282.35 | ERROR | |
| r-release-linux-x86_64 | 0.3.21 | 28.00 | 308.22 | 336.22 | 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 | 42.00 | 298.00 | 340.00 | ERROR |
Version: 0.3.10
Check: tests
Result: ERROR
Running ‘multiResGrid.R’ [9s/12s]
Running the tests in ‘tests/multiResGrid.R’ failed.
Complete output:
> s1 = Sys.time()
> library(MRG)
> # Neccessary to silence sf startup messages
> suppressMessages(library(sf))
> library(giscoR)
Error in library(giscoR) : there is no package called 'giscoR'
Execution halted
Flavor: r-patched-linux-x86_64
Version: 0.3.21
Check: tests
Result: ERROR
Running 'multiResGrid.R' [15s]
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