Last updated on 2026-04-10 01:50:31 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.3.1 | 4.07 | 72.04 | 76.11 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.3.1 | 3.42 | 53.99 | 57.41 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.3.1 | 8.00 | 118.99 | 126.99 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.3.1 | 8.00 | 123.29 | 131.29 | OK | |
| r-devel-macos-arm64 | 0.3.1 | 1.00 | 24.00 | 25.00 | OK | |
| r-devel-windows-x86_64 | 0.3.1 | 7.00 | 85.00 | 92.00 | ERROR | |
| r-patched-linux-x86_64 | 0.3.1 | 4.23 | 68.15 | 72.38 | OK | |
| r-release-linux-x86_64 | 0.3.1 | 3.84 | 66.13 | 69.97 | OK | |
| r-release-macos-arm64 | 0.3.1 | OK | ||||
| r-release-macos-x86_64 | 0.3.1 | 3.00 | 77.00 | 80.00 | OK | |
| r-release-windows-x86_64 | 0.3.1 | 6.00 | 86.00 | 92.00 | OK | |
| r-oldrel-macos-arm64 | 0.3.1 | OK | ||||
| r-oldrel-macos-x86_64 | 0.3.1 | 3.00 | 87.00 | 90.00 | OK | |
| r-oldrel-windows-x86_64 | 0.3.1 | 8.00 | 110.00 | 118.00 | OK |
Version: 0.3.1
Check: examples
Result: ERROR
Running examples in 'sftime-Ex.R' failed
The error most likely occurred in:
> ### Name: st_join
> ### Title: Spatial join, spatial filter for 'sftime' objects
> ### Aliases: st_join st_join.sftime st_filter.sftime
>
> ### ** Examples
>
> g1 <- st_sfc(st_point(c(1,1)), st_point(c(2,2)), st_point(c(3,3)))
> x1 <- st_sftime(a = 1:3, geometry = g1, time = Sys.time())
>
> g2 <- st_sfc(st_point(c(10,10)), st_point(c(2,2)), st_point(c(2,2)), st_point(c(3,3)))
> x2 <- st_sftime(a = 11:14, geometry = g2, time = Sys.time())
>
> ## st_join
>
> # left spatial join with st_intersects
> st_join(x1, x2)
Spatiotemporal feature collection with 4 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 1 ymin: 1 xmax: 3 ymax: 3
CRS: NA
Time column with classes: 'POSIXct', 'POSIXt'.
Ranging from 2026-04-08 09:50:25.15647 to 2026-04-08 09:50:25.15647.
a.x a.y time.y geometry time.x
1 1 NA <NA> POINT (1 1) 2026-04-08 09:50:25
2 2 12 2026-04-08 09:50:25 POINT (2 2) 2026-04-08 09:50:25
2.1 2 13 2026-04-08 09:50:25 POINT (2 2) 2026-04-08 09:50:25
3 3 14 2026-04-08 09:50:25 POINT (3 3) 2026-04-08 09:50:25
>
> # inner spatial join with st_intersects
> st_join(x1, x2, left = FALSE)
Spatiotemporal feature collection with 3 features and 3 fields
Geometry type: POINT
Dimension: XY
Bounding box: xmin: 2 ymin: 2 xmax: 3 ymax: 3
CRS: NA
Time column with classes: 'POSIXct', 'POSIXt'.
Ranging from 2026-04-08 09:50:25.15647 to 2026-04-08 09:50:25.15647.
a.x a.y time.y geometry time.x
2 2 12 2026-04-08 09:50:25 POINT (2 2) 2026-04-08 09:50:25
2.1 2 13 2026-04-08 09:50:25 POINT (2 2) 2026-04-08 09:50:25
3 3 14 2026-04-08 09:50:25 POINT (3 3) 2026-04-08 09:50:25
>
> ## st_filter
>
> st_filter(x1, x2)
Flavor: r-devel-windows-x86_64