- General Client
- Mission Database
- TM/TC Processing
- Archive
- Link Management
- Object Storage
- File Transfer
- Time Correlation (TCO)
- Timeline
- Examples
Model¶
- class yamcs.client.ItemBand(proto=None)¶
Bases:
Band
Show a selection of timeline items.
- property frozen: bool¶
Fix this line to the top of the view. Frozen bands are always rendered above other bands.
- property space_between_items: int¶
In case of multilining, this indicates the minimum horizontal space between items. If an item does not meet this treshold, it gets rendered on a different line.
- class yamcs.client.ParameterPlot(proto=None)¶
Bases:
Band
Plot the values of a numeric parameter.
New in version 1.11.2: Compatible with Yamcs 5.11.2 onwards
- property frozen: bool¶
Fix this line to the top of the view. Frozen bands are always rendered above other bands.
- property maximum: Optional[float]¶
Maximum value to show on Y-axis. Set to
None
for fitting actual data
- class yamcs.client.ParameterStateBand(proto=None)¶
Bases:
Band
Show state transitions of a parameter
New in version 1.11.2: Compatible with Yamcs 5.11.2 onwards
- property frozen: bool¶
Fix this line to the top of the view. Frozen bands are always rendered above other bands.
- mappings: List[Union[ValueMapping, RangeMapping]]¶
Map engineering values to a label and/or color. Mappings are applied in order.
- class yamcs.client.RangeMapping(start: float, end: float, label: Optional[str] = None, color: Optional[str] = None)¶
Bases:
object
Maps a value to a label and/or color.
- class yamcs.client.TimeRuler(proto=None)¶
Bases:
Band
Displays absolute time, formatted in a timezone of choice.
- property timezone: str¶
IANA timezone name.
Corresponds with the third column of the following table: https://data.iana.org/time-zones/data/zone1970.tab
In addition, the name UTC is supported.
- class yamcs.client.Trace(parameter: str, line_color: str, visible: bool = True, line_width: int = 1, fill: bool = False, fill_color: str = '#dddddd', min_max: bool = False, min_max_opacity: float = 0.17)¶
Bases:
object
A trace on a
ParameterPlot
.