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 21499a93d9 - Show all commits

View File

@@ -80,11 +80,11 @@ struct Cli {
freq: u32,
/// Spotter latitude DD.dddd
#[arg(short = 'y', long, default_value_t = -9999.0_f64)]
#[arg(short = 'y', long, default_value_t = -9999.0_f64, allow_negative_numbers = true)]
my_lat: 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)]
#[arg(short = 'x', long, default_value_t = -9999.0_f64, allow_negative_numbers = true)]
my_lon: f64,
}