Block a user
Parse APRS location from packets that have that information.
I think I was running on two machines at once, one only with locations and one with all UI frames. This was messing up the mapping.
Parse APRS location from packets that have that information.
Are these values too long? Spothole doesn't seem to pick up all the locations.
"dx_latitude":47.94133333333333,"dx_longitude":-97.02683333333333,
Map most recent spot with good location, not just most recent spot
Allow all packets to get spotted to spothole server
Privacy tho? How about not including the text if it's not a UI packet?
Clean up messages, only show if debug is turned on
Parse APRS location from packets that have that information.
Had a thought about a missing piece as I was falling asleep, now I can't remember it!
Parse APRS location from packets that have that information.
Track lib licenses
- use serde_json::json;
- "MIT OR Apache-2.0" https://docs.rs/serde_json/latest/serde_json/
- use reqwest;
- "MIT OR Apache-2.0" https://docs.rs/reqwest/latest/reqwest/
- use…
Parse APRS-style location out of beacons
More progress. I got really slowed down looking for a way to return a None tuple that was also f64.
use regex::Regex;
use rand::Rng;
fn main() {
//let packet = "1:Fm KC2IHX-7 To…
Parse APRS-style location out of beacons
Another snapshot. This replaces ambiguation spaces with a random integer, but I didn't carry the same pattern over yet.
- check that all capture groups have values
use…
Parse APRS-style location out of beacons
I guess I could just replace the spaces with either
- zeros
- random digits
before converting string to numeric.