-
👋 @eblondel! I'm coming with a WCS question this time. In a package we haven't touched in a while we're now getting test failures because coverage isn't obtained. Here is a reprex of what our code looks like and returns: service_url <- "https://geoserver.emodnet-physics.eu/geoserver/wcs"
wcs <- ows4R::WCSClient$new(
service_url,
serviceVersion = "2.0.1",
headers = c("User-Agent" = "EMODnetWCS R package https://github.com/EMODnet/EMODnetWCS")
)
#> Loading ISO 19139 XML schemas...
#> Loading ISO 19115-3 XML schemas...
#> Loading ISO 19139 codelists...
capabilities <- wcs$getCapabilities()
capabilities$getCoverageSummaries()
#> list() Created on 2025-02-10 with reprex v2.1.1 Is this the wrong way to get coverage with the most recent version of ows4R? Thank you in advance for any hindsight. |
Beta Was this translation helpful? Give feedback.
Answered by
eblondel
Feb 20, 2025
Replies: 1 comment 2 replies
-
👋 @eblondel friendly reminder 😸 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yeah, I was on holidays, far from my laptop.
Quick check:
logger = DEBUG
in yourWCSClient$new
call, it is in general very informativecapabilities$getCoverageSummaries()
is the expected result.