aprs-decode 0.1.2

Robust APRS packet parsing — text (APRS-IS) and binary (AX.25) input
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
use crate::error::AprsError;
use crate::types::compressed::{Altitude, CompressedCs};
use crate::types::lonlat::{Latitude, Longitude, Precision};
use crate::types::symbol::Symbol;
use std::ops::RangeInclusive;

/// DAO (Datum Ambiguity Override) precision extension parsed from the comment field.
///
/// When present, DAO provides sub-hundredth-of-a-minute precision beyond what the
/// standard DDmm.mm format can encode. The offsets are applied to lat/lon at parse
/// time so callers always receive refined coordinates.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Dao {
    /// Human-readable form `!WXY!`: X and Y are decimal digits 0–9 encoding an extra
    /// digit of minute resolution (thousandths of a minute ≈ 1.85 m).
    HumanReadable { lat_digit: u8, lon_digit: u8 },
    /// Base-91 form `!wxy!`: two base-91 characters encoding the sub-hundredth position
    /// within the current cell (≈ 0.2 m resolution).
    Base91 { lat_offset: u8, lon_offset: u8 },
}

impl Dao {
    /// Latitude and longitude adjustments in degrees that refine the base position.
    /// These are always non-negative; the caller applies them in the direction of the
    /// base coordinate's sign.
    pub fn offsets_degrees(&self) -> (f64, f64) {
        match self {
            Dao::HumanReadable {
                lat_digit,
                lon_digit,
            } => {
                // each digit = 0.001 minutes = 0.001/60 degrees
                (
                    (*lat_digit as f64) / 60_000.0,
                    (*lon_digit as f64) / 60_000.0,
                )
            }
            Dao::Base91 {
                lat_offset,
                lon_offset,
            } => {
                // value 0..90 → 0..0.01 minutes = 0..0.01/60 degrees
                (
                    (*lat_offset as f64) / (91.0 * 6000.0),
                    (*lon_offset as f64) / (91.0 * 6000.0),
                )
            }
        }
    }

    /// Decode a trailing DAO token of the form `!Xyy!` from the comment field.
    ///
    /// The DAO extension is, per spec, appended to the **end** of the comment. We
    /// therefore only accept it as the final non-whitespace token rather than
    /// scanning the whole comment for any `!..!` substring — the latter readily
    /// false-matches arbitrary comment text and would silently perturb the
    /// reported coordinates.
    pub(crate) fn find_in_comment(data: &[u8]) -> Option<Self> {
        let end = data.iter().rposition(|&b| !b.is_ascii_whitespace())? + 1;
        if end < 5 {
            return None;
        }
        Self::parse_token(&data[end - 5..end])
    }

    /// Decode a single 5-byte `!Xyy!` DAO token.
    ///
    /// The **case** of the datum letter `X` selects the encoding of the two data
    /// bytes (per `aprs.org/aprs12/datum.txt`):
    /// - uppercase (e.g. `W` = WGS84) → human-readable decimal digits `0`–`9`,
    /// - lowercase (e.g. `w` = WGS84) → base-91 encoded offsets.
    ///
    /// A space in a data position marks an unused axis (no added precision).
    fn parse_token(token: &[u8]) -> Option<Self> {
        if token.len() != 5 || token[0] != b'!' || token[4] != b'!' {
            return None;
        }
        let prefix = token[1];
        let d1 = token[2];
        let d2 = token[3];

        if prefix.is_ascii_uppercase() {
            return Some(Dao::HumanReadable {
                lat_digit: hr_digit(d1)?,
                lon_digit: hr_digit(d2)?,
            });
        }
        if prefix.is_ascii_lowercase() {
            return Some(Dao::Base91 {
                lat_offset: b91_digit(d1)?,
                lon_offset: b91_digit(d2)?,
            });
        }
        None
    }
}

