Last updated on 2026-07-15 03:07:44 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.0.2 | 2.62 | 40.62 | 43.24 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.0.2 | 2.22 | 29.99 | 32.21 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.0.2 | 80.38 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 1.0.2 | 92.54 | OK | |||
| r-devel-windows-x86_64 | 1.0.2 | 7.00 | 63.00 | 70.00 | OK | |
| r-patched-linux-x86_64 | 1.0.2 | 2.95 | 35.47 | 38.42 | OK | |
| r-release-linux-x86_64 | 1.0.2 | 2.42 | 35.38 | 37.80 | OK | |
| r-release-macos-arm64 | 1.0.2 | 1.00 | 32.00 | 33.00 | OK | |
| r-release-macos-x86_64 | 1.0.2 | 2.00 | 73.00 | 75.00 | OK | |
| r-release-windows-x86_64 | 1.0.2 | 6.00 | 67.00 | 73.00 | OK | |
| r-oldrel-macos-arm64 | 1.0.2 | 1.00 | 31.00 | 32.00 | OK | |
| r-oldrel-macos-x86_64 | 1.0.2 | 2.00 | 87.00 | 89.00 | OK | |
| r-oldrel-windows-x86_64 | 1.0.2 | 7.00 | 69.00 | 76.00 | OK |
Version: 1.0.2
Check: examples
Result: ERROR
Running examples in ‘rerddapUtils-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: griddap_season
> ### Title: Title Get ERDDAP gridded data restricted to a given season of
> ### the year
> ### Aliases: griddap_season
>
> ### ** Examples
>
> myURL <- "https://coastwatch.pfeg.noaa.gov/erddap/"
> response <- try(httr::HEAD(myURL, httr::timeout(20)), silent = TRUE)
> if (inherits(response, "try-error")) {
+ message("The ERDDAP\u2122 server is not responding")
+ } else
+ {
+ data(wind_info)
+ season <- c('03-01', '03-04')
+ season_extract <- try(griddap_season(wind_info,
+ time = c('2015-01-01','2016-01-01'),
+ latitude = c(20, 21),
+ longitude = c(220, 221),
+ fields = 'mod_current',
+ season = season
+ ), silent = TRUE)
+ if (inherits(season_extract, "try-error")) {
+ message("Unable to retrieve data from the ERDDAP\u2122 server")
+ }
+ }
info() output passed to x; setting base url to: https://coastwatch.pfeg.noaa.gov/erddap
info() output passed to x; setting base url to: https://coastwatch.pfeg.noaa.gov/erddap
Curl request failed to get file: Could not connect to server [coastwatch.pfeg.noaa.gov]:
Failed to connect to coastwatch.pfeg.noaa.gov port 443 after 185 ms: Could not connect to server
Flavor: r-devel-linux-x86_64-debian-gcc