Skip to content

Commit

Permalink
#9 fix over OWSBoundingBox spatial domain
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Feb 14, 2022
1 parent a3a728d commit 9ecdb3e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 22 deletions.
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))
return(OWSBoundingBox$new(xmlObj = x, owsVersion = owsVersion, serviceVersion = serviceVersion))
})
gridcrs <- NULL
gridcrsXML <- getNodeSet(xmlDoc(xmlObj), "//ns:GridCRS", wcsNs)
Expand Down
6 changes: 3 additions & 3 deletions R/WPSProcessDescription.R
Original file line number Diff line number Diff line change
Expand Up @@ -154,19 +154,19 @@ WPSProcessDescription <- R6Class("WPSProcessDescription",
},

#'@description Get process identifier
#'@param the identifier, object of class \code{character}
#'@return the identifier, object of class \code{character}
getIdentifier = function(){
return(private$identifier)
},

#'@description Get process title
#'@param the title, object of class \code{character}
#'@return the title, object of class \code{character}
getTitle = function(){
return(private$title)
},

#'@description Get process abstract
#'@param the abstract, object of class \code{character}
#'@return the abstract, object of class \code{character}
getAbstract = function(){
return(private$abstract)
},
Expand Down
24 changes: 6 additions & 18 deletions man/WPSProcessDescription.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9ecdb3e

Please sign in to comment.