Point Detection¶
- class PointDetection(position, velocity, power)[source]¶
Bases:
Serializable
A single radar point detection.
- Parameters:
- Raises:
ValueError – If position is not three-dimensional. If velocity is not three-dimensional. If power is smaller or equal to zero.
- classmethod Deserialize(process)[source]¶
Deserialize an object’s state.
Objects cannot be deserialized directly, instead a
Factory
must be instructed to carry out the deserialization process.- Parameters:
process (
DeserializationProcess
) – The current stage of the deserialization process. This object is generated by theFactory
and provides an interface to deserialization methods supporting multiple backends.- Return type:
- Returns:
The deserialized object.
- classmethod FromSpherical(zenith, azimuth, range, velocity, power)[source]¶
Generate a point detection from radar cube spherical coordinates.
- Parameters:
- Return type:
- serialize(process)[source]¶
Serialize this object’s state.
Objects cannot be serialized directly, instead a
Factory
must be instructed to carry out the serialization process.- Parameters:
process (
SerializationProcess
) – The current stage of the serialization process. This object is generated by theFactory
and provides an interface to serialization methods supporting multiple backends.- Return type: