| OGCFilter {ows4R} | R Documentation |
OGCFilter
Description
OGCFilter
OGCFilter
Format
R6Class object.
Value
Object of R6Class for modelling an OGC Filter
Super class
ows4R::OGCAbstractObject -> OGCFilter
Public fields
exprOGC expression
Methods
Public methods
Inherited methods
ows4R::OGCAbstractObject$ERROR()ows4R::OGCAbstractObject$INFO()ows4R::OGCAbstractObject$WARN()ows4R::OGCAbstractObject$encode()ows4R::OGCAbstractObject$getClass()ows4R::OGCAbstractObject$getClassName()ows4R::OGCAbstractObject$getNamespaceDefinition()ows4R::OGCAbstractObject$isFieldInheritedFrom()ows4R::OGCAbstractObject$logger()ows4R::OGCAbstractObject$print()
Method new()
Initializes an object of class OGCFilter.
Usage
OGCFilter$new(expr, filterVersion = "1.1.0")
Arguments
exprobject of class OGCExpression
filterVersionOGC filter version. Default is "1.1.0"
Method setFilterVersion()
Sets the OGC filter version
Usage
OGCFilter$setFilterVersion(filterVersion)
Arguments
filterVersionOGC filter version
Method clone()
The objects of this class are cloneable with this method.
Usage
OGCFilter$clone(deep = FALSE)
Arguments
deepWhether to make a deep clone.
Author(s)
Emmanuel Blondel <emmanuel.blondel1@gmail.com>
Examples
expr <- PropertyIsEqualTo$new(PropertyName = "property", Literal = "value")
not <- Not$new(expr)
not_xml <- not$encode() #see how it looks like in XML
[Package ows4R version 0.4 Index]