There was an error while loading. Please reload this page.
1 parent ccb66d2 commit b3cf104Copy full SHA for b3cf104
1 file changed
src/ert/config/_observations.py
@@ -41,6 +41,10 @@ class HistoryObservation(ObservationError):
41
42
@property
43
def key(self) -> str:
44
+ """The :term:`summary key` to be fetched from :ref:`refcase`."""
45
+ # For history observations the key is also the name, ie.
46
+ # "HISTORY_OBSERVATION FOPR" means to add the values from
47
+ # the summary vector FOPRH in refcase as observations.
48
return self.name
49
50
@classmethod
@@ -85,7 +89,7 @@ class ObservationDate:
85
89
class _SummaryValues:
86
90
name: str
87
91
value: float
88
- key: str
92
+ key: str #: The :term:`summary key` in the summary response
93
94
95
@dataclass
0 commit comments