Summary of GPS vs. Beacons vs. Wi-Fi: Three Location Identifier Technologies
The article discusses three primary technologies for location identification in IoT applications: GPS, WiFi, and Beacons. GPS modules, such as those from Neoway and u-blox, are effective for outdoor use as they require satellite visibility. WiFi positioning complements GPS indoors by using nearby hotspots, with modules like ESP32 or ESP8266. Beacons utilize BLE for location services, often used in retail geofencing marketing to provide personalized offers based on user location. The choice of technology depends on the environment, with GPS suitable for open areas and WiFi/Beacons better for indoor settings.
Parts used in the Location Identification Project:
- GPS module (e.g., from Neoway or u-blox)
- UART interface to MCU
- GPS antenna
- WiFi transceiver module (e.g., ESP32, ESP8266)
- Bluetooth Low Energy (BLE) Beacon devices
In IoT and digital age, location-based services applications are widespread: starting from Google maps to anti-loss devices and not ending with location-based marketing. The most common technologies used for user location identification are: GPS, WiFi and Beacons (a custom BLE profile).
Location-based (geofencing) marketing is a new way to enhance the personal experience while shopping. For example if you were near the shampoo section you will get on your mobile exclusive offers about that section.
Choosing the right location detection technology needs to take into consideration that GPS works optimally in the open sky environments and WiFi and Beacons can work probably indoors (and outdoors but within inhabited areas with hotspots). Now let’s get a brief look at each technology:
GPS
Thanks to on-the-shelf GPS modules/receivers from vendors like: Neoway and u-blox it’s easy to embed a GPS receiver into your project. What you need is a module sending its messages via UART to the MCU and a ready-made antenna attached to the module. There is a standard format for these modules messages called NEMEA. These messages contain information about the location that includes longitude, latitude, direction, speed … etc. These receivers need to see at least 4 satellites to compute a position.
There are many navigation systems like the Russian GLONASS, the European Union’s Galileo and the American GPS.
GPS is mainly designed to be an outdoor location detection system. Therefore, its performance decreases in enclosed places and across crowded areas with buildings.
WiFi
WiFi can be used in location detection (AKA Wi-Fi positioning system) when your phone or WiFi transceiver module like ESP32 or ESP8266 is near hotspots. You can consider WiFi like a coexisting system with GPS for indoor areas. Moreover, WiFi can be used to detect the location inside the enclosed/underground area; you can see the SubPos project on Hackaday to know how.
Read more: GPS vs. Beacons vs. Wi-Fi: Three Location Identifier Technologies