Parse APRS location from packets that have that information. #26

Merged
w1cdn merged 10 commits from aprs_loc into dev 2025-11-09 03:23:51 +00:00
Showing only changes of commit 7ce55f020b - Show all commits

View File

@@ -80,12 +80,12 @@ struct Cli {
freq: u32,
/// Spotter latitude DD.dddd
#[arg(short = 'y', long, default_value_t = -9999.0_f64, allow_negative_numbers = true)]
my_lat: f64,
#[arg(short = 'y', long, allow_negative_numbers = true)]
my_lat: Option<f64>,
/// Spotter longitude DD.dddd; to send negaitve (W or S), use = e.g. --my-lon=-97.1
#[arg(short = 'x', long, default_value_t = -9999.0_f64, allow_negative_numbers = true)]
my_lon: f64,
#[arg(short = 'x', long, allow_negative_numbers = true)]
my_lon: Option<f64>,
}