Skip to content

Commit

Permalink
#9 fix WCSCoverageSpatialDomain xml decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Feb 14, 2022
1 parent 9ecdb3e commit d9b52a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/WCSCoverageSpatialDomain.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ WCSCoverageSpatialDomain <- R6Class("WCSCoverageSpatialDomain",
if(startsWith(serviceVersion, "1.1")){
bboxXML <- getNodeSet(xmlDoc(xmlObj), "//ns:BoundingBox", ns)
bboxes <- lapply(bboxXML, function(x){
return(OWSBoundingBox$new(xmlObj = x, owsVersion = owsVersion, serviceVersion = serviceVersion))
return(OWSBoundingBox$new(xml = x, owsVersion = owsVersion, serviceVersion = serviceVersion))
})
gridcrs <- NULL
gridcrsXML <- getNodeSet(xmlDoc(xmlObj), "//ns:GridCRS", wcsNs)
Expand Down

0 comments on commit d9b52a9

Please sign in to comment.