And: And

AndR Documentation

And

Description

And

And

Format

R6Class object.

Value

Object of R6Class for modelling an And operator

Super classes

ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryLogicOpType -> And

Methods

Public methods

Inherited methods

Method new()

Initializes an And expression

Usage
And$new(...)
Arguments
...

list of objects of class OGCExpression


Method clone()

The objects of this class are cloneable with this method.

Usage
And$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")
  and <- And$new(expr1,expr2)
  and_xml <- and$encode() #see how it looks like in XML


eblondel/ows4R documentation built on March 26, 2024, 6:20 a.m.