inputs-webprocess: inputs of webprocess

inputs<-R Documentation

inputs of webprocess

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

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

Examples

## Not run: 
wp <- webprocess(DELIMITER = 'TAB')
inputs(wp)

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

## End(Not run)

geoknife documentation built on July 9, 2023, 5:31 p.m.