pub struct Tracked {
pub track_quality_wrapper: Option<i64>,
pub sensor_hits: Option<i64>,
pub number_of_objects: Option<UInt32Range>,
pub radar_cross_section: Option<f64>,
pub last_measurement_time: Option<DateTime<Utc>>,
pub line_of_bearing: Option<LineOfBearing>,
}Expand description
Available for Entities that are tracked.
Fields§
§track_quality_wrapper: Option<i64>Quality score, 0-15, nil if none
sensor_hits: Option<i64>Sensor hits aggregation on the tracked entity.
number_of_objects: Option<UInt32Range>Estimated number of objects or units that are represented by this entity. Known as Strength in certain contexts (Link16) if UpperBound == LowerBound; (strength = LowerBound) If both UpperBound and LowerBound are defined; strength is between LowerBound and UpperBound (represented as string “Strength: 4-5”) If UpperBound is defined only (LowerBound unset), Strength ≤ UpperBound If LowerBound is defined only (UpperBound unset), LowerBound ≤ Strength 0 indicates unset.
radar_cross_section: Option<f64>The radar cross section (RCS) is a measure of how detectable an object is by radar. A large RCS indicates an object is more easily detected. The unit is “decibels per square meter,” or dBsm
last_measurement_time: Option<DateTime<Utc>>Timestamp of the latest tracking measurement for this entity.
line_of_bearing: Option<LineOfBearing>The relative position of a track with respect to the entity that is tracking it. Used for tracks that do not yet have a 3D position. For this entity (A), being tracked by some entity (B), this LineOfBearing would express a ray from B to A.