Observation
Bases: Base
Represents an observation.
This ORM class represents an observation. For the time being,
apart from value (in string format) and timestamp, we store Foreign
Keys pointing to the other dimension of the observations. These include,
the abstract observable, sensor, unit of measurement and station.
Attributes:
| Name | Type | Description |
|---|---|---|
value |
The measurement as string |
|
timestamp |
When the measurement was taken |
|
junction_id |
FK to the corresponding junction table. This tables holds further info about the corresponding unit of measurement, station and sensor |
Source code in edam/reader/models/observation.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | |