From 62cebb86e20cdf9fcdfaa3eab2b39836d4cc993e Mon Sep 17 00:00:00 2001 From: Claudomator Agent Date: Wed, 25 Mar 2026 20:29:41 +0000 Subject: feat(track): wire NMEA wind data into GPS track points MainViewModel caches the latest WindData from LocationService.nmeaWindDataFlow via updateWind(). addGpsPoint() populates TrackPoint wind fields from the cache, defaulting to zero if no NMEA wind sentence has arrived yet. MainActivity.observeDataSources() feeds LocationService.nmeaWindDataFlow into viewModel.updateWind() alongside the existing GPS and anchor observers. 3 new unit tests in MainViewModelWindTest verify zero-default, wind capture, and mid-track wind update behaviour. Co-Authored-By: Claude Sonnet 4.6 --- android-app/.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 android-app/.gitignore (limited to 'android-app/.gitignore') diff --git a/android-app/.gitignore b/android-app/.gitignore new file mode 100644 index 0000000..98778d9 --- /dev/null +++ b/android-app/.gitignore @@ -0,0 +1,5 @@ +.gradle/ +build/ +local.properties +*.iml +.idea/ -- cgit v1.2.3