/// Decode a human-readable DAO data byte: a decimal digit, or a space (unused → 0).
fn hr_digit(b: u8) -> Option<u8> {
    match b {
        b'0'..=b'9' => Some(b - b'0'),
        b' ' => Some(0),
        _ => None,
    }
}

/// Decode a base-91 DAO data byte (`!`..`{`), or a space (unused → 0).
fn b91_digit(b: u8) -> Option<u8> {
    match b {
        0x21..=0x7B => Some(b - 33),
        b' ' => Some(0),
        _ => None,
    }
}

/// A parsed APRS position, combining coordinates, symbol, and optional metadata.
///
/// DAO offsets (when present) are applied to `latitude` and `longitude` at parse
/// time — callers receive the most precise available value directly.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Position {
    pub latitude: Latitude,
    pub longitude: Longitude,
    pub precision: Precision,
    pub symbol: Symbol,
    /// The compressed csT block, or `None` for uncompressed positions.
    pub compressed_cs: Option<CompressedCs>,
    /// Altitude from `/A=NNNNNN` in the comment field. Not from compressed csT.
    pub altitude: Option<Altitude>,
    /// The raw DAO token, kept for round-trip fidelity.
    pub dao: Option<Dao>,
}

impl Position {
    pub fn latitude_bounding(&self) -> RangeInclusive<f64> {
        self.precision.range(self.latitude.value())
    }

    pub fn longitude_bounding(&self) -> RangeInclusive<f64> {
        self.precision.range(self.longitude.value())
    }

    /// Parse either a compressed or uncompressed position from the head of `b`.
    ///
    /// Returns `(remaining, position)` where `remaining` is the slice following the
    /// parsed position bytes (i.e. the comment field).
    pub(crate) fn parse(b: &[u8]) -> Result<(Option<&[u8]>, Self), AprsError> {
        if b.is_empty() {
            return Err(AprsError::UnsupportedPositionFormat);
        }
        if b[0].is_ascii_digit() {
            Self::parse_uncompressed(b)
        } else {
            Self::parse_compressed(b)
        }
    }

    fn parse_uncompressed(b: &[u8]) -> Result<(Option<&[u8]>, Self), AprsError> {
        if b.len() < 19 {
            return Err(AprsError::TruncatedPacket {
                expected: 19,
                got: b.len(),
            });
        }
        let (lat, precision) = Latitude::parse_uncompressed(&b[0..8])?;
        let symbol_table = b[8] as char;
        let lon = Longitude::parse_uncompressed(&b[9..18], precision)?;
        let symbol_code = b[18] as char;
        let symbol = Symbol::new(symbol_table, symbol_code);

        let comment = b.get(19..);
        let comment_bytes = comment.unwrap_or_default();

        let altitude = altitude_in_comment(comment_bytes);
        let dao = Dao::find_in_comment(comment_bytes);

        // Apply DAO offsets to refine coordinates
        let (lat, lon) = if let Some(ref d) = dao {
            let (dlat, dlon) = d.offsets_degrees();
            let lat_sign = if lat.value() >= 0.0 { 1.0 } else { -1.0 };
            let lon_sign = if lon.value() >= 0.0 { 1.0 } else { -1.0 };
            let new_lat = Latitude::new(lat.value() + lat_sign * dlat).unwrap_or(lat);
            let new_lon = Longitude::new(lon.value() + lon_sign * dlon).unwrap_or(lon);
            (new_lat, new_lon)
        } else {
            (lat, lon)
        };

        Ok((
            b.get(19..),
            Self {
                latitude: lat,
                longitude: lon,
                precision,
                symbol,
                compressed_cs: None,
                altitude,
                dao,
            },
        ))
    }

