Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Jul 9, 2021
1 parent 36fdec9 commit 80cc927
Show file tree
Hide file tree
Showing 15 changed files with 33 additions and 22 deletions.
2 changes: 1 addition & 1 deletion R/WPSDescribeProcess.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#' @section Methods:
#' \describe{
#' \item{\code{new(capabilities, op, url, version, identifier, logger, ...)}}{
#' This method is used to instantiate a WPSDescribeProcess object
#' This method is used to instantiate a \code{WPSDescribeProcess} object
#' }
#' }
#'
Expand Down
11 changes: 4 additions & 7 deletions R/WPSExecuteResponse.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
#' \item{\code{getProcessOutputs()}}{
#' Get the process output(s)
#' }
#' \item{\code{decode()}}{
#' Decodes WPS Execute response from XML
#' }
#' }
#'
#'
Expand All @@ -29,8 +32,7 @@ WPSExecuteResponse <- R6Class("WPSExecuteResponse",
inherit = OGCAbstractObject,
private = list(
xmlElement = "ExecuteResponse",
xmlNamespace = c(wps = "http://www.opengis.net/wps"),
xmlObj = NULL
xmlNamespace = c(wps = "http://www.opengis.net/wps")
),
public = list(
process = NULL,
Expand Down Expand Up @@ -64,11 +66,6 @@ WPSExecuteResponse <- R6Class("WPSExecuteResponse",
self$processOutputs <- lapply(outputsXML, function(x){WPSOutput$new(xmlObj = x)})
names(self$processOutputs) <- NULL
}
},

#
xml = function(){
return(private$xmlObj)
}
)
)
2 changes: 1 addition & 1 deletion R/WPSFormat.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#' Set if default format or not
#' }
#' \item{\code{isDefault()}}{
#' Is default format?
#' Is default format
#' }
#' }
#'
Expand Down
5 changes: 4 additions & 1 deletion R/WPSLiteralData.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
#' @section Methods:
#' \describe{
#' \item{\code{new(xmlObj, value)}}{
#' This method is used to instantiate a WPSLiteralData object
#' This method is used to instantiate a \code{WPSLiteralData} object
#' }
#' \item{\code{decode()}}{
#' Decodes WPS input from XML
#' }
#' }
#'
Expand Down
7 changes: 5 additions & 2 deletions R/WPSOutput.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@
#'
#' @section Methods:
#' \describe{
#' \item{\code{new(identifier, data)}}{
#' This method is used to instantiate a WPSOutput object
#' \item{\code{new(xmlObj, identifier, title, data)}}{
#' This method is used to instantiate a \code{WPSOutput} object
#' }
#' \item{\code{decode()}}{
#' Decodes WPS output from XML
#' }
#' }
#'
Expand Down
1 change: 0 additions & 1 deletion R/WPSProcess.R
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ WPSProcess <- R6Class("WPSProcess",
}

client = private$capabilities$getClient()
print(client$getHeaders())
processExecute <- WPSExecute$new(capabilities = private$capabilities, op = op, private$url, private$version, private$identifier,
dataInputs = dataInputs, responseForm = responseForm, language = language,
user = client$getUser(), pwd = client$getPwd(), token = client$getToken(), headers = client$getHeaders(),
Expand Down
2 changes: 1 addition & 1 deletion R/WPSProcessDescription.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#'
#' @section Methods:
#' \describe{
#' \item{\code{new(xmlObj, capabilities, version, logger)}}{
#' \item{\code{new(xmlObj, version, logger)}}{
#' This method is used to instantiate a \code{WPSProcessDescription} object
#' }
#' \item{\code{getIdentifier()}}{
Expand Down
2 changes: 1 addition & 1 deletion R/ows4R.R
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#' Type: \tab Package\cr
#' Version
#' : \tab 0.2\cr
#' Date: \tab 2021-07-090\cr
#' Date: \tab 2021-07-09\cr
#' License: \tab MIT\cr
#' LazyLoad: \tab yes\cr
#' }
Expand Down
2 changes: 1 addition & 1 deletion man/WPSDescribeProcess.Rd

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

3 changes: 3 additions & 0 deletions man/WPSExecuteResponse.Rd

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

2 changes: 1 addition & 1 deletion man/WPSFormat.Rd

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

5 changes: 4 additions & 1 deletion man/WPSLiteralData.Rd

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

7 changes: 5 additions & 2 deletions man/WPSOutput.Rd

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

2 changes: 1 addition & 1 deletion man/WPSProcessDescription.Rd

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

2 changes: 1 addition & 1 deletion man/ows4R.Rd

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

0 comments on commit 80cc927

Please sign in to comment.