Skip to content
View on GitHubSample viewer app

This sample demonstrates how to parse NMEA sentences and use the results to show device location on the map.

Image of display device location with nmea data sources

Use case

NMEA sentences can be retrieved from GPS receivers and parsed into a series of coordinates with additional information. Devices without a built-in GPS receiver can retrieve NMEA sentences by using a separate GPS dongle, commonly connected via bluetooth or through a serial port.

The NMEA location data source allows for detailed interrogation of the information coming from the GPS receiver. For example, allowing you to report the number of satellites in view.

How to use the sample

Click floating button "Play" to parse the provided NMEA sentences into a location data source, and display the location position and related satellite information. Click "Stop" to stop displaying the location information. The sample will automatically re-center the location data source as it moves across the map.

How it works

  1. Load NMEA sentences from a local file.
  2. Parse the NMEA sentence strings, and push data into NmeaLocationDataSource.
  3. Set the NmeaLocationDataSource to the LocationDisplay's data source.
  4. Start the location display to begin receiving location and satellite updates.

Relevant API

  • LocationDisplay
  • NmeaLocationDataSource
  • NmeaSatelliteInfo

About the data

This sample reads lines from a local file to simulate the feed of data into the NmeaLocationDataSource. This simulated data source provides NMEA data periodically, and allows the sample to be used on devices without a GPS dongle that produces NMEA data.

The route taken in this sample features a one minute driving trip around Redlands, CA.

Tags

GPS, history, navigation, NMEA, real-time, trace

Sample Code

MainActivity.ktMainActivity.ktDownloadActivity.kt
Use dark colors for code blocksCopy
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 /* Copyright 2022 Esri  *  * Licensed under the Apache License, Version 2.0 (the "License");  * you may not use this file except in compliance with the License.  * You may obtain a copy of the License at  *  * http://www.apache.org/licenses/LICENSE-2.0  *  * Unless required by applicable law or agreed to in writing, software  * distributed under the License is distributed on an "AS IS" BASIS,  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  * See the License for the specific language governing permissions and  * limitations under the License.  *  */  package com.esri.arcgismaps.sample.displaydevicelocationwithnmeadatasources  import android.os.Bundle import android.util.Log import android.view.View import android.widget.TextView import com.esri.arcgismaps.sample.sampleslib.EdgeToEdgeCompatActivity import androidx.appcompat.content.res.AppCompatResources import androidx.databinding.DataBindingUtil import androidx.lifecycle.lifecycleScope import com.arcgismaps.ApiKey import com.arcgismaps.ArcGISEnvironment import com.arcgismaps.geometry.Point import com.arcgismaps.geometry.SpatialReference import com.arcgismaps.location.LocationDataSourceStatus import com.arcgismaps.location.LocationDisplayAutoPanMode import com.arcgismaps.location.NmeaGnssSystem import com.arcgismaps.location.NmeaLocationDataSource import com.arcgismaps.mapping.ArcGISMap import com.arcgismaps.mapping.BasemapStyle import com.arcgismaps.mapping.Viewpoint import com.esri.arcgismaps.sample.displaydevicelocationwithnmeadatasources.databinding.DisplayDeviceLocationWithNmeaDataSourcesActivityMainBinding import com.google.android.material.floatingactionbutton.FloatingActionButton import com.google.android.material.snackbar.Snackbar import kotlinx.coroutines.launch import java.io.File import java.nio.charset.StandardCharsets import java.util.Timer import kotlin.concurrent.timerTask  class MainActivity : EdgeToEdgeCompatActivity() {   private val provisionPath: String by lazy {  getExternalFilesDir(null)?.path.toString() + File.separator + getString(R.string.display_device_location_with_nmea_data_sources_app_name)  }   // create a new NMEA location data source  private val nmeaLocationDataSource: NmeaLocationDataSource =  NmeaLocationDataSource(SpatialReference.wgs84())   // create a timer to simulate a stream of NMEA data  private var timer = Timer()   // list of nmea location sentences  private var nmeaSentences: List<String>? = emptyList()   // index of nmea location sentence  private var locationIndex = 0   // set up data binding for the activity  private val activityMainBinding: DisplayDeviceLocationWithNmeaDataSourcesActivityMainBinding by lazy {  DataBindingUtil.setContentView(this, R.layout.display_device_location_with_nmea_data_sources_activity_main)  }   private val mapView by lazy {  activityMainBinding.mapView  }   private val accuracyTV: TextView by lazy {  activityMainBinding.accuracyTV  }   private val satelliteCountTV: TextView by lazy {  activityMainBinding.satelliteCountTV  }   private val satelliteIDsTV: TextView by lazy {  activityMainBinding.satelliteIDsTV  }   private val systemTypeTV: TextView by lazy {  activityMainBinding.systemTypeTV  }   private val playPauseFAB: FloatingActionButton by lazy {  activityMainBinding.playPauseFAB  }   override fun onCreate(savedInstanceState: Bundle?) {  super.onCreate(savedInstanceState)   // authentication with an API key or named user is  // required to access basemaps and other location services  ArcGISEnvironment.apiKey = ApiKey.create(BuildConfig.ACCESS_TOKEN)  lifecycle.addObserver(mapView)   // create and add a map with a navigation night basemap style  val map = ArcGISMap(BasemapStyle.ArcGISNavigationNight)  mapView.map = map   // set a viewpoint on the map view centered on Redlands, California  mapView.setViewpoint(  Viewpoint(  Point(-117.191, 34.0306, SpatialReference.wgs84()), 100000.0  )  )   mapView.locationDisplay.apply {  // set the map view's location display to use the nmea location data source  dataSource = nmeaLocationDataSource  // set the map view to recenter on location changed events  setAutoPanMode(LocationDisplayAutoPanMode.Recenter)  }   // disable map view interaction, the location display will automatically center on the mock device location  mapView.interactionOptions.apply {  isPanEnabled = false  isZoomEnabled = false  isRotateEnabled = false  }   // read nmea location sentences from file  nmeaSentences = getNMEASentenceList()  // collects the accuracy for each location change  collectLocationChanges()  // collects satellite changes and display satellite information  collectSatelliteChanges()  }   /**  * Reads NMEA location sentences from the .nmea file and  * returns it as a [MutableList]  */  private fun getNMEASentenceList(): List<String>? {  val simulatedNmeaDataFile = File("$provisionPath/Redlands.nmea")  if (!simulatedNmeaDataFile.exists()) {  showError("NMEA file does not exist")  return null  }  // create list of nmea location sentences  var nmeaSentences: List<String> = emptyList()  // create a buffered reader using the .nmea file  val bufferedReader = File(simulatedNmeaDataFile.path).bufferedReader()  // read the nmea file contents using a buffered reader and store the mock data sentences in a list  bufferedReader.useLines { bufferReaderLines ->  // add carriage return for nmea location data source parser  nmeaSentences = bufferReaderLines.map { it + "\n" }.toList()  }  return nmeaSentences  }   /**  * Control the start/stop status of the NMEA location data source  */  fun playPauseClick(view: View) = lifecycleScope.launch {  if (nmeaLocationDataSource.status.value != LocationDataSourceStatus.Started) {  // initialize the location data source and prepare to begin receiving location updates when data is pushed  // as updates are received, they will be displayed on the map  nmeaLocationDataSource.start().onFailure {  showError("NmeaLocationDataSource failed to start: ${it.message}")  return@launch  }  // starts the NMEA mock data sentences  nmeaSentences?.let { startNMEAMockData(it) }  setButtonStatus(true)  } else {  // stop receiving and displaying location data  nmeaLocationDataSource.stop()  // cancel up the timer task  timer.cancel()  setButtonStatus(false)  clearUI()  }  }   /**  * Initializes the location data source, reads the mock data NMEA sentences, and displays location updates from that file  * on the location display. Data is pushed to the data source using a timeline to simulate live updates, as they would  * appear if using real-time data from a GPS dongle  */   /**  * Push the mock data NMEA sentences into the data source every 250 ms  */  private fun startNMEAMockData(nmeaSentences: List<String>) {  timer = Timer()  timer.schedule(timerTask {  // only push data when started  if (nmeaLocationDataSource.status.value == LocationDataSourceStatus.Started)  nmeaLocationDataSource.pushData(  nmeaSentences[locationIndex++].toByteArray(StandardCharsets.UTF_8)  )  // reset the location index after the last data point is reached  if (locationIndex == nmeaSentences.size) locationIndex = 0  }, 250, 250)  }   /**  * Sets the FAB button to "Start"/"Stop" based on [isShowingLocation]  */  private fun setButtonStatus(isShowingLocation: Boolean) = if (isShowingLocation) {  playPauseFAB.setImageDrawable(  AppCompatResources.getDrawable(  this, R.drawable.ic_round_pause_24  )  )  } else {  playPauseFAB.setImageDrawable(  AppCompatResources.getDrawable(  this, R.drawable.ic_round_play_arrow_24  )  )  }   /**  * Collects location changes of the NMEA location data source,  * and displays the location accuracy  */  private fun collectLocationChanges() = lifecycleScope.launch {  nmeaLocationDataSource.locationChanged.collect { nmeaLocation ->  // convert from meters to foot  val horizontalAccuracy = nmeaLocation.horizontalAccuracy * 3.28084  val verticalAccuracy = nmeaLocation.verticalAccuracy * 3.28084  accuracyTV.text =  getString(R.string.accuracy) + "Horizontal-%.1fft, Vertical-%.1fft".format(  horizontalAccuracy, verticalAccuracy  )  }  }   /**  * Obtains NMEA satellite information from the NMEA location data source,  * and displays satellite information on the app  */  private fun collectSatelliteChanges() = lifecycleScope.launch {  nmeaLocationDataSource.satellitesChanged.collect { nmeaSatelliteInfoList ->  // set the text of the satellite count label  satelliteCountTV.text = getString(R.string.satellite_count) + nmeaSatelliteInfoList.size  // get the system of the first satellite  val satelliteSystems = when (nmeaSatelliteInfoList.first().system) {  NmeaGnssSystem.Bds -> "BDS"  NmeaGnssSystem.Galileo -> "Galileo"  NmeaGnssSystem.Glonass -> "Glonass"  NmeaGnssSystem.Gps -> "GPS"  NmeaGnssSystem.NavIc -> "NavIc"  NmeaGnssSystem.Qzss -> "Qzss"  NmeaGnssSystem.Unknown -> "Unknown"  }  // get the satellite IDs from the info list  val uniqueSatelliteIDs = nmeaSatelliteInfoList.map { it.id }  // display the satellite system and id information  systemTypeTV.text = getString(R.string.system) + satelliteSystems  satelliteIDsTV.text = getString(R.string.satellite_ids) + uniqueSatelliteIDs  }  }   /**  * Clears out the info messages when LocationDataSource is paused.  */  private fun clearUI() {  accuracyTV.text = getString(R.string.accuracy)  satelliteCountTV.text = getString(R.string.satellite_count)  satelliteIDsTV.text = getString(R.string.satellite_ids)  systemTypeTV.text = getString(R.string.system)  }   private fun showError(message: String) {  Log.e(localClassName, message)  Snackbar.make(mapView, message, Snackbar.LENGTH_SHORT).show()  } }

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.