No description
Find a file
Vladislav a724cfca85
New version 2.8.0 is available now!
- add .apk build for 24+ version OpenWrt router.
2026-04-14 16:24:00 +03:00
htdocs/luci-static/resources/icons/gpoint_icons miss 2022-03-10 16:48:37 +03:00
Images Settings screen 2022-03-18 12:22:18 +03:00
luasrc Merge pull request #44 from slydiman/support-uart-gnss 2025-11-30 21:34:33 +03:00
root Support USB UART 2025-11-08 16:09:02 +04:00
test Add startGNSS test 2025-10-21 15:43:22 +03:00
.gitignore remove .DS_Store 2023-04-21 21:59:28 +08:00
LICENSE Create LICENSE 2022-03-09 15:37:31 +03:00
Makefile Bump package version from 2.7.8 to 2.8.0 2025-11-30 21:58:37 +03:00
README.md New version 2.8.0 is available now! 2026-04-14 16:24:00 +03:00

Gpoint
Global Navigation Satellite System for OpenWrt LuCi

Gpoint was created in order to use full set of functions of mobile modules installed in OpenWRT router. Manufacturers of GSM/3G/LTE modems often lay down GNSS function, so why not use it? It doesn't matter if you use a router in transport or it is installed in your terminal, you can always find out its location!

Screenshots overview_wait overview settings

Features

  • Support: GPS, GLONASS (works with "NMEA 0183" standard protocol)
  • GPSD is supported for parsing NMEA data from a modem or your gps device
  • GeoHash (reduces drift of GPS\GLONASS coordinate readings in parking)
  • Kalman filter (Implementation of Kalman filter for geo (gps) tracks. This is a Lua port of original C code)
  • Yandex Locator API (Determines location by nearest Wi-Fi access points)
  • Simple GeoFence a virtual perimeter for a real-world geographic area
  • Server side (sends GNSS data to a remote server)
  • Support OpenLayers maps in UI, and much more!

Supported devices

Modems:

  • Dell DW5821e/DW5829e/DW5829e-eSIM
  • Huawei ME909u-521
  • MEIGLink SLM820/SLM828
  • Quectel EC21/EC25/EP06/EM060K/EM12/EM160R/RM500Q/RM520N
  • Sierra EM7455/EM7565
  • Simcom SIM7600E-H

Other device:

  • U-Blox VK-172 GPS/GLONASS module (u-blox 7 GNSS modules)
  • USB-UART like CP210x/CH341

Supported GNSS protocols

How to add an unsupported device

  • Most importantly, your device should be able to constantly send NMEA data to any of the available ports.

    EXAMPLE: /dev/ttyUSB*

  • In the model file, you must add the vid, pid, and name of your device.

    MODEL PATH: /usr/lib/lua/luci/model/cbi/gpoint/gpoint.lua

    ADD DEVICE:

    local modems = {
        ["Quectel"] = {
            ["2c7c:0306"] = "EP06",
            ...
        },
        ["MY_DEVICE_VENDOR_NAME"] = {
            ["PID:VID"] = "MODEL_NAME",
            ...
        }
    
  • It is necessary to add commands to start/stop sending data to the port in the configuration file. (if such commands are not required, you must set "-" instead of commands)

    CONFIG PATH: /usr/share/gpoint/lib/config.lua

    ADD DEVICE:

    local MODEM = {
        DELL = {
            START = {"AT+GPS=1"},
            STOP = {"AT+GPS=0"}
        },
        MY_DEVICE_WITH_START/STOP_COMMAND = {
            START = {"DEVICE_AT_COMMAND_TO_START"},
            STOP = {"DEVICE_AT_COMMAND_TO_STOP"}
        },
         MY_DEVICE_WITH_MULTIPLE_START/STOP_COMMAND = {
            START = {"SOME_COOMAND", "DEVICE_AT_COMMAND_TO_START"},
            STOP = {"SOME_COMMAND", "DEVICE_AT_COMMAND_TO_STOP"}
        },
        MY_DEVICE_WITHOUT_COMMAND = {
            START = {'-'},
            STOP = {'-'}
        }
    
  • That's it! Now your device works with GPoint!

If there are any difficulties with adding a new device or you want to help the project, open an issue or send a pull request with your changes!

Thank you for your interest in the project!

Install

# # Upload ipk file to tmp folder
# cd /tmp
# opkg update
# opkg install luci-app-gpoint_2.8.0_all.ipk

# # Since version OpenWrt 24+ upload apk file to tmp folder
# cd /tmp
# apk add --allow-untrusted ./luci-app-gpoint-2.8.0-r1.apk

Uninstall

# opkg remove luci-app-gpoint
# apk del luci-app-gpoint

LICENSE

Gpoint like OpenWrt is released under the GPL v3.0 License - see detailed LICENSE.