Scaling an IoT deployment? Join our webinar on May 28th where we dive into real-world scaling pain points and how to overcome them.

Blues Developers
What’s New
Resources
Blog
Technical articles for developers
Newsletter
The monthly Blues developer newsletter
Terminal
Connect to a Notecard in your browser
Developer Certification
Get certified on wireless connectivity with Blues
Webinars
Listing of Blues technical webinars
Blues.comNotehub.io
Shop
Docs
Button IconHelp
Notehub StatusVisit our Forum
Button IconSign In
Sign In
Sign In
What’s New
Resources
Blog
Technical articles for developers
Newsletter
The monthly Blues developer newsletter
Terminal
Connect to a Notecard in your browser
Developer Certification
Get certified on wireless connectivity with Blues
Webinars
Listing of Blues technical webinars
Blues.comNotehub.io
Shop
Docs
homechevron_rightBlogchevron_rightUsing GPS/GNSS and Wi-Fi Triangulation Together Effectively

Using GPS/GNSS and Wi-Fi Triangulation Together Effectively

Using GPS/GNSS and Wi-Fi Triangulation Together Effectively banner

February 6, 2024

Learn how to use GPS/GNSS and Wi-Fi Triangulation together in the same project.

  • GPS/GNSS
  • Wi-Fi Triangulation
  • Asset Tracking
TJ VanToll
TJ VanTollPrincipal Developer Advocate
email

Because of its accuracy, GPS/GNSS has long been the de facto standard for device and asset tracking. But GPS/GNSS can struggle in indoor locations, where it may have trouble finding the necessary satellite signals to use to calculate a location.

That’s where Wi-Fi triangulation, a newer technology that uses the signal strength of known Wi-Fi access points to triangulate a location, can help. Unlike GPS/GNSS, Wi-Fi triangulation works indoors, and in many cases is more accurate indoors, as its triangulation becomes more accurate as it is able to detect more access points.

Together GPS/GNSS and Wi-Fi triangulation provide a robust tracking offering that works nearly everywhere—indoors and outdoors.

Here at Blues we make the Notecard Cell + WiFi , a system on module that offers not only cellular connectivity, but also GPS/GNSS and Wi-Fi triangulation in one offering.

The Global Wideband Notecard

In this article we’ll look at how to use both GPS/GNSS and Wi-Fi triangulation with the Notecard, and the best way to combine the two to get the most accurate location of your device. Let’s start with how GPS/GNSS works on the Notecard.

note

This article assumes you know the basics of how the Blues Notecard works. If you’re new to Blues, this article or this video will get you up to speed fast.

GPS/GNSS APIs

The Notecard Cellular and Notecard Cell+WiFi both have integrated GPS/GNSS modules for retrieving a satellite-based location.

The Global Wideband Notecard

GPS/GNSS is off on the Notecard by default, but you can enable it with two simple API requests. The first, card.location.mode, configures how often to take GPS/GNSS readings. The example below configures the Notecard to take readings every five minutes.

{
  "req": "card.location.mode",
  "seconds": 300
}

The second, card.location.track, starts and stops the GPS/GNSS tracking process. The example below starts GPS/GNSS tracking.

{
  "req": "card.location.track",
  "start": true
}

Once enabled, you’ll begin to see _track.qo events in Notehub.

Sample _track.qo events in Notehub

If you double click to view the details of an individual event, you’ll see the full data associated with the event, which includes the GPS/GNSS fields appear with a where_ prefix, for example where_lat, where_lon, etc.

Detailed view of an individual _track.qo event

And, that’s all required to set up GPS/GNSS tracking on a Notecard! There’s a lot more you can do to configure how GPS/GNSS works, but with those two simple commands you can have a fully functional GPS/GNSS-based tracker up and running.

Wi-Fi Triangulation APIs

The way Wi-Fi triangulation works with Blues depends on the type of Notecard you have. If you’re using a Notecard WiFi or Notecard Cell+WiFi, Wi-Fi triangulation is enabled by default and just works.

If you’re using the Notecard Cellular you must use an external Wi-Fi module and the Notecard’s card.triangulation request. This documentation article walks through the process of setting that up.

Once enabled, you’ll first see a _geolocate.qo Note appear in Notehub in your Events view. The Note will have information about all Wi-Fi access points and their signal strength.

JSON data showing network information