    fn parse_compressed(b: &[u8]) -> Result<(Option<&[u8]>, Self), AprsError> {
        if b.len() < 13 {
            return Err(AprsError::TruncatedPacket {
                expected: 13,
                got: b.len(),
            });
        }
        let symbol_table = b[0] as char;
        let lat = Latitude::parse_compressed(&b[1..5])?;
        let lon = Longitude::parse_compressed(&b[5..9])?;
        let symbol_code = b[9] as char;
        let symbol = Symbol::new(symbol_table, symbol_code);

        let cst = CompressedCs::parse(b[10], b[11], b[12])?;

        // Altitude from compressed csT (only when NmeaSource is Gga)
        let altitude = match &cst {
            CompressedCs::Altitude(a, _) => Some(Altitude::new(a.feet)),
            _ => None,
        };

        Ok((
            b.get(13..),
            Self {
                latitude: lat,
                longitude: lon,
                precision: Precision::default(),
                symbol,
                compressed_cs: Some(cst),
                altitude,
                dao: None,
            },
        ))
    }

    /// Encode as uncompressed position bytes (19 bytes: lat + sym_table + lon + sym_code).
    pub(crate) fn encode_uncompressed(&self, out: &mut Vec<u8>) {
        // DAO offsets are baked into `latitude`/`longitude` at parse time, and the DAO
        // token itself is preserved in the comment field (re-emitted on encode). The
        // base DDmm.mm field must therefore exclude the offset, or a decode→encode→decode
        // round-trip would apply it twice.
        let (lat, lon) = self.base_coords();
        lat.encode_uncompressed(out, self.precision);
        out.push(self.symbol.table as u8);
        lon.encode_uncompressed(out);
        out.push(self.symbol.code as u8);
    }

    /// Coordinates with any DAO refinement removed, matching the raw base position field.
    /// Mirrors the offset application in [`Position::parse_uncompressed`].
    fn base_coords(&self) -> (Latitude, Longitude) {
        let Some(ref d) = self.dao else {
            return (self.latitude, self.longitude);
        };
        let (dlat, dlon) = d.offsets_degrees();
        let lat = self.latitude.value();
        let lon = self.longitude.value();
        let lat_sign = if lat >= 0.0 { 1.0 } else { -1.0 };
        let lon_sign = if lon >= 0.0 { 1.0 } else { -1.0 };
        let base_lat = Latitude::new(lat - lat_sign * dlat).unwrap_or(self.latitude);
        let base_lon = Longitude::new(lon - lon_sign * dlon).unwrap_or(self.longitude);
        (base_lat, base_lon)
    }

    /// Encode as compressed position bytes (13 bytes: sym_table + lat(4) + lon(4) + sym_code + csT(3)).
    pub(crate) fn encode_compressed(&self, out: &mut Vec<u8>) {
        out.push(self.symbol.table as u8);
        self.latitude.encode_compressed(out);
        self.longitude.encode_compressed(out);
        out.push(self.symbol.code as u8);
        if let Some(ref cst) = self.compressed_cs {
            cst.encode(out);
        } else {
            // Fallback: no csT data — use space + sT placeholder
            out.extend_from_slice(b" sT");
        }
    }
}

/// Extract `/A=NNNNNN` altitude from a comment field.
pub(crate) fn altitude_in_comment(data: &[u8]) -> Option<Altitude> {
    let s = std::str::from_utf8(data).ok()?;
    let start = s.find("/A=")?;
    let rest = &s[start + 3..];
    let end = rest
        .find(|c: char| !c.is_ascii_digit())
        .unwrap_or(rest.len());
    let feet: u32 = rest[..end].parse().ok()?;
    Some(Altitude::new(feet as f64))
}

#[cfg(test)]
mod tests {
    use super::*;
    use approx::assert_relative_eq;

    #[test]
    fn uncompressed_basic() {
        let (rem, pos) = Position::parse(b"4903.50N/07201.75W-Hello").unwrap();
        assert_relative_eq!(pos.latitude.value(), 49.05833333333333, epsilon = 1e-9);
        assert_relative_eq!(pos.longitude.value(), -72.02916666666667, epsilon = 1e-9);
        assert_eq!(pos.symbol.table, '/');
        assert_eq!(pos.symbol.code, '-');
        assert_eq!(rem.unwrap(), b"Hello");
    }

