gps-accuracy

What did we learn about the tracking accuracy of GPS devices?

The motivation for this piece of work was to discover whether there is any significant difference in the ability of GPS devices to acccurately track a planned route. The devices include popular dedicated GPS devices from Garmin and Lezyne, several Android phones, and two home-built GPS devices. I had some concerns about the accuracy of my home-built devices, and also one of my Android phones, and therefore wanted an objective way to evaluate their accuracy. To this end, I developed a Python script.

The devices

Garmin Edge 605

Introduced in 2008, this item purchased in 2010, it was marketed as a ‘cycle computer’, i.e. targetted at sport cyclists, though the 605 lacks the ANT+ sensors of the more popular 705 (for heart rate, power, cadence tracking, etc).

Garmin eTrex 30x

Introduced in 2015, it’s marketed as an ‘outdoor handheld’, the focus being on a rugged and water-resistant device for a variety of sports and lesiure activities (cycling, walking, sailing, etc).

Lezyne Mega XL

Introduced in 2018, this item purchased in 2019, it’s a cycle computer with ANT+ and Bluetooth sensor device support. The main selling point is extended battery life (up to 40 hours).

Xiaomi Mi A2 Lite

Introduced in 2018, this item purchased in 2019, it’s a general-purpose Android phone, with built-in GPS.

Motorola Moto G3

Introduced in 2015, this item purchased in 2016, it’s a general-purpose Android phone, with built-in GPS.

Ruggex Rhino 3

Introduced around 2017, this item purchased in 2018, it’s a ruggedised Android phone built to meet IP68 water/dust protection standards, with built-in GPS.

Hand-built GPS tracker mark one: ‘Adafruit’

I built this one with the intention for it to be a simple, unattended, fallback GPS tracker, to ensure track points are captured on long rides, even if the primary GPS device fails or crashes. A key ambition was extended battery life in a small package.

Hand-built GPS tracker mark two: ‘Openlog’

The goals are the same as the first home-made tracker, but with longer battery life.

The test procedure

To test the devices, I planned a 60km bike route, on-road, through a mix of urban, open rural, and wooded areas. I treated the outbound and return legs – about 30km each via different routes – as separate experiments. I attached the Garmin and Lezyne devices, as well as the Ruggex phone, to handlebars. The other phones and the hand-built devices were in rear pockets of my jersey. (It would be desirable for future experiments to bar-mount the devices consistently).

After the ride, I gathered the GPX tracks from each device, cropped them slightly to ensure that all track points are within the bounds of the planned route, and begin and end while the bike was in motion.

Each track was then analysed using the gps-accuracy.py script.

Route and track files can be found within the Github repository.

Results

For each route and each device, I calculated the mean and max interval between trackpoints (in seconds), and the mean, median and 95% percentile error compared to the planned route (in metres).

The Adafruit home-built failed to produce a route B track due to procedural error. The Ruggex failed to produce a route A track due to software issues.

Device (route) interval-mean (s) interval-max (s) error-mean (m) error-median (m) error-95th (m)
Garmin-Edge-605 (B) 1.0 2.0 2.7 1.26 4.59
Garmin-Etrex-30x (A) 6.1 34.0 2.29 1.63 6.13
Garmin-Etrex-30x (B) 6.9 33.0 1.92 1.63 4.63
Lezyne (B) 2.5 77.0 2.07 1.65 5.26
Xiaomi (A) 1.6 4.0 2.69 2.19 6.96
Garmin-Edge-605 (A) 1.0 4.0 2.86 2.55 6.38
Xiaomi (B) 1.6 3.0 4.05 2.85 11.36
Lezyne (A) 2.5 197.0 3.87 3.13 9.61
MotoG3 (A) 2.7 216.0 3.64 3.31 8.19
MotoG3 (B) 2.5 89.0 4.45 3.84 11.4
Adafruit (A) 5.1 18.0 4.67 4.21 10.36
Ruggex (B) 159.6 369.0 11.4 7.02 47.79
Openlog (A) 10.0 10.0 11.5 8.84 30.22
Openlog (B) 10.1 20.0 15.14 12.2 39.89

The graph presents the mean, median and 95th percentile error for each device, on a log scale, ordered by median.

Results

Interpretation

All three dedicated GPS devices (Garmin 605, Garmin eTrex and Lezyne) and the Moto G3 and Xiaomi phones produce tracks that are more than adequate. Median errors are less than 4 metres, which is to say that the track runs within the width of the road most of the time. 95% of track points are within 11 metres. The dedicated devices seem to be very slightly more accurate than the phones, but none of these devices give any cause for concern for normal bike navigation and tracking purposes.

Both the Lezyne and the Moto G3 had a surprisingly long maximum interval between track points (around 3 minutes). Investigating this interval, it corresponds to a 3 minute roadside stop to try and fix a phone problem. So it’s nothing to be concerned about.

The Adafruit home-built device performs reasonably well, though a step down from the dedicated devices (median 4.2m, 95% 10.4m). It’s possible that the lack of Glonass satellite reception impacts accuracy, or it may be due to the longer intervals between trackpoints (5 seconds: a conscious decision to extend battery life).

The accuracy of the Openlog home-built device is poor. Median errors of 8-12 metres and 95th percentile of 30-40 metres is not acceptable for most purposes, though, as an emergency fallback to a main navigation device, it might be tolerated. The U-blox GPS chipset has a good reputation, but I suspect the poor accuracy might be due to the tiny ceramic antenna, carelessly-placed within the enclosure. It would be worth investigating alternative antennae or careful placement of the GPS module. Once again, to extend battery life, the device has been set up for an extended interval between track point (10 seconds), and this may impact accuracy. More experimentation needed.

The Ruggex phone was an abject failure. It has always been problematic, with a very long time to first fix, difficulty in holding the GPS signal, and quite large deviations while using it as a primary navigation device. In this test, it failed to generate a track from route A because OsmAnd persistently crashed. On route B, I used an alternative GPS logging app, but the signal was held so poorly that it generated only 28 trackpoints on the entire 30km return leg. The accuracy of these very sparse points was worse than any other device. Like the Adafruit, it only supports GPS satellites, and this may have an impact, but I also suspect the ruggedised case might sacrifice antenna placement or sensitivity. This device has provided reasonable service at times (it’s been my main navigation tool for a year or so) but it’s frustratingly error-prone. I intend to try installing Android 7 in case better GPS drivers might improve the situation, but I don’t hold out much hope.

Summary

The gps-accuracy tool has proven useful to make objective measurement of GPS device tracking accuracy. It’s revealed that dedicated Garmin and Lezyne devices, and a couple of Android phones, are able to track very accurately. It’s also revealed some problems with my home-built GPS devices, but also will allow me to be more scientific in testing possible improvements.