Once Notehub has this access point data it’ll perform a Wi-Fi triangulation, and subsequent Notes will include the device’s triangulated location. For example, the same _track.qo Note from earlier in this article also includes a triangulated location under fields with a tri_ prefix, such as tri_lat and tri_lon.

The triangulated location within a _track.qo Note

Once you have the basics of Wi-Fi triangulation working, there are a few settings you may want to tweak for your projects.

First, depending on your requirements you may also need to change the frequency at which triangulation data is processed on Notehub. The default is “Daily”, which means at most Notehub will calculate the triangulated location of your device once per day. This option is available in the Settings of your Notehub project.

Location of the triangulation frequency setting in Notehub

note

Wi-Fi triangulation in Notehub is provided as a technical preview feature that is free for use today, but may use Consumption Credits in the future. Blues reserves the right to rate limit excessive Wi-Fi triangulation requests at our discretion.

Second, by default Notehub only triangulates a device’s location when that device is not in motion (as determined by the Notecard’s onboard accelerometer). You can override the Notecard’s default behavior with the card.triangulate request’s on and set arguments.

Finally, Notehub only triangulates a device’s location at the beginning of a new Session. If your Notecard is operating in periodic mode this is determined by your device’s outbound value, and if your Notecard is operating in continuous mode this is determined by your device's configured duration.

Once you have your settings configured as you like, let’s next look at how to put everything together and use multiple locations in one project.

Using GPS/GNSS and Wi-Fi Triangulation Together

Once you have both GPS/GNSS and Wi-Fi triangulation configured, all events in Notehub will include both a satellite- and Wi-Fi-derived location in their metadata.

For some applications you may wish to store and display both locations. For those apps getting your location data is as simple as routing the data to your cloud service of choice, and retrieving the GPS/GNSS data out of each event’s where_ fields, and the Wi-Fi triangulated data out of the event’s tri_ fields.

In other applications you may not care about having multiple locations, and instead want to know which one is “best”. For these situations Notehub provides a best_ field on all events. For example, notice how the event below contains both a GPS/GNSS location (where_), a Wi-Fi triangulated location (tri_), and a “best” location (best_).

Location of the triangulation frequency setting in Notehub

In this example the best location is the GPS/GNSS-derived location, and as such the best_ fields are identical to the where_ fields, and the best_location_type is set to "gps".

Notehub’s algorithm for determining the best location is to choose GPS/GNSS location, then triangulated location, and then the location of the cell tower that handled the request (tower_). However, if enough time has passed (a few days by default) Notehub will consider a location stale. For example, if a device’s last-reported GPS/GNSS location was from four days ago, and the device has a recent triangulated location, Notehub will select the triangulated location as best.

note

Notehub provides a handful of environment variables you can use to override how soon it considers a location stale. Learn more in Data Notehub Appends to Notes.

If you don’t want to rely on Notehub’s algorithm you can do a time-based comparison yourself to determine which location makes the most sense for your project to use. For example, if you want to use the most recently retrieved location (regardless of type), you could use the following JSONata on your route.

{
  "best_lat": tri_when > where_when ? tri_lat : where_lat,
  "best_lon": tri_when > where_when ? tri_lon : where_lon
}

Wrapping Up

Overall, the Notecard makes it trivial to retrieve both the GPS/GNSS and Wi-Fi triangulated location of a device in an incredibly configurable way. And by combining the two technologies you can build a resilient tracker that works whether a device is indoors, outdoors, or some combination of the two.

If you want to try this out yourself start by purchasing a Blues Starter Kit , which has everything you need to get up and running. And if you hit any issues feel free to reach out in our forum .

In This Article

  • GPS/GNSS APIs
  • Wi-Fi Triangulation APIs
  • Using GPS/GNSS and Wi-Fi Triangulation Together
  • Wrapping Up

Blues Developer News

The latest IoT news for developers, delivered right to your inbox.

Comments

Join the conversation for this article on our Community Forum

Blues Developer Newsletter

The latest IoT news for developers, delivered right to your inbox.

© 2025 Blues Inc.
© 2025 Blues Inc.
TermsPrivacy
Notecard Disconnected
Having trouble connecting?

Try changing your USB cable as some cables do not support transferring data. If that does not solve your problem, contact us at support@blues.com and we will get you set up with another tool to communicate with the Notecard.

Advanced Usage

The help command gives more info.

Connect a Notecard
Use USB to connect and start issuing requests from the browser.
Try Notecard Simulator
Experiment with Notecard's latest firmware on a Simulator assigned to your free Notehub account.

Don't have an account? Sign up