    #[test]
    fn uncompressed_altitude_in_comment() {
        let (_, pos) = Position::parse(b"4903.50N/07201.75W-/A=003054").unwrap();
        assert!(pos.altitude.is_some());
        let alt = pos.altitude.unwrap();
        assert_relative_eq!(alt.feet, 3054.0, epsilon = 0.5);
    }

    #[test]
    fn dao_human_readable_applied() {
        // DAO !W56! refines lat by 5/60000 deg, lon by 6/60000 deg
        let (_, pos) = Position::parse(b"4903.50N/07201.75W-!W56!").unwrap();
        assert_relative_eq!(
            pos.latitude.value(),
            49.05833333333333 + 5.0 / 60_000.0,
            epsilon = 1e-9
        );
    }

    #[test]
    fn dao_uppercase_is_human_readable() {
        // `W` (uppercase) selects the human-readable digit form.
        assert_eq!(
            Dao::find_in_comment(b"!W56!"),
            Some(Dao::HumanReadable {
                lat_digit: 5,
                lon_digit: 6
            })
        );
    }

    #[test]
    fn dao_lowercase_is_base91() {
        // `w` (lowercase) selects the base-91 form; same trailing bytes decode
        // to base-91 offsets, NOT digits.
        assert_eq!(
            Dao::find_in_comment(b"!w56!"),
            Some(Dao::Base91 {
                lat_offset: b'5' - 33,
                lon_offset: b'6' - 33
            })
        );
    }

    #[test]
    fn dao_human_readable_space_is_unused_axis() {
        assert_eq!(
            Dao::find_in_comment(b"!W5 !"),
            Some(Dao::HumanReadable {
                lat_digit: 5,
                lon_digit: 0
            })
        );
    }

    #[test]
    fn dao_must_be_at_end() {
        // A `!..!` substring buried in comment text must not be treated as DAO.
        assert_eq!(Dao::find_in_comment(b"say!axy! ok"), None);
    }

    #[test]
    fn dao_false_match_does_not_shift_coords() {
        let clean = Position::parse(b"4903.50N/07201.75W-hello world")
            .unwrap()
            .1;
        let texty = Position::parse(b"4903.50N/07201.75W-say!axy! ok")
            .unwrap()
            .1;
        assert!(texty.dao.is_none());
        assert_eq!(clean.latitude.value(), texty.latitude.value());
        assert_eq!(clean.longitude.value(), texty.longitude.value());
    }

    #[test]
    fn dao_non_letter_datum_rejected() {
        // Digits / punctuation in the datum position are not valid DAO.
        assert_eq!(Dao::find_in_comment(b"!156!"), None);
    }

    #[test]
    fn uncompressed_encode_round_trip() {
        let raw = b"4903.50N/07201.75W-";
        let (_, pos) = Position::parse(raw).unwrap();
        let mut out = Vec::new();
        pos.encode_uncompressed(&mut out);
        assert_eq!(&out, raw);
    }

    #[test]
    fn altitude_in_comment_extracted() {
        let alt = altitude_in_comment(b"/A=001000extra").unwrap();
        assert_relative_eq!(alt.feet, 1000.0, epsilon = 0.1);
    }

    #[test]
    fn compressed_parse_known() {
        // From aprs-parser-rs test: "/ABCD#$%^- sT" (no-timestamp, compressed, no cs)
        // symbol_table='/', lat=ABCD, lon=#$%^, symbol_code='-', c=' ', s='s', t='T'
        let (_, pos) = Position::parse(b"/ABCD#$%^- sT").unwrap();
        assert_relative_eq!(pos.latitude.value(), 25.97004667573229, epsilon = 0.001);
        assert_relative_eq!(pos.longitude.value(), -171.95429033460567, epsilon = 0.001);
        assert_eq!(pos.symbol.table, '/');
        assert_eq!(pos.symbol.code, '-');
    }
}