offline
OfflineEnvironment()
Bases: TransformedObservable
Base class for offline environments.
Offline environments are used to represent datasets. They can be used to represent static datasets. Offline environments can be transformed and joined together to create new datasets.
Initialize the offline environment.
Source code in src/flowcean/core/environment/offline.py
19 20 21 |
|
chain(*other)
Chain this offline environment with other offline environments.
Chaining offline environments will create a new incremental environment that will first observe the data from this environment and then the data from the other environments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other
|
OfflineEnvironment
|
The other offline environments to chain. |
()
|
Returns:
Type | Description |
---|---|
ChainedOfflineEnvironments
|
The chained offline environments. |
Source code in src/flowcean/core/environment/offline.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
|
__add__(other)
Shorthand for chain
.
Source code in src/flowcean/core/environment/offline.py
42 43 44 |
|