inputs-webprocess: inputs of webprocess

Description Usage Arguments Examples

Description

The webprocess inputs are a list of parameter names and their associated values. These inputs are specific to an individual algorithm used by the webprocess, and are pulled in from the web with defaults. An NA value in an input field means that this parameter will be left out of the web processing request. NULL values are required fields for the post and must be populated. For some values, there are defaults used if NULL (e.g., the mean for 'STATISTIC' is "mean"). Only characters can be used in input fields, but booleans are changed to characters as 'true' and 'false'.

access or set the inputs of a webprocess

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
inputs(.Object, ...) <- value

inputs(.Object, ..., value)

## S4 method for signature 'webprocess'
inputs(.Object, ..., value)

## S4 method for signature 'xml_document'
inputs(.Object, ..., value)

## S4 replacement method for signature 'webprocess,missing'
inputs(.Object, ...) <- value

## S4 replacement method for signature 'webprocess,character'
inputs(.Object, ...) <- value

## S4 replacement method for signature 'webprocess,list'
inputs(.Object, ...) <- value

Arguments

.Object

a webprocessing object

...

arguments matching fields in .Object's processInputs slot

value

a field pair for .Object processInputs

.Object

a webprocessing object

...

arguments matching fields in .Object's processInputs slot

Examples

1
2
3
4
5
6
7
wp <- webprocess(DELIMITER = 'TAB')
inputs(wp)

inputs(wp) <- list(DELIMITER = 'COMMA', SUMMARIZE_FEATURE_ATTRIBUTE = 'false')
inputs(wp)
inputs(wp, "DELIMITER")
inputs(wp, "DELIMITER") <- "TAB"

eric-erki/geoknife documentation built on Dec. 31, 2019, 12:54 a.m.