gitextract_27bzi03l/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── CIBuild.yml │ ├── ghpages.yml │ └── publish_nuget.yml ├── .gitignore ├── LICENCE ├── README.md ├── docs/ │ ├── .gitignore │ ├── AppliesToGenerator/ │ │ ├── DocFXAppliesToGenerator.csproj │ │ ├── Program.cs │ │ └── Properties/ │ │ └── launchSettings.json │ ├── BuildDoc.cmd │ ├── Features.md │ ├── FixApiRefLinks.ps1 │ ├── api/ │ │ ├── android/ │ │ │ └── index.md │ │ ├── index.md │ │ ├── ios/ │ │ │ └── index.md │ │ ├── net/ │ │ │ └── index.md │ │ ├── netfx/ │ │ │ └── index.md │ │ ├── netstd/ │ │ │ └── index.md │ │ ├── netwin/ │ │ │ └── index.md │ │ └── uwp/ │ │ └── index.md │ ├── appliesToList.json │ ├── concepts/ │ │ ├── ArcGISRuntime.md │ │ ├── BluetoothAndroid.md │ │ ├── BluetoothUWP.md │ │ ├── BluetoothiOS.md │ │ ├── CustomMessages.md │ │ ├── MigrateFromV1.md │ │ ├── SerialPortNetCore.md │ │ ├── SerialPortNetFX.md │ │ ├── SerialPortUWP.md │ │ ├── index.md │ │ ├── ntrip.md │ │ └── toc.yml │ ├── docfx.json │ ├── index.md │ ├── manifests/ │ │ ├── v2.0/ │ │ │ ├── android/ │ │ │ │ └── .manifest │ │ │ ├── ios/ │ │ │ │ └── .manifest │ │ │ ├── netcore/ │ │ │ │ └── .manifest │ │ │ ├── netfx/ │ │ │ │ └── .manifest │ │ │ ├── netstd/ │ │ │ │ └── .manifest │ │ │ └── uwp/ │ │ │ └── .manifest │ │ ├── v2.1/ │ │ │ ├── android/ │ │ │ │ └── .manifest │ │ │ ├── ios/ │ │ │ │ └── .manifest │ │ │ ├── netcore/ │ │ │ │ └── .manifest │ │ │ ├── netfx/ │ │ │ │ └── .manifest │ │ │ ├── netstd/ │ │ │ │ └── .manifest │ │ │ └── uwp/ │ │ │ └── .manifest │ │ ├── v2.2/ │ │ │ ├── android/ │ │ │ │ └── .manifest │ │ │ ├── ios/ │ │ │ │ └── .manifest │ │ │ ├── netcore/ │ │ │ │ └── .manifest │ │ │ ├── netfx/ │ │ │ │ └── .manifest │ │ │ ├── netstd/ │ │ │ │ └── .manifest │ │ │ └── uwp/ │ │ │ └── .manifest │ │ └── v3.0/ │ │ ├── android/ │ │ │ └── .manifest │ │ ├── ios/ │ │ │ └── .manifest │ │ ├── net/ │ │ │ └── .manifest │ │ ├── netfx/ │ │ │ └── .manifest │ │ ├── netstd/ │ │ │ └── .manifest │ │ ├── netwin/ │ │ │ └── .manifest │ │ └── uwp/ │ │ └── .manifest │ ├── template_overrides/ │ │ ├── partials/ │ │ │ ├── class.memberpage.tmpl.partial │ │ │ └── collection.tmpl.partial │ │ └── styles/ │ │ └── main.css │ └── toc.yml └── src/ ├── CustomDictionary.xml ├── GlobalSuppressions.cs ├── NmeaParser/ │ ├── BluetoothDevice.Android.cs │ ├── BluetoothDevice.UWP.cs │ ├── BufferedStreamDevice.cs │ ├── EAAccessoryDevice.iOS.cs │ ├── Gnss/ │ │ ├── GnssMonitor.cs │ │ └── Ntrip/ │ │ ├── Carrier.cs │ │ ├── Caster.cs │ │ ├── Client.cs │ │ ├── NtripSource.cs │ │ └── NtripStream.cs │ ├── IMultiSentenceMessage.cs │ ├── Nmea/ │ │ ├── Bod.cs │ │ ├── Dtm.cs │ │ ├── Garmin/ │ │ │ ├── PGRME.cs │ │ │ └── PGRMZ.cs │ │ ├── Gbs.cs │ │ ├── Gga.cs │ │ ├── Gll.cs │ │ ├── Gns.cs │ │ ├── Grs.cs │ │ ├── Gsa.cs │ │ ├── Gst.cs │ │ ├── Gsv.cs │ │ ├── IGeographicLocation.cs │ │ ├── ITimestampedMessage.cs │ │ ├── LaserRangeMessage.cs │ │ ├── LaserTech/ │ │ │ └── PLTIT.cs │ │ ├── NmeaMessage.cs │ │ ├── NmeaMultiSentenceMessage.cs │ │ ├── Rma.cs │ │ ├── Rmb.cs │ │ ├── Rmc.cs │ │ ├── Rte.cs │ │ ├── Trimble/ │ │ │ ├── PTNLA.cs │ │ │ └── PTNLB.cs │ │ ├── UnknownMessage.cs │ │ ├── Vlw.cs │ │ ├── Vtg.cs │ │ └── Zda.cs │ ├── NmeaDevice.cs │ ├── NmeaFileDevice.cs │ ├── NmeaParser.csproj │ ├── Properties/ │ │ └── NmeaParser.rd.xml │ ├── SerialPortDevice.Desktop.cs │ ├── SerialPortDevice.UWP.cs │ ├── StreamDevice.cs │ ├── SystemNmeaDevice.Android.cs │ ├── Talker.cs │ └── WinRTSerialDevice.cs ├── NmeaParser.sln ├── NmeaSampleData.txt ├── SampleApp.Maui/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── DeviceHelper.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── Platforms/ │ │ ├── Android/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources/ │ │ │ └── values/ │ │ │ └── colors.xml │ │ ├── MacCatalyst/ │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen/ │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows/ │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS/ │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── Resources/ │ │ ├── Raw/ │ │ │ └── AboutAssets.txt │ │ └── Styles/ │ │ ├── Colors.xaml │ │ └── Styles.xaml │ └── SampleApp.Maui.csproj ├── SampleApp.UWP/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── SampleApp.UWP.csproj │ └── SampleApp.UWP_TemporaryKey.pfx ├── SampleApp.WinDesktop/ │ ├── AltitudeGraph.xaml │ ├── AltitudeGraph.xaml.cs │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── BluetoothDevice.cs │ ├── GgaControl.xaml │ ├── GgaControl.xaml.cs │ ├── GllControl.xaml │ ├── GllControl.xaml.cs │ ├── GnssMonitorView.xaml │ ├── GnssMonitorView.xaml.cs │ ├── GsaControl.xaml │ ├── GsaControl.xaml.cs │ ├── KeyValuePairControl.xaml │ ├── KeyValuePairControl.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── NmeaLocationDataSource.cs │ ├── NtripView.xaml │ ├── NtripView.xaml.cs │ ├── NullToCollapsedConverter.cs │ ├── PgrmeControl.xaml │ ├── PgrmeControl.xaml.cs │ ├── PointPlotView.xaml │ ├── PointPlotView.xaml.cs │ ├── RestoreAutoPanMode.cs │ ├── RmcControl.xaml │ ├── RmcControl.xaml.cs │ ├── SampleApp.NetCore.csproj │ ├── SatelliteSnr.xaml │ ├── SatelliteSnr.xaml.cs │ ├── SatelliteView.xaml │ ├── SatelliteView.xaml.cs │ ├── UnknownMessageControl.xaml │ ├── UnknownMessageControl.xaml.cs │ ├── UserSettings.Designer.cs │ ├── UserSettings.settings │ ├── View2D.xaml │ ├── View2D.xaml.cs │ ├── View3D.xaml │ ├── View3D.xaml.cs │ ├── car.glb │ └── simplecar.glb ├── TrimbleR2SampleData.txt └── UnitTests/ ├── NmeaParser.Tests/ │ ├── BufferedStringDevice.cs │ ├── DeviceTests.cs │ ├── NmeaMessages.cs │ ├── NmeaParser.Tests.projitems │ └── NmeaParser.Tests.shproj ├── NmeaParser.Tests.NET/ │ └── NmeaParser.Tests.Net.csproj └── NmeaParser.Tests.UWP/ ├── NmeaParser.Tests.UWP.csproj ├── NmeaParser.Tests.UWP_TemporaryKey.pfx ├── Package.appxmanifest ├── Properties/ │ ├── AssemblyInfo.cs │ └── UnitTestApp.rd.xml ├── UnitTestApp.xaml └── UnitTestApp.xaml.cs