Or: Or

OrR Documentation

Or

Description

Or

Or

Format

R6Class object.

Value

Object of R6Class for modelling an Or operator

Super classes

ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryLogicOpType -> Or

Methods

Public methods

Inherited methods

Method new()

Initializes an Or expression

Usage
Or$new(...)
Arguments
...

list of objects of class OGCExpression


Method clone()

The objects of this class are cloneable with this method.

Usage
Or$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Author(s)

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Examples

  expr1 <- PropertyIsEqualTo$new(PropertyName = "property1", Literal = "value1")
  expr2 <- PropertyIsEqualTo$new(PropertyName = "property2", Literal = "value2")
  or <- Or$new(expr1,expr2)
  or_xml <- or$encode() #see how it looks like in XML


ows4R documentation built on Sept. 1, 2023, 5:09 p.m.