Supported: Functions to Access Supported Features of the Current sos4R...

Description Usage Arguments Details Value Author(s) See Also Examples

Description

These functions can be used to access the supported parameters for a range of settings of a SOS connection.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10

Arguments

version

The SOS specification version.

Details

Supported features, like connection methods and supported response modes, are accessible by functions starting with "SosSupported". See the examples section for a complete list of these functions.

It is encouraged to rather use these methods than manually set character values for compatibility with future versions, e.g. SosSupportedBindings()[[1]] instead of directly writing "GET".

Value

A list of supported values for the respective parameter.

Author(s)

Daniel Nuest daniel.nuest@uni-muenster.de

See Also

See Defaults for default values of parameters.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
# The supported operations of the specification
SosSupportedOperations()

# HTTP connection methods supported by this sos4R implementation
SosSupportedBindings()
myBinding <- SosSupportedBindings()[[1]]
myBinding

# Formats, modes and models that can be processed by this implementation
SosSupportedResponseFormats()
SosSupportedResultModels()
SosSupportedResponseModes()

# Operators and operands for filtering in a GetObservation request
SosSupportedTemporalOperators()
SosSupportedSpatialOperators()
SosSupportedGeometryOperands()
SosSupportedComparisonOperators()

sos4R documentation built on July 9, 2020, 5:07 p.m.