Description Usage Arguments Details Value Author(s) See Also Examples
These functions can be used to access the supported parameters for a range of settings of a SOS connection.
version |
The SOS specification version. |
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"
.
A list of supported values for the respective parameter.
Daniel Nuest daniel.nuest@uni-muenster.de
See Defaults
for default values of parameters.
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()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.