Skip to content

PyTemporalPropList #

Bases: object

history property #

Update history (one history per underlying entity).

Returns:

Type Description
HistoryIterable

__eq__(value) #

Return self==value.

__ge__(value) #

Return self>=value.

__gt__(value) #

Return self>value.

__iter__() #

Implement iter(self).

__le__(value) #

Return self<=value.

__len__() #

Return len(self).

__lt__(value) #

Return self<value.

__ne__(value) #

Return self!=value.

__repr__() #

Return repr(self).

at(t) #

Value of each entity's property at the given time (latest update at or before t).

Parameters:

Name Type Description Default
t TimeInput

the time at which to evaluate the property.

required

Returns:

Type Description
PyPropValueList

collect() #

Materialise the iterable as a Python list.

Returns:

Type Description
list

items() #

Per-entity list of (time, value) pairs across each entity's history.

Returns:

Type Description
PyPropHistItemsList

value() #

Latest value of each entity's property.

Returns:

Type Description
PyPropValueList

values() #

Per-entity list of property values across each entity's history.

Returns:

Type Description
PyPropHistValueList