pub struct PositionMemory {
pub name: PositionName,
pub latitude: f64,
pub longitude: f64,
pub altitude: f64,
}Expand description
GPS position memory slot.
The TH-D75 provides 5 “My Position” slots (“My Position 1” through “My Position 5”) for storing known locations. These can be used as manual position references when GPS is unavailable.
Per Operating Tips §5.14.4: the radio also has 100 general-purpose position memory slots (separate from these 5 “My Position” entries) that store latitude, longitude, altitude, timestamp, name, and APRS icon. A position memory entry can be copied to one of these “My Position” slots (§5.14.5) or to an APRS Object for transmission.
Fields§
§name: PositionNameDescriptive name for the position (up to 8 characters).
latitude: f64Latitude in decimal degrees (positive = North, negative = South). Range: -90.0 to +90.0.
longitude: f64Longitude in decimal degrees (positive = East, negative = West). Range: -180.0 to +180.0.
altitude: f64Altitude in meters above mean sea level.
Trait Implementations§
Source§impl Clone for PositionMemory
impl Clone for PositionMemory
Source§fn clone(&self) -> PositionMemory
fn clone(&self) -> PositionMemory